首页 > CMS > 织梦DEDE > 正文

dedecms 管理员中文帐号不能登录处理办法

2024-07-12 08:43:14
字体:
来源:转载
供稿:网友

打开include/userlogin.class.php教程文件,搜索 checkuser如下:

  1. function checkuser($username,$userpwd
  2.  {//开源软件:Vevb.com 
  3.   global $dsql
  4.   //只允许用户名和密码用0-9,a-z,a-z,'@','_','.','-'这些字符 
  5.   //$this->username = ereg_replace("[^0-9a-za-z_@!.-]",'',$username); 
  6.         $this->username = $username

把$this->username = ereg_replace("[^0-9a-za-z_@!.-]",'',$username);替换成 $this->username = $username;就可以了.

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表