In the codeigniter when you seen the warning in this bellow “Only variable references should be returned by reference” you can fix this
Edit filename: core/Common.php, line number: 257
Before
return $_config[0] =& $config;
After
$_config[0] =& $config;
return $_config[0];