Skip to content

Instantly share code, notes, and snippets.

@charleslouis
Created April 9, 2013 15:59
Show Gist options
  • Save charleslouis/5346940 to your computer and use it in GitHub Desktop.
Save charleslouis/5346940 to your computer and use it in GitHub Desktop.
//increase WP upload file size to 64MB
//add this to function.php in your theme
//works with OVH pro
//increase WP upload file size to 64MB
@ini_set( 'upload_max_size' , '64M' );
@ini_set( 'post_max_size', '64M');
@ini_set( 'max_execution_time', '300' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment