• I am facing this error when trying to attach image larger than 50kb of size.

    This is how it looks:

    Request Entity Too Large
    
    The requested resource
    /wp-comments-post.php
    does not allow request data with GET requests, or the amount of data provided in the request exceeds the capacity limit.
    Additionally, a 413 Request Entity Too Large error was encountered while trying to use an ErrorDocument to handle the request.

    Please help me to fix it.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Try to look for the following line in the php.ini and set it to the size that you require:

    Check and/or increase the following:

    upload_max_filesize = 32M
    post_max_size = 32M

    Optionally increase:

    max_execution_time =300
    max_input_time=300
    memory_limit =128M

    Or You can then set it in the .htaccess file:

    php_value post_max_size 32M

    Waar vind ik die php.ini Ik heb gezocht maar kan het nergens vinden.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘413 Error: Request Entity Too Large’ is closed to new replies.