更改core / Common.php结果net :: ERR_TOO_MANY_REDIRECTS

时间:2016-10-08 05:43:19

标签: php codeigniter apache2 codeigniter-2

服务器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错误

1 个答案:

答案 0 :(得分:2)

核心/ Common.php中的

在第257行添加此行

return $_config[0];  

当我升级我的codeigniter版本

时,我试着为它工作