If you happened encountered that PHP Error on your CodeIgniter application (eg fuelcms), then try this fix by milan.petrak in EllisLab’s forum :
return $_config[0] =& $config;
change into :
$_config[0] =& $config; return $_config[0];

If you happened encountered that PHP Error on your CodeIgniter application (eg fuelcms), then try this fix by milan.petrak in EllisLab’s forum :
return $_config[0] =& $config;
change into :
$_config[0] =& $config; return $_config[0];
Leave a Reply