Welcome Guest, Not a member yet? Register   Sign In
error when extending CI_Controller
#5

[eluser]InsiteFX[/eluser]
Try adding this: ./application/config/config.php!
Code:
/*
| -------------------------------------------------------------------
|  Native Autoload - by Phil Sturgeon. New Version!
| -------------------------------------------------------------------
|
| Nothing to do with config/autoload.php, this allows PHP autoload to work
| for base controllers and some third-party libraries.
|
| If using HMVC you do not need this! HMVC will autoload.
|
| Place this code at the bottom of your application/config/config.php file.
*/
function __autoload($class)
{
    if (strpos($class, 'CI_') !== 0)
    {
        if (file_exists($file = APPPATH . 'core/' . $class . EXT))
        {
            include $file;
        }
        elseif (file_exists($file = APPPATH . 'libraries/' . $class . EXT))
        {
            include $file;
        }
    }
}

Please read the code comments...


Messages In This Thread
error when extending CI_Controller - by El Forum - 05-29-2012, 05:15 PM
error when extending CI_Controller - by El Forum - 05-29-2012, 06:12 PM
error when extending CI_Controller - by El Forum - 05-29-2012, 06:21 PM
error when extending CI_Controller - by El Forum - 05-29-2012, 06:47 PM
error when extending CI_Controller - by El Forum - 05-29-2012, 06:50 PM
error when extending CI_Controller - by El Forum - 05-29-2012, 09:16 PM
error when extending CI_Controller - by El Forum - 05-29-2012, 09:40 PM
error when extending CI_Controller - by El Forum - 05-29-2012, 10:02 PM
error when extending CI_Controller - by El Forum - 05-29-2012, 10:23 PM
error when extending CI_Controller - by El Forum - 06-15-2012, 01:04 AM
error when extending CI_Controller - by El Forum - 06-15-2012, 01:09 AM
error when extending CI_Controller - by El Forum - 06-15-2012, 01:11 AM
error when extending CI_Controller - by El Forum - 06-15-2012, 05:35 AM
error when extending CI_Controller - by El Forum - 06-15-2012, 06:29 AM
error when extending CI_Controller - by El Forum - 06-15-2012, 02:56 PM



Theme © iAndrew 2016 - Forum software by © MyBB