Skip to content

Instantly share code, notes, and snippets.

@lilumi
Created August 20, 2019 20:30
Show Gist options
  • Save lilumi/9fc2e52c90920e6b2e94cd62aa0328df to your computer and use it in GitHub Desktop.
Save lilumi/9fc2e52c90920e6b2e94cd62aa0328df to your computer and use it in GitHub Desktop.
Increase Upload file limit in wp-config.php
@ini_set( 'upload_max_filesize' , '1024M' );
@ini_set( 'post_max_size', '1024M');
@ini_set( 'memory_limit', '256M' );
@ini_set( 'max_execution_time', '300' );
@ini_set( 'max_input_time', '300' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment