404 Error After Copy

hi,

Having built a form on my localhost, i now need to upload it to a server.

It should be a copy and paste job. And so far I can get to index.php, but I get a 404 error whenever I try to access a controller. I’m trying:


index.php?r=addclients

Which works on the localhost copy, but doesnt work on the server version. I copied the entire yii folder (which included the framework). Folder is organised:

yii/yii_site

yii/yii-1.1.13.e9e4a0

Anything I might be missing? The base bath is generated correctly.

have a meeting to show my work in less than an hour :confused:

the most common problem when copying from localhost (windows) to sever (linux) is the case sensitivity, check your case on the addclientscontroller, it should be


AddclientsController.php

That was it,

Thank you! I need to work with linux more often and i might have spotted this.