Hello,
when I run my CakePHP app on my local Wamp installation, everything works fine. When I try to run the same action on production server, I get error:
Table class for alias Rulingswarrantors could not be found.
Rulingswarrantors
What could be the cause of this problem? Remote server:
The same page on local server:
Thank you!
Your production server is on a case-sensitive filesystem, and you’ve got your class and/or your filename and/or a parameter to some association setup in the wrong case. It’s probably supposed to be RulingsWarrantors, not Rulingswarrantors.
RulingsWarrantors
Thank you @Zuluru , problem fixed.
I get an error when I try to open my controller
Have you created the Students model (StudentsTable & Student entity)?