Debian Jessie - Apache2/PHP 5.6,不能上传超过 128kb [英] Debian Jessie - Apache2 / PHP 5.6, can't upload more than 128kb

查看:24
本文介绍了Debian Jessie - Apache2/PHP 5.6,不能上传超过 128kb的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我遇到了一个问题,让我发疯了!我最近将我的服务器更新为 Jessie(希望我现在没有!)但自从我这样做以来,我一次上传的文件不能超过 128KB.

I've got a problem which is bugging me like crazy! I've recently updated my server to Jessie (wishing I hadn't at the moment!) but ever since I did, I can't upload more than 128KB in a single upload.

我已经尝试了所有常见的明显选项 - 检查 php.ini 的最大文件大小、执行时间等,但没有解决方案.

I've tried all the usual obvious options - checking php.ini for max file size, execution times, etc but with no solution.

;;;;;;;;;;;;;;;;
; File Uploads ;
;;;;;;;;;;;;;;;;

; Whether to allow HTTP file uploads.
; http://php.net/file-uploads
file_uploads = On

; Temporary directory for HTTP uploaded files (will use system default if not
; specified).
; http://php.net/upload-tmp-dir
;upload_tmp_dir = /var/tmp

; Maximum allowed size for uploaded files.
; http://php.net/upload-max-filesize
upload_max_filesize = 500M

; Maximum number of files that can be uploaded via a single request
max_file_uploads = 50

以上是我用于 CLI、CGI 和 apache2 的 php.ini 文件的摘录.

Above is an excerpt from my php.ini files for CLI, CGI and apache2.

我想不出还有什么要检查的.如果我尝试上传比这更大的任何内容,我要么从服务器收到 500 响应,要么从我的 Web 浏览器收到服务器意外断开连接"错误.这个问题意味着,如果我通过 WordPress 上传,我会收到HTTP 错误",如果我尝试通过 Owncloud 上传,我会收到连接关闭".

I can't think what else to check. If I try and upload anything larger than that, I either get a 500 response from the server or I get a "server unexpectedly dropped connection" error from my web browser. The issue means that if I upload via WordPress I get "HTTP Error" and if I try and upload via Owncloud I get "connection closed".

Debian 杰西Apache/2.4.10 (Debian) mod_fcgid/2.3.9 PHP/5.6.6-2 OpenSSL/1.0.1k

Debian Jessie Apache/2.4.10 (Debian) mod_fcgid/2.3.9 PHP/5.6.6-2 OpenSSL/ 1.0.1k

Apache2 错误日志看起来像这样...

Apache2 error log looks like this...

[Fri Mar 27 11:32:18.736845 2015] [mpm_prefork:notice] [pid 6012] AH00163: Apache/2.4.10 (Debian) mod_fcgid/2.3.9 PHP/5.6.6-2 OpenSSL/1.0.1k configured -- resuming normal operations
[Fri Mar 27 11:32:18.736959 2015] [core:notice] [pid 6012] AH00094: Command line: '/usr/sbin/apache2'
[Fri Mar 27 11:45:33.881783 2015] [mpm_prefork:notice] [pid 6012] AH00169: caught SIGTERM, shutting down
[Fri Mar 27 11:45:34.861896 2015] [ssl:warn] [pid 6699] AH01906: xxx:8080:0 server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Fri Mar 27 11:45:34.862153 2015] [suexec:notice] [pid 6699] AH01232: suEXEC mechanism enabled (wrapper: /usr/lib/apache2/suexec)
[Fri Mar 27 11:45:34.938830 2015] [auth_digest:notice] [pid 6701] AH01757: generating secret for digest authentication ...
[Fri Mar 27 11:45:35.051083 2015] [ssl:warn] [pid 6701] AH01906: xxx:8080:0 server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Fri Mar 27 11:45:35.081620 2015] [mpm_prefork:notice] [pid 6701] AH00163: Apache/2.4.10 (Debian) mod_fcgid/2.3.9 PHP/5.6.6-2 OpenSSL/1.0.1k configured -- resuming normal operations
[Fri Mar 27 11:45:35.081693 2015] [core:notice] [pid 6701] AH00094: Command line: '/usr/sbin/apache2'
[Fri Mar 27 11:56:41.650574 2015] [mpm_prefork:notice] [pid 6701] AH00169: caught SIGTERM, shutting down
[Fri Mar 27 11:56:42.911897 2015] [ssl:warn] [pid 7255] AH01906: xxx:8080:0 server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Fri Mar 27 11:56:42.912493 2015] [suexec:notice] [pid 7255] AH01232: suEXEC mechanism enabled (wrapper: /usr/lib/apache2/suexec)
[Fri Mar 27 11:56:42.983533 2015] [auth_digest:notice] [pid 7257] AH01757: generating secret for digest authentication ...
[Fri Mar 27 11:56:43.238951 2015] [ssl:warn] [pid 7257] AH01906: xxx:8080:0 server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Fri Mar 27 11:56:43.273995 2015] [mpm_prefork:notice] [pid 7257] AH00163: Apache/2.4.10 (Debian) mod_fcgid/2.3.9 PHP/5.6.6-2 OpenSSL/1.0.1k configured -- resuming normal operations
[Fri Mar 27 11:56:43.274080 2015] [core:notice] [pid 7257] AH00094: Command line: '/usr/sbin/apache2'

有没有人有任何想法或遇到过类似的问题?

Has anyone had any ideas or come across a similar problem?

提前加油

推荐答案

https://www.devside.net/wamp-server/apache-and-php-limits-and-timeouts

使用 PHP-FCGI(通过 Apache 的 mod_fcgid 运行的单独 PHP 进程)时,在较新版本(v2.3.6 及更高版本)中,mod_fcgid 默认上限为 128KB,并且在达到该限制时通常会返回500 服务器错误".

When using PHP-FCGI (a separate PHP process ran via Apache’s mod_fcgid), mod_fcgid caps uploads to 128KB by default in newer versions (v2.3.6 and above), and usually returns a "500 Server Error" when that limit is reached.

这篇关于Debian Jessie - Apache2/PHP 5.6,不能上传超过 128kb的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆