我尝试上传文件(通过silex)。因为我在httpd-conf文件中的帖子内容长度有限:
php_value upload_max_filesize 1M
php value post_max_size 10M
当我尝试上传大于10M(大于post_max_size)的文件时,我在httpd-error中看到一个警告,$ _FILES为空:
[Sat Apr 05 11:08:54.788022 2014] [:error] [pid 1165] [client ::1:44010] PHP Warning: POST Content-Length of 30531496 bytes exceeds the limit of 10485760 bytes in Unknown on line 0, referer: http://somehost/somepath
我无法访问错误(即使是error_get_last),我无法在代码中检测到问题。 我该如何解决这个问题?