问题:
发现:可以上传图片类,用附件我图片上传都可以。
但是,上传DOC,rar等,皆显示文件类型错误。实际上,在设置里已允许上传这些文件。
另,在后台设置里,上传文件类型处,说明是用|分开,实际是用,分开。用|好象不行。建议改下。
答案:
在admin_upfile.asp文件中将
If Not ( CheckFileExt(FileExt) and CheckFileType(File.FileType) ) Then
Response.Write "文件格式不正确 [ <a href=# onclick=history.go(-1)>重新上传</a> ]"
response.end
End If
修改为----
if methods = 1 then
If Not ( CheckFileExt(FileExt)) Then
Response.Write "文件格式不正确 [ <a href=# onclick=history.go(-1)>重新上传</a> ]"
response.end
End If
else
If Not ( CheckFileExt(FileExt) and CheckFileType(File.FileType) ) Then
Response.Write "文件格式不正确 [ <a href=# onclick=history.go(-1)>重新上传</a> ]"
response.end
End If
end if
只要改这个就行了,其它的没问题
更多的附件上传错误-711文章系统修正请到论坛查看: http://BBS.TC711.COM
【 双击滚屏 】 【 评论 】 【 收藏 】 【 打印 】 【 关闭 】
来源:
互联网
日期:2006-11-1