My Application Doesn't Work On Linux

Ok I got this error when I deployed my Yii application to production server

404 - ERROR

Unable to resolve the request

All my controllers were present, and the url manager was enabled. After some running around I found the issue.

My development environment is Windows and on that urls with lower case letters worked without an issue. But the production environment is on Linux

so i need to change requests to be like in Action class

current controllername/actionname

to be ControllerName/ActionName

is there is any way to handle this in Yii instead change all action calling to match the case sensitive problem ?

Hi

To my knowledge there is no way… better to use all small character :)