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

        今天在上传图片的时候出现一个问题,使用自己写的上传没有问题,但是使用kindeditor组件的时候发现上传错误,在上传代码打各种断点发现也没有报错,就是没有上传文件,查看php.ini中的上传限制也是没问题的因为自己写的能上传啊。很纠结最后通过error_log文件找到了错误 PHP Warning:  POST Content-Length of 9182683 bytes exceeds the limit of 8388608 bytes in Unknown on line 0。

        这是因为在php.ini中修改post_max_size 参数的原因,其默认为8M,可以根据实际情况修改允许最大上传值。

你可能感兴趣的:(php,php,linux)