Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2785143
413 error update trouble
Closed

Comments

  • gabriellepacheco started the conversation

    Hi, I'm having some trouble updating my theme. Whenever I try to submit the 7.9.2 version, it appears a screen saying "413 Request Entity Too Large". Could you help me? I have absolutely zero knowledge in coding and stuff lol.

  •  2,495
    PenciDesign replied

    Hi,

    This error usually happens when you are trying to upload a file that exceeds the maximum file upload limit on your WordPress site. Your web server will fail to upload the file, and you will see the 413 request entity too large error page. Please contact your hosting provider to get help or self config by following this step.

    Method 1. Increase Upload File Size Limit via Functions File

    Open Appearance > Theme Editor, select Soledad then select file functions.php, add this content on the top of the file:

    @ini_set( 'upload_max_size' , '64M' );
    @ini_set( 'post_max_size', '64M');
    @ini_set( 'max_execution_time', '300' );

    tKdIq6n.png

    Method 2. Increase Upload File Size Limit via .htacces File

    Install plugin Htaccess File Editor – Safely Edit Htaccess File, then go to Settings > WP Htaccess Editor, add the following code at the bottom:

    php_value upload_max_filesize 64M
    php_value post_max_size 64M
    php_value max_execution_time 300
    php_value max_input_time 300
    IgDPJQK.png

    Another option: you can direct upload this theme via FTP.

    Best Regards,
    PenciDesign.

  • gabriellepacheco replied

    Thank you for the quick reply!