在使用科讯CMS制作网站的过程中,我都设置了(编辑员权限、模型中的上传权限,基本设置中关于上传的权限),超级管理员没有问题,就是编辑员时出问题
处理办法:admin/include/SelectPic.asp文件125到129行改为 If LimitUpFileFlag <> "yes" Then Response.Write ("onClick=UpFile();") Else Response.Write ("onClick=UpFile();") End If 即可
8.0x普通管理员上传文件提示无权限的修改方法
解决方法:
以文章模型为例,打开
admin/ks.article.asp
找到
- .Write "$(document).ready(function(){CKEDITOR.replace('Content', {width:""98%"",height:""360px"",toolbar:""NewsTool"",filebrowserBrowseUrl :""Include/SelectPic.asp?from=ckeditor&Currpath="& KS.GetUpFilesDir() &""",filebrowserWindowWidth:650,filebrowserWindowHeight:290});})"
改为
- .Write "$(document).ready(function(){CKEDITOR.replace('Content', {width:""98%"",height:""360px"",toolbar:""NewsTool"",filebrowserBrowseUrl :""Include/SelectPic.asp?channelid=" & channelid & "&from=ckeditor&Currpath="& KS.GetUpFilesDir() &""",filebrowserWindowWidth:650,filebrowserWindowHeight:290});})"
这样就可以根据后台角色里设置是否有上传权限控制了