简体   繁体   English

413请求实体在Joomla 3.3中太大

[英]413 Request Entity Too Large In Joomla 3.3

Hello all i'm getting this error when I'm posting new articles of 4500 lines it says 您好,我在张贴4500行的新文章时收到此错误

Request Entity Too Large 请求的实体太大

The requested resource /administrator/index.php does not allow request data with GET requests, or the amount of data provided in the request exceeds the capacity limit. 请求的资源/administrator/index.php不允许带有GET请求的请求数据,或者请求中提供的数据量超出了容量限制。 Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request. 此外,尝试使用ErrorDocument处理请求时遇到404 Not Found错误。

I did change in php.ini with but still same error 我确实在php.ini中进行了更改,但仍然存在相同的错误

   max_input_time = 24000
   max_execution_time = 24000
   upload_max_filesize = 12000M
   post_max_size = 30000M
   memory_limit = 12000M

it runs on Joomla! 它在Joomla上运行! 3.3.6 Stable [ Ember ] 3.3.6稳定[灰烬]

Set following line in nginx configuration file (nginx.conf) if your joomla portal is on nginx server: 如果您的joomla门户位于nginx服务器上,请在nginx配置文件(nginx.conf)中设置以下行:

client_max_body_size 100M;

Restart nginx and now plugin installation will work. 重新启动nginx,现在可以安装插件了。

Thanks 谢谢

As @Kevin noted this is a configuration issue with your web server. 正如@Kevin指出的,这是Web服务器的配置问题。 If you're using Apache the configuration you want to modify is LimitRequestBody . 如果您使用的是Apache, LimitRequestBody修改的配置是LimitRequestBody

If using nginx the directive is client_max_body_size 如果使用nginx,则指令为client_max_body_size

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM