服务器PHP升级后,我在Apache 2.0上使用PHP 5.6.2版收到以下错误
A PHP Error was encountered
Severity: Notice
Message: Only variable references should be returned by reference
Filename: core/Common.php
Line Number: 257
然后我改变了core / Common.php
return $_config[0] =& $config
进入
$_config[0] =& $config; return $_config[0];
这导致网站重定向过多,导致302错误
答案 0 :(得分:2)
在第257行添加此行
return $_config[0];
当我升级我的codeigniter版本
时,我试着为它工作