Plugin Author
Yani
(@yaniiliev)
Hello!
I’m sorry to hear that you are experiencing issues with the import process. There could be a few different reasons why the import is pausing after reaching 100%.
One possible cause is that your hosting environment has resource limits that are preventing the import from completing. You mentioned that you increased the file upload size and extended the execution time, but there may be other limits in place such as memory or CPU usage that are causing the import to pause. In this case, you may need to contact your hosting provider for assistance in increasing these limits or troubleshooting the issue.
Another possibility is that there is a problem with the export file itself, such as a corruption or a missing element that is causing the import to fail. In this case, you may need to regenerate the export file and try the import again.
I hope this helps. Let me know if you have any other questions or concerns.
Hello @yaniiliev
Thanks for the response. I am trying to import it in my local environment so there is no limitations as of I know. Please let me know if you suggest any changes/updates need to be changed in my local environment. i am using xampp server
Plugin Author
Yani
(@yaniiliev)
The settings in PHP that you likely need to adjust are:
upload_max_filesize – set this to a value > than your backup
post_max_size – set this to a value > than your backup
memory_limit – set this to a value > than your backup
max_execution_time – set this to 0 (infinite)
Consult your webserver documentation to figure out how to change these values.
My PHP.ini settings are all correct, based on your rules above. My Export file is 1.1GB in sife. Here are my php.ini settings:
safe_mode = off;
max_execution_time = 3000
max_input_time = 180
allow_url_fopen = On
memory_limit = 2048M
post_max_size = 2048M
upload_max_filesize = 2048M
display_errors = on
max_input_vars = 30000
But my Import is still freezing when the counter reaches 100%.