When uploading the theme file Kalium.zip i get this message:
Request Entity Too Large
The requested resource /wordpress/wp-admin/update.php does not allow request data with POST requests, or the amount of data provided in the request exceeds the capacity limit.Apache Server at lauraalvarez.eu Port 80
I already contacted my hosting provider and they change the php limits according to your suggestions on the web but still the same problem...I need help!!! Thanks!
Recommended PHP Configuration Limits
Many issues you may run into such as; white screen, demo content fails when importing, empty page content and other similar issues are all related to low PHP configuration limits. The solution is to increase the PHP limits. You can do this on your own, or contact contact your web host and ask them to increase those limits to a minimum as follows:
You need to configure both nginx and php to allow upload size.
Nginx configuration
The client_max_body_size directive assigns the maximum accepted body size of client request, indicated by the line Content-Length in the header of request. If size is greater the given one, then the client gets the error "Request Entity Too Large" (413).
You can contact your host provider and request to increase the upload size to 32MB
When uploading the theme file Kalium.zip i get this message:
Request Entity Too Large
The requested resource
/wordpress/wp-admin/update.php
does not allow request data with POST requests, or the amount of data provided in the request exceeds the capacity limit.Apache Server at lauraalvarez.eu Port 80
I already contacted my hosting provider and they change the php limits according to your suggestions on the web but still the same problem...I need help!!! Thanks!
Recommended PHP Configuration Limits
Many issues you may run into such as; white screen, demo content fails when importing, empty page content and other similar issues are all related to low PHP configuration limits. The solution is to increase the PHP limits. You can do this on your own, or contact contact your web host and ask them to increase those limits to a minimum as follows:
max_execution_time 180
memory_limit 128M
post_max_size 64M
upload_max_filesize 64M
max_input_time 60
Hi,
You need to configure both nginx and php to allow upload size.
Nginx configuration
The client_max_body_size directive assigns the maximum accepted body size of client request, indicated by the line Content-Length in the header of request. If size is greater the given one, then the client gets the error "Request Entity Too Large" (413).
You can contact your host provider and request to increase the upload size to 32MB