首页 >

织梦DedeCMS中文注册会员无法打开空间的搞定方式

解决中文注册的会员空间打不开问题

织梦DedeCMS中文注册会员无法打开空间的搞定方式

这个问题也很苦恼,不过还是被解决了。大伙分享下哈。

其实说到底还是个字符编码转换问题。

因为汉字没有在判断uid值时出现了错误,导致系统无法识别用户,所以发生了”你访问的用户可能已经被删除!”错误

方法是

在”member\config.php”文件的最后,PHP结束以前添加 isUTF8($str)函数

function isUTF8($str){

$length=strlen($str);

for($i=0;$i<$length;$i++){

$high=ord($str{$i});

if(($high==0xC0)||($high==0xC1)){

return false;

}elseif($high<0x80){

continue;

}elseif($high<0xC0){

return false;

}elseif($high<0xE0){

if(++$i>=$length)

return true;

elseif(($str{$i}&”\xC0″)==”\x80″)

continue;

}elseif($high<0xF0){

if(++$i>=$length){

return true;

}elseif(($str{$i}&”\xC0″)==”\x80″){

if(++$i>=$length)

return true;

elseif(($str{$i}&”\xC0″)==”\x80″)

continue;

}

}elseif($high<0xF5){

if(++$i>=$length){

return true;

}elseif(($str{$i}&”\xC0″)==”\x80″){

if(++$i>=$length){

return true;

}elseif(($str{$i}&”\xC0″)==”\x80″){

if(++$i>=$length)

return true;

elseif(($str{$i}&”\xC0″)==”\x80″)

continue;

}

}

}

return false;

}

return true;

}

然后修改”member\index.php”中的代码:将

$tmpstr = @gb2utf8($uid);

$tmpstr2 = @utf82gb($tmpstr);

if($tmpstr2==$uid) $uid = $tmpstr;

修改为

if(!isUTF8($uid)) $uid = @gb2utf8($uid);

问题解决。


织梦DedeCMS中文注册会员无法打开空间的搞定方式
  • 安装织梦DedeCMS5.5uft出现Deprecated: Function ereg_replace() is dep
  • 安装织梦DedeCMS5.5uft出现Deprecated: Function ereg_replace() is dep | 安装织梦DedeCMS5.5uft出现Deprecated: Function ereg_replace() is dep ...

    织梦DedeCMS中文注册会员无法打开空间的搞定方式
  • 织梦DedeCMS获取某篇文章内容的方法
  • 织梦DedeCMS获取某篇文章内容的方法 | 织梦DedeCMS获取某篇文章内容的方法 ...

    织梦DedeCMS中文注册会员无法打开空间的搞定方式
  • 织梦DedeCMS模板织梦DedeCMS添加和调用自定义字段的教程
  • 织梦DedeCMS模板织梦DedeCMS添加和调用自定义字段的教程 | 织梦DedeCMS模板织梦DedeCMS添加和调用自定义字段的教程 ...