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];
Thanks
For me , I change into :
return $config;
It works
Glad it works 🙂
where i put this code ?
Hai,
in FuelCMS, the file is “fuel/codeigniter/core/Common.php”, find at line 257
in CodeIgniter 2.2.1, the file is “system/core/Common.php” but there’s no need to edit.
Thanks for posting
nice article, it was work for me, thanks
This is not working with me !!!
It was an old case… I don’t check CI for quite sometimes. Try at CodeIgniter forum
https://forum.codeigniter.com/
Leave a Reply