在安装discuz成功后,上传图片时提示server (IO) error错误!!!
1. 查看错误日志error.log,发现如下错误:
09:18:01 [error] 1966#0: *50 open() " /application/nginx-1.6.3//html/bbs/static/js/common_postimg.js"failed (2: No such file or directory) , client: 10.0.0.1, server:bbs.etiantian.org, request: "GET /static/js/common_postimg.js?GaoHTTP/1.1", host: "bbs.etiantian.org", referrer: http://bbs.etiantian.org/forum.php?mod=post&action=newthread&fid=2
2. 错误日志中提示没有/common_postimg.js,网上查找发现可以通过修改/template/default/common/editor.htm配置文件解决。
3. 解决方法:
原文件内容:
4 <scripttype="text/javascript"src="data/cache/common_postimg.js?{VERHASH}"></script>
修改为:
4 <scripttype="text/javascript" src="{$_G[‘setting‘][‘jspath‘]}common_postimg.js?{VERHASH}"></script>
4. 修改完成后测试,上传图片正常。
本文出自 “开心风语” 博客,请务必保留此出处http://liangkai.blog.51cto.com/11254506/1775022
关于本地安装discuz,上传图片sever(IO) error错误
原文地址:http://liangkai.blog.51cto.com/11254506/1775022