Codeigniter Filename: core/Common.php
PHP keluar dengan versi 5.6 terbarunya, namun framework codeigniter versi 2.x mungkin akan muncul pesan error seperti dibawah ini.
A PHP Error was encountered
Severity: Notice
Message: Only variable references should be returned by reference
Filename: core/Common.php
Line Number: 243 atau 257
Karena codeigniter versi 2.x berjalan di bawah PHP versi 5.5, untuk itu buka file Common.php sesuaikan line Errornya terdapat code seperti dibawah ini :
return $_config[0] =& $config;
ubah menjadi
$_config[0] =& $config;
return $_config[0];
Selamat mencoba dan semoga berhasil.
Comments
Post a Comment