EllisLab text mark
Advanced Search
     
Could not find My_Controller
Posted: 09 October 2012 05:54 AM   [ Ignore ]
Joined: 2011-07-10
3 posts

Hello,,

I have some problem. Recently i have moved to linux and i faced this problem:

Fatal error: Class 'My_Controller' not found in /var/www/html/test/application/controllers/welcome.php on line 3 

i tried many solutions including putting My_Controller in application/core but nothing changed.

help please.
thanks in advance.

 
Posted: 09 October 2012 06:59 AM   [ Ignore ]   [ # 1 ]   [ Rating: 0 ]
Joined: 2011-07-10
3 posts

I found the problem :D
in my config file the

subclass_prefix 'MY_' 
and the sub class name is
My_Controller 

but the problem appeared in Linux because its case sensitive not like windows.
so changing

subclass_prefix 'MY_' 
to
subclass_prefix 'My_' 

solved the problem