Using A2 hosting and trying to import a site file that is more than the server limit. Added the usual line items to both .htaccess and wp-config.php but no luck (it still complains that the limit is still just 128M, even though I added the values below). Any ideas how to get this working? I have a ticket in to A2hosting but my issue is very time-sensitive since it’s a deceased friend site that needs to get up and running quick. Thanks in advance for any help!
For .htaccess:
u/ini_set( ‘upload_max_filesize’ , ‘900M’ );
u/ini_set( ‘post_max_size’, ‘900M’);
u/ini_set( ‘memory_limit’, ‘900M’ );
u/ini_set( ‘max_execution_time’, ‘0’ );
u/ini_set( ‘max_input_time’, ‘300’ );
For wp-config.php:
u/ini_set( ‘upload_max_filesize’ , ‘900M’ );
u/ini_set( ‘post_max_size’, ‘900M’);
u/ini_set( ‘memory_limit’, ‘900M’ );
u/ini_set( ‘max_execution_time’, ‘0’ );
u/ini_set( ‘max_input_time’, ‘300’ );
​
[ad_2]