关于ecshop 整合ucenter遇到的错误解决
2016-09-11 20:38 来源:www.chinab4c.com 作者:ecshop专家
在ecshop 2.7.3整合ucenter之后ec用户能同步登陆到dz但是 uc_server始终显示通信失败,并且 dz登陆 退出状态不能同步到ec。
观察发现ec的页面上有以下报错
1 | Strict Standards: Declaration of ucenter::login() should be compatible with integrate::login($username, $password, $remember = NULL) in D:\\xampp\\htdocs\\ecshop\\includes\\modules\\integrates\\ucenter.php on line 52 |
2 |
3 | Strict Standards: Declaration of ucenter::add_user() should be compatible with integrate::add_user($username, $password, $email, $gender = -1, $bday = 0, $reg_date= 0, $md5password = '') in D:\\xampp\\htdocs\\ecshop\\includes\\modules\\integrates\\ucenter.php on line 52 |
4 |
5 | Strict Standards: Declaration of ucenter::set_cookie() should be compatible with integrate::set_cookie($username = '', $remember = NULL) in D:\\xampp\\htdocs\\ecshop\\includes\\modules\\integrates\\ucenter.php on line 52 |
原来是ecshop中 /includes/modules/initgrates/ucenter.php中继承 /includes/modules/initgrates/initgrate.php重写方法时候参数不统一,只需同步这几个函数的参数定义方式即可
如果ucenter退出,而其他同步的应用没有退出可以看看如下的方案
在ecshop的/includes/lib_common.php function uc_call
这里的 $res = call_user_func_array( $func, $params ); 出错了
替换成这样 ,就可以了
if( !is_array($params)){
$res = call_user_func( $func, $params );
}else{
$res = call_user_func_array( $func, $params );
}
或者直接把$params转换成数组
则在 $res = call_user_func_array($func,$params);前面加上
if(!$params) {
$params = array();
}
即可
最近更新
常用插件
- ecshop2.7.1邮件发送插件
ecshop2.7.1邮件发送插件:该插件主要的开发思想是源于ecshop短信发送系统...
- ecshop最小购买数量控制插
ecshop最小购买数量控制插件,这个插件主要是为我们提供一个十分方便...
- ecshop没登陆情况下订单查
ecshop没登陆情况下订单查询插件,主要是针对ecshop在没有登陆的情况下...
- ecshop2.7.2生成虚拟订单2.
以前我们开发过ecshop下的虚拟订单,就是客户在访问的时候,会自动生...
- ecshop二次开发商品购买增
图片1香...