用户
 找回密码
 入住 CI 中国社区
搜索
查看: 5455|回复: 2
收起左侧

求解,安装时上面有这样的问题

[复制链接]
发表于 2016-4-23 10:42:15 | 显示全部楼层 |阅读模式
A PHP Error was encountered

Severity: Notice

Message: Only variable references should be returned by reference

Filename: core/Common.php

Line Number: 257
发表于 2016-7-25 15:47:08 | 显示全部楼层
找到这一行 return $_config[0] =& $config;
                修改成
                $_config[0] =& $config;
                return $_config[0];
发表于 2018-5-9 13:32:00 | 显示全部楼层
找到Dilicms安装目录下的system---core---common.php文件,找到下列代码:
return $_config[0] =& $config;
将它修改为:
$_config[0] =& $config;
return $_config[0];

本版积分规则