Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
1  
need more information, Harpreet. What did you name the controller class and controller class file? Where did you store them? – Mukesh Soni Apr 11 '12 at 6:39

3 Answers

up vote 6 down vote accepted

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.

share|improve this answer
Thanks ,it really works. – Harpreet Singh Apr 12 '12 at 4:44
is there a plugin in yii or a code that i can use so that i dont have to rename every single controller action and page ? – Gunnit Mar 4 at 10:37

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:

http://host/index.php?r=membersdet/index
share|improve this answer
I have run this project successfully in localhost. but this creating problem in live server. I am getting error at this place - CWebApplication->runController('membersdet/index') – Harpreet Singh Apr 11 '12 at 11:26

Make sure you have MembersdetController in /protected/controllers/ and this class "is a" CController and has a public method named actionIndex().

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.