本帖最后由 zhoujing1123 于 2013-7-4 13:19 编辑
php网站和dzX2.5实现同步登陆,后台设置已经通信已经成功,可实现登陆的时候uc_user_synlogin返回空值
在function uc_fopen()函数中$fp=false;
if(function_exists('fsockopen')) {
$fp = @fsockopen(($ip ? $ip : $host), $port, $errno, $errstr, $timeout);
} elseif (function_exists('pfsockopen')) {
$fp = @pfsockopen(($ip ? $ip : $host), $port, $errno, $errstr, $timeout);
} else {
$fp = false;
}添加了 elseif(function_exists('stream_socket_client')) { $fp = @stream_socket_client($ip.':'.$port, $errno, $errstr, $timeout);
}
也不管用
|