1334794679 发表于 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

ming862394769 发表于 2016-7-25 15:47:08

找到这一行 return $_config =& $config;
                修改成
                $_config =& $config;
                return $_config;

华安99 发表于 2018-5-9 13:32:00

找到Dilicms安装目录下的system---core---common.php文件,找到下列代码:
return $_config =& $config;
将它修改为:
$_config =& $config;
return $_config;
页: [1]
查看完整版本: 求解,安装时上面有这样的问题