After logged in successfully, yii does not executing any page.
Showing an error
"Error 404 Unable to resolve the request "membersdet/index" "
Here membersdet is controller Id and index is an action.
|
After logged in successfully, yii does not executing any page. Showing an error "Error 404 Unable to resolve the request "membersdet/index" " Here membersdet is controller Id and index is an action. |
|||||
|
|
Make sure the filename of your controller is EXACTLY "MembersdetController.php". It is case sensitive. I guess you were developing on local machine under Windows OS and server runs on *nix system. That's normal issue for novice developers, that they forget about case sensitive file system in *nix. |
|||||
|
|
There is not enough information in the question, but maybe you have an incorrect .htaccess or if you don't have an htaccess at all you should use the url:
|
|||
|
|
Make sure you have MembersdetController in /protected/controllers/ and this class "is a" CController and has a public method named actionIndex(). |
|||
|
|