发布时间:2022-04-01 文章分类:PHPCMS 教程 投稿人:樱花 字号: 默认 | | 超大 打印

discuz不能登陆phpcms怎么办

推荐:《discuz教程》

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);

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


discuz不能登陆phpcms怎么办