Welcome Guest, Not a member yet? Register   Sign In
CI update from 1.7 to 2.0 getting Fatal error: Class 'CI_Controller' not found in CodeIgniter.php on line 210
#11

[eluser]InsiteFX[/eluser]
Dont forget to change your Constructors to the new ones also.
Code:
//old way
class MyClass {

    function MyClass()
    {

    }
}

// New way constructor
class MyClass {

    public function __construct()
    {
        parent::__construct();
    }
}


Messages In This Thread
CI update from 1.7 to 2.0 getting Fatal error: Class 'CI_Controller' not found in CodeIgniter.php on line 210 - by El Forum - 02-02-2013, 03:56 AM



Theme © iAndrew 2016 - Forum software by © MyBB