1// Increase Maximum Upload File Size
2@ini_set( 'upload_max_filesize' , '128M' ); //set this to a value > than your backup
3@ini_set( 'post_max_size', '128M'); //set this to a value > than your backup
4@ini_set( 'memory_limit', '256M' ); //set this to a value > than your backup
5@ini_set( 'max_execution_time', '300' ); //set this to 0 (infinite)
6@ini_set( 'max_input_time', '300' );