Welcome Guest, Not a member yet? Register   Sign In
extend MY_Controller
#14

[eluser]Unknown[/eluser]
[quote author="InsiteFX" date="1306017226"]I dont know if they have fixed it but before you had to use an autoload in the 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;
        }
    }
}

InsiteFX[/quote]


Thank you for this! Works perfectly (CI 2.0.2)


Messages In This Thread
extend MY_Controller - by El Forum - 05-21-2011, 02:28 AM
extend MY_Controller - by El Forum - 05-21-2011, 02:50 AM
extend MY_Controller - by El Forum - 05-21-2011, 03:36 AM
extend MY_Controller - by El Forum - 05-21-2011, 03:47 AM
extend MY_Controller - by El Forum - 05-21-2011, 03:49 AM
extend MY_Controller - by El Forum - 05-21-2011, 04:01 AM
extend MY_Controller - by El Forum - 05-21-2011, 04:27 AM
extend MY_Controller - by El Forum - 05-21-2011, 05:21 AM
extend MY_Controller - by El Forum - 05-21-2011, 11:33 AM
extend MY_Controller - by El Forum - 05-21-2011, 12:53 PM
extend MY_Controller - by El Forum - 05-21-2011, 01:50 PM
extend MY_Controller - by El Forum - 05-21-2011, 04:17 PM
extend MY_Controller - by El Forum - 05-22-2011, 06:13 AM
extend MY_Controller - by El Forum - 06-10-2011, 03:55 PM
extend MY_Controller - by El Forum - 06-11-2011, 01:43 AM



Theme © iAndrew 2016 - Forum software by © MyBB