Welcome Guest, Not a member yet? Register   Sign In
Taking site live
#7

[eluser]Benito[/eluser]
I ran across a situation similar to yours. I was extending my own controllers and forgot to add this line on my live server to the config.php Just a thought..

Code:
function __autoload($class) {
      if (file_exists(APPPATH. 'core/'. $class . EXT )) {
          @include_once( APPPATH . 'core/'. $class . EXT );
          return true;
      }
      return false;
}


Messages In This Thread
Taking site live - by El Forum - 04-10-2011, 12:38 PM
Taking site live - by El Forum - 04-10-2011, 01:00 PM
Taking site live - by El Forum - 04-10-2011, 01:21 PM
Taking site live - by El Forum - 04-10-2011, 01:44 PM
Taking site live - by El Forum - 04-10-2011, 01:56 PM
Taking site live - by El Forum - 04-10-2011, 07:45 PM
Taking site live - by El Forum - 04-11-2011, 07:35 AM



Theme © iAndrew 2016 - Forum software by © MyBB