Welcome Guest, Not a member yet? Register   Sign In
MY_Controller and autoload
#2

[eluser]InsiteFX[/eluser]
MY_Controller has to be in application/core

Add this to the bottom of application/config/config.php
Code:
/*
| -------------------------------------------------------------------
|  Native Autoload - by Phil Sturgeon.
| -------------------------------------------------------------------
|
| Nothing to do with config/autoload.php, this allows PHP autoload to work
| for base controllers and some third-party libraries.
|
| Place this code at the bottom of your application/config/config.php file.
*/
function __autoload($class)
{
    if (strpos($class, 'CI_') !== 0)
    {
        @include_once(APPPATH . 'core/' . $class . EXT);
    }
}

InsiteFX


Messages In This Thread
MY_Controller and autoload - by El Forum - 03-04-2011, 06:28 PM
MY_Controller and autoload - by El Forum - 03-04-2011, 07:11 PM
MY_Controller and autoload - by El Forum - 03-04-2011, 07:18 PM



Theme © iAndrew 2016 - Forum software by © MyBB