求解,安装时上面有这样的问题
A PHP Error was encounteredSeverity: Notice
Message: Only variable references should be returned by reference
Filename: core/Common.php
Line Number: 257 找到这一行 return $_config =& $config;
修改成
$_config =& $config;
return $_config; 找到Dilicms安装目录下的system---core---common.php文件,找到下列代码:
return $_config =& $config;
将它修改为:
$_config =& $config;
return $_config;
页:
[1]