The Lighthouse website's database is pretty huge now. So to enable the default WordPress importer to work, some limits may need to be changed. For local dev I added all these at the bottom of wp-config.php:
@ini_set( 'upload_max_filesize' , '128M' );
@ini_set( 'post_max_size', '128M');
@ini_set( 'memory_limit', '256M' );
@ini_set( 'max_execution_time', '300' );
@ini_set( 'max_input_time', '300' );
The one that makes the difference is probably max_execution time, but if one is being changed, they might as well all be pasted in.
The Lighthouse website's database is pretty huge now. So to enable the default WordPress importer to work, some limits may need to be changed. For local dev I added all these at the bottom of
wp-config.php:The one that makes the difference is probably
max_execution time, but if one is being changed, they might as well all be pasted in.