Table class for alias could not be found on production server

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.

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.

Thank you @Zuluru , problem fixed.