详细内容
升级shopex官方支付宝快捷登录1.5页面报错的解决方
时间:2011-12-01 00:42 来源:未知 作者:admin 点击:

Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file in D:\wwwroot\UNITEDT\store\plugins\widgets\topbar\widget_topbar.php on line 13

用编辑工具打开:plugins\widgets\member\widget_member.php找到13行,把&去掉$aMember = trust_login_list(&$system);
改为
$aMember = trust_login_list($system);

(责任编辑:admin)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------
标签:shopex报错
上一篇:shopex教程之:一步一步教你安装ShopEx网店 下一篇:MySQL中将字符串aaa批量替换为bbb的SQL语句