访问管理面板时出错
I am trying to set up the admin panel for a mobile app template (with cms) that I bough and after linking the database and trying to access the admin panel I get the following errors, and I really have no idea what to do. Thanks so much to anyone who can help me!
A PHP Error was encountered
Severity: Notice
Message: Only variable references should be returned by reference
Filename: core/Common.php
Line Number: 257
A PHP Error was encountered
Severity: Warning
Message: Cannot modify header information - headers already sent by (output started at /Applications/MAMP/htdocs/cafeducap/admin/system/core/Exceptions.php:185)
Filename: libraries/Session.php
Line Number: 672
A PHP Error was encountered
Severity: Warning
Message: Cannot modify header information - headers already sent by (output started at /Applications/MAMP/htdocs/cafeducap/admin/system/core/Exceptions.php:185)
Filename: helpers/url_helper.php
Line Number: 546
我正在尝试设置移动应用模板(带有cms)的管理面板 数据库并尝试访问管理面板我得到以下错误,我真的不知道该怎么做。 非常感谢能帮助我的人! p>
遇到PHP错误 p>
严重性:注意 p>
消息:只应通过引用返回变量引用 p>
文件名:core / Common.php p>
行号:257 p>
遇到PHP错误 p>
严重性:警告 p>
消息:无法修改标头信息 - 已经发送的标头(输出始于 /Applications/MAMP/htdocs/cafeducap/admin/system/core/Exceptions.php:185)
nn文件名:libraries / Session.php p>
行号:672 p>
遇到PHP错误 p>
严重性:警告 p>
消息:无法修改标题 信息 - 已经发送的标题(输出开始于/Applications/MAMP/htdocs/cafeducap/admin/system/core/Exceptions.php:185)
nn文件名:helpers / url_helper.php
行号:546 p> div>
According to your error,
in system/core/common.php
file change
return $_config[0] =& $config;
to
$_config[0] =& $config;
return $_config[0];
It will work fine.