当前位置: 首页 > 站长资讯 > 正文页面

discuz上传附件过大提示Server (IO) Error的解决方法

今天遇到这个问题,我的服务器是 nginx+apache,php.ini里,已经设置了xCj网站目录_网站网址收录与提交入口

memory_limit 为200M,post_max_size = 150M,upload_max_filesize = 100M,max_execution_time为600秒,但是上传了一个10来M的压缩包仍然提示Server (IO) Error。后来在这个站点对应的nginx.conf文件中,增加了一行client_max_body_size 100m;,如下:xCj网站目录_网站网址收录与提交入口

server {xCj网站目录_网站网址收录与提交入口

listen 80;xCj网站目录_网站网址收录与提交入口

server_name xxx.com www.xxx.com ;xCj网站目录_网站网址收录与提交入口

root /www/web/y/xxx/public_html;xCj网站目录_网站网址收录与提交入口

index index.html index.php index.htm;xCj网站目录_网站网址收录与提交入口

error_page 400 /errpage/400.html;xCj网站目录_网站网址收录与提交入口

error_page 403 /errpage/403.html;xCj网站目录_网站网址收录与提交入口

error_page 404 /errpage/404.html;xCj网站目录_网站网址收录与提交入口

location ~ /.php$ {xCj网站目录_网站网址收录与提交入口

proxy_pass http://127.0.0.1:88;xCj网站目录_网站网址收录与提交入口

include naproxy.conf;xCj网站目录_网站网址收录与提交入口

client_max_body_size 100m;xCj网站目录_网站网址收录与提交入口

}xCj网站目录_网站网址收录与提交入口

location / {xCj网站目录_网站网址收录与提交入口

try_files $uri @apache;xCj网站目录_网站网址收录与提交入口

}xCj网站目录_网站网址收录与提交入口

location @apache {xCj网站目录_网站网址收录与提交入口

proxy_pass http://127.0.0.1:88;xCj网站目录_网站网址收录与提交入口

include naproxy.conf;xCj网站目录_网站网址收录与提交入口

}xCj网站目录_网站网址收录与提交入口

}xCj网站目录_网站网址收录与提交入口

问题解决。xCj网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章