Reply To: Image 7MB uploading HTTP error

Home Forums Support Image 7MB uploading HTTP error Reply To: Image 7MB uploading HTTP error

Home Forums Support Image 7MB uploading HTTP error Reply To: Image 7MB uploading HTTP error

#188608
Tom
Lead Developer
Lead Developer

People love blaming the theme ๐Ÿ˜‰

There’s nothing in GP that limits anything like this, it’s actually a WordPress limit.

You can try adding something like this to your functions:

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

Adding PHP: https://generatepress.com/knowledgebase/adding-php-functions/

However, adding images this big will be terrible for your load time/SEO.