Reputation: 1074
I am working with yii and i have set up the component langBox.
when i try to use it on my localhost it works while when i try using it on my remote server i get the following error;
CException
Alias "application.components.langBox" is invalid. Make sure it points to an existing PHP file and the file is readable.
any ideas or tips will be most appreciated
Upvotes: 1
Views: 252
Reputation:
If you are developing in windows and deploying your app on linux, remember that linux filesystem is case sensitive. For instance on linux LangBox
is not the same as langBox
. Make sure that your alias has exact same case as in filename in filesystem.
Upvotes: 2