全国400电话网上服务平台
强大号码库资源任选,方便,快捷,快速开通。
咨询热线:400-1100-266
强大号码库资源任选,方便,快捷,快速开通。
咨询热线:400-1100-266
织梦dedecms提示“Not allow filename for not userdir”的解
POST TIME:2020-03-31 17:17
dedecms有时候会提示“Not allow filename for not userdir”,具体解决办法如下:
v5.6版本的程序请修改include/helpers/common.func.php文件,在里面找到下面的代码:
else if( !eregi('^http:', $handname) && !eregi('^'.$cfg_user_dir.'/'.$userid, $handname) && !$isadmin )
将其替换为下面的代码:
else if( eregi('^http:', $handname) && !eregi('^'.$cfg_user_dir.'/'.$userid, $handname) && !$isadmin )
也就是把eregi前面的感叹号去掉。
v5.7版本的程序请修改include/helpers/upload.helper.php文件,在里面找到如下代码:
else if( !preg_match('#^http:#', $handname) && !preg_match('#^/'.$cfg_user_dir.'/'.$userid."#", $handname) && !$isadmin )
将其替换为下面的代码:
else if( preg_match('#^http:#', $handname) && !preg_match('#^/'.$cfg_user_dir.'/'.$userid."#", $handname) && !$isadmin )
修改完成后就可以了,因为v5.7版本对缩略图作检查时程序使用了多条件判断,导致非管理员级别的会员编辑时出错。
Copyright © 2003-2016
时间:9:00-21:00 (节假日不休)
版权所有:巨人网络(扬州)科技有限公司
总部地址:江苏省信息产业基地11号楼四层
《增值电信业务经营许可证》 苏B2-20120278
时间:9:00-21:00 (节假日不休)
版权所有:巨人网络(扬州)科技有限公司
总部地址:江苏省信息产业基地11号楼四层
《增值电信业务经营许可证》 苏B2-20120278