您现在的位置是:首页 > cms教程 > phpcms教程phpcms教程

discuz不能登陆phpcms的几种解决方法

含蕾2025-04-29 21:52:12phpcms教程已有3人查阅

导读discuz不能登陆phpcms怎么办?discuz,ucenter,uchome修改密码 phpcms不能登陆的问题修正1、在UC后台更改密码后PC无法登陆的

discuz不能登陆phpcms怎么办?discuz,ucenter,uchome修改密码 phpcms不能登陆的问题修正
1、在UC后台更改密码后PC无法登陆的
解决办法: (你的UCenter安装根目录) / control / admin / user.php
大概289行
$_ENV['note']->add('updatepw', 'username='.urlencode($username).'&password=');
修改为:
$_ENV['note']->add('updatepw', 'username='.urlencode($username).'&password='.$orgpassword);
2、在DZ更改密码后PC无法登陆的(这个是大家最关注的)
解决办法:(你的论坛根目录) / uc_client / control / user.php
大概99行
$_ENV['note']->add('updatepw', 'username='.urlencode($username).'&password=');
修改为:
$_ENV['note']->add('updatepw', 'username='.urlencode($username).'&password='.$newpw);
3、在UCHome更改密码后PC无法登陆的
解决办法:(你的uchome根目录) / uc_client / control / user.php
大概104行
$_ENV['note']->add('updatepw', 'username='.urlencode($username).'&password=');
修改为:
$_ENV['note']->add('updatepw', 'username='.urlencode($username).'&password='.$newpw);

本文标签:

很赞哦! (0)

暂无内容
暂无内容
暂无内容
暂无内容
留言与评论 (共有 0 条评论)
昵称:
匿名发表 登录账号
         
验证码: