06-01-2011, 09:39 AM
[eluser]LuckyFella73[/eluser]
In my application I did set up base classes like Phil Sturgeon
suggested in his blog. My problem is that I get error messages
in my log file:
I have a menu library in application/libraries (menu.php) and have this in autoload.php:
I don't have a clue why the autoload function is looking for MY_menu.php in
application/core.
Is there anything I'm doing wrong? My application works but of course I don't like
to get error messages ..
In my application I did set up base classes like Phil Sturgeon
suggested in his blog. My problem is that I get error messages
in my log file:
Code:
ERROR - 2011-06-01 14:29:55 --> Severity: Warning --> include_once(application/core/MY_Menu.php) [<a href='function.include-once'>function.include-once</a>]: failed to open stream: .....
I have a menu library in application/libraries (menu.php) and have this in autoload.php:
Code:
$autoload['libraries'] = array('database', 'menu');
I don't have a clue why the autoload function is looking for MY_menu.php in
application/core.
Is there anything I'm doing wrong? My application works but of course I don't like
to get error messages ..