当我试图在XAMPP本地开发环境的WordPress上上传导入时,我得到了这个错误:

警告:POST Content-Length的8978294字节超过了第0行Unknown中的8388608字节的限制

我将upload_max_filesize从2M更改为1000M,但这似乎没有任何作用。

什么好主意吗?


当前回答

这是一个8MB的post_max_size错误。

将其设置为您喜欢的值。

其他回答

upload_max_filesize = 8M;
post_max_size = 8M;

假设您已经更改了上面的值。但是当用户试图上传大于8M的大文件时会发生什么?

这就是发生的事情,PHP显示了这个警告!

Warning: POST Content-Length of x bytes exceeds the limit of y bytes in Unknown on line 0

你可以通过添加来避免它

ob_get_contents();
ob_end_clean();

使用wamp执行以下操作,希望它能解决问题

在PHP选项中进行以下更改以纠正:

max_execution_time   180

memory_limit   512M or your highest available

post_max_size  32M

upload_max_filesize   64M

C:\drive\xampp(where xampp installed)

简单地找到php.ini文件,然后在文件搜索

post_max_size=XXM
upload_max_size=XXM

使用此代码进行更改

post_max_size=100M
upload_max_filesize=100M

不要忘记重新启动xampp

如果你的目标是导入一个主题到你的Wordpress,那么你可以手动复制粘贴你的主题到你的wp-content->主题文件夹并提取它。我只是遇到了这个问题,无法找到WAMP的php.ini文件。

正如Optimaz ID指出的那样,下面的代码帮助我在用户上传的文件大于PHP .ini中设置的upload_max_filesize和post_max_size的情况下隐藏了PHP错误消息(当设置的值很大时,这几乎是不可能的)。

ob_get_contents();
ob_end_clean();