遇到的問題是這樣的用input file元件上傳大附件時,一直報「413 Request Entity Too Large」這個錯,試過上傳40M的壓縮文件,可以成功上傳,耗時37秒左右,當檔案大小變成80M時,當上傳時間到30秒就報這個錯了,在網路上著了相關的資料,現在的設定檔的相關參數設定是這樣的
nginx.conf
client_max_body_size 100M;
php.ini
upload_max_filesize = 200M;
post_max_size = 250M;
max_execution_time = 30;
php-fpm.conf
request_terminate_timeout = 30s
在php腳本裡也試過
ini_set('max_execution_time', '0');
set_time_limit(0);
想請教一下可能是哪裡的問題?謝謝各位了
我想大声告诉你2017-05-16 17:27:12
http://www.cyberciti.biz/faq/linux-unix-bsd-nginx-413-request-entity-too-large/
記憶體限制