站长资讯网
最全最丰富的资讯网站

phpcms v9登录失败怎么办

phpcms v9登录失败怎么办

phpcms v9登录失败?phpcmsv9全站 https ssl后会员登录失败解决方法

phpcms v9登录失败怎么办

很多朋友在使用phpcmsv9的时候遇到了这样一个问题,在将全站https化后,会员中心无法正常登录,具体是没有返回值,提示登录失败,主要是原来是系统在初始化phpsso时,无法将数据通过443传输到对应的方法,通过排查问题,可以看到在client.class.php中,系统默认使用的端口是80,所以我们只需要按以下方法修改就可以解决在https后会员无法登录的问题:

phpcms v9登录失败怎么办

phpcms/modules/member/classes/client.class.php

中361行修改如下:

$port = !empty($matches['port']) ? $matches['port'] : ( strtolower($matches['scheme'])=='https' ? 443 : 80 );

第386行将:

$fp = @fsockopen(($ip ? $ip : $host), $port, $errno, $errstr, $timeout);

替换为

$contextOptions = array(     'ssl' => array(         'verify_peer' => false,         'verify_peer_name' => false     ) );   //如果有签名的证书 //$contextOptions = array( //    'ssl' => array( //        'verify_peer' => true,  //        'cafile' => '/path/to/cacert.pem', //        //'CN_match' => 'indexroot.net', // 匹配域名 //        'ciphers' => 'HIGH:!SSLv2:!SSLv3', //        'disable_compression' => true, //    ) //);   $context = stream_context_create($contextOptions); $fp = stream_socket_client("ssl://{$host}:{$port}", $errno, $errstr, $timeout, STREAM_CLIENT_CONNECT, $context);

PHP中文网,大量的免费PHPCMS教程,欢迎在线学习!

赞(0)
分享到: 更多 (0)
网站地图   沪ICP备18035694号-2    沪公网安备31011702889846号