Web Pro Dragons

Internal Dev Library

All in One WP Migration – Unable to run the export

WordPress > Tools > Site Health > Info tab > Server
– Check the current PHP settings listed here. If any of the following values are lower, update them using the code below.

Fix: (functions.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’);