【问题标题】:Warning: POST Content-Length of 90612004 bytes exceeds the limit of 8388608 bytes in Unknown on line 0警告:90612004 字节的 POST 内容长度超出第 0 行未知中 8388608 字节的限制
【发布时间】:2016-12-22 10:57:43
【问题描述】:

我收到了这个错误

警告:90612004 字节的 POST 内容长度超过了 第 0 行未知中的 8388608 字节

我进行了一些搜索并更改了post_max_sizeupload_max_filesize 到 150M 并重置 Wamp 但我仍然收到此错误我该怎么办?

【问题讨论】:

标签: php laravel


【解决方案1】:

有两种修复方法。

首先 - 更改 php.ini 文件信息。

如下设置配置。

   post_max_size=100M
   upload_max_filesize=100M

第二次 - 使用 .htaccess 文件。

   php_value upload_max_filesize 100M
   php_value post_max_size 100M

【讨论】:

    猜你喜欢
    • 2013-03-24
    • 2013-05-16
    • 2013-05-16
    • 2012-07-28
    相关资源
    最近更新 更多