Answers for "how to change the max upload size in wordpress"

PHP
0

PHP (WordPress) - Increase Maximum Upload File Size

// Increase Maximum Upload File Size
@ini_set( 'upload_max_filesize' , '128M' ); //set this to a value > than your backup
@ini_set( 'post_max_size', '128M'); //set this to a value > than your backup
@ini_set( 'memory_limit', '256M' ); //set this to a value > than your backup
@ini_set( 'max_execution_time', '300' ); //set this to 0 (infinite)
@ini_set( 'max_input_time', '300' );
Posted by: Guest on August-19-2021
0

upload_max_filesize in wordpress

@ini_set('upload_max_size' , '128M' );
Posted by: Guest on February-05-2021

Code answers related to "how to change the max upload size in wordpress"

Browse Popular Code Answers by Language