Welcome Guest, Not a member yet? Register   Sign In
Installation Errors - Backendpro
#1

[eluser]Shiju S S[/eluser]
Quote:Fatal error: Class 'Site_Controller' not found in D:\xampp\htdocs\backendpro\system\application\libraries\Admin_controller.php on line 26

I used the following code in config.php to overcome the Fatal error: Class 'Admin_Controller'
Code:
function __autoload($class)
{
    if (strpos($class, 'CI_') !== 0)
    {
        if (file_exists($file = APPPATH . 'core/' . $class . EXT))
        {
            include $file;
        }

        else if (file_exists($file = APPPATH . 'libraries/' . $class . EXT))
        {
            include $file;
        }
    }
}

Now what? Please help




Theme © iAndrew 2016 - Forum software by © MyBB