Welcome Guest, Not a member yet? Register   Sign In
autoload.php is not loaded in development config directory [solved]
#3

[eluser]Zaher Ghaibeh[/eluser]
i have just solve it Big Grin
edit your 'Loader.php' file and replace this line 976:
function _ci_autoloader()
{
include_once(APPPATH.'config/autoload'.EXT);
with this :
function _ci_autoloader()
{
if(file_exists(APPPATH.'config/'.ENVIRONMENT.'/autoload'.EXT)){
include_once(APPPATH.'config/'.ENVIRONMENT.'/autoload'.EXT);
}else{
include_once(APPPATH.'config/autoload'.EXT);
}


Messages In This Thread
autoload.php is not loaded in development config directory [solved] - by El Forum - 04-05-2011, 12:44 PM



Theme © iAndrew 2016 - Forum software by © MyBB