天天看點

PHP Warning: POST Content-Length of 8978294 bytes exceeds the limit of 8388608 bytes in Unknown on l

PHP Warning: POST Content-Length of 8978294 bytes exceeds the limit of 8388608 bytes in Unknown on line 0

解決辦法:把php.ini檔案這2個參數擴大

upload_max_filesize 限制使用者上傳單檔案的大小

post_max_size 限制 POST 請求 body 的大小

修改如下;

upload_max_filesize =600M

post_max_size =600M