02-18-2011, 03:29 PM
[eluser]Wayne Smallman[/eluser]
Hi guys!
I'm having the exact same problem outlined in an earlier thread. However, the supposed fix doesn't fix anything, as I'm using a version much newer than the one recommended in the thread.
I have:
All of which gives me an error:
MY_Controller is in the application/libraries folder.
Any ideas?
Hi guys!
I'm having the exact same problem outlined in an earlier thread. However, the supposed fix doesn't fix anything, as I'm using a version much newer than the one recommended in the thread.
I have:
Code:
// controller start.php
class Start extends MY_Controller {
function __construct() {
parent::__construct();
} // end function __construct()
...
Code:
// class MY_Controller.php
class MY_Controller extends CI_Controller {
function __construct () {
parent::__construct();
} // end function __construct()
...
All of which gives me an error:
Code:
Fatal error: Class 'MY_Controller' not found in /path/controllers/start.php on line 3
MY_Controller is in the application/libraries folder.
Any ideas?