I have a huge file, 7GB to upload on my localhost. It is a copy of my live website that includes almost everything - themes, contents and media files.
Is there any way to migrate this? I tried to use All-in-One WP Migration plugin but the upload limit is only 300MB.
Another way to increase is by editing the .htaccess, but I cannot find it in the localhost.
Update .htaccess file php_value upload_max_filesize 128M php_value post_max_size 128M php_value memory_limit 256M php_value max_execution_time 300 php_value max_input_time 300
upload_max_filesize = 64M post_max_size = 64M max_execution_time = 300
. Also you need to the same in wordpress@ini_set('xxx', 'xxx')
– manish@ini_set('upload_max_size' , '256M' );
– Bhavik Hirani