• Resolved alegomis

    (@alegomis)


    Hi everyone. I’ve tried to restore different backups and I get the same error every time.

    I’ve searched and I have enough space on the server to make more backups, including restoring.

    The backup stops at the beginning and I get the “something went wrong” popup.

    The code is: BMI-bYWUgJvK-08436

    Here are the logs of the attempt.
    [STEP] [2024-09-20 09:27:45] Starting restoration process.

    [WARN] [2024-09-20 09:27:46] PHP CLI is manually disabled, the plugin will skip all PHP CLI steps. [SUCCESS] [2024-09-20 09:27:46] Restoration process response. [

    SUCCESS] [2024-09-20 09:27:46] Blocking migration process.

    [STEP] [2024-09-20 09:27:46] Starting restoration process.

    [INFO] [2024-09-20 09:27:46] Backup & Migration version: 1.4.6

    [INFO] [2024-09-20 09:27:46] Initializing custom error handler.

    [INFO] [2024-09-20 09:27:46] Site to be restored: <em class=””>site_url

    [INFO] [2024-09-20 09:27:46] PHP version: 8.1.29 [

    INFO] [2024-09-20 09:27:46] WP version: 6.6.2

    [INFO] [2024-09-20 09:27:46] MySQL version: 5.7.44

    [INFO] [2020-09-20 09:27:46] Maximum MySQL extension: 134217728 [

    INFO] [2024-09-20 09:27:46] Web server: Apache [

    INFO] [2024-09-20 09:27:46] Maximum execution time (in seconds): 0

    [INFO] [2024-09-20 09:27:46] Memory limit (server): 512M

    [INFO] [2024-09-20 09:27:46] Memory limit (wp-config): 40M

    [INFO] [2024-09-20 09:27:46] Memory limit (wp-config admin): 512M

    [SUCCESS] [2024-09-20 09:27:46] Restoration process started successfully.

    [STEP] [2024-09-20 09:27:46] Checking free space… [

    INFO] [2024-09-20 09:27:46] Checking if there is enough free space

    [INFO] [2024-09-20 09:27:46] Needs, at least, 434656633 bytes. [414.52 MB]

    [INFO] [2024-09-20 09:27:46] The free disk space function is disabled by the hosting.

    [INFO] [2024-09-20 09:27:46] Using a dummy file to check free space (may take some time). [SUCCESS] [2024-09-20 09:27:52] Confirmed, there is enough space on the device, checked: 434656633 bytes.

    [STEP] [2024-09-20 09:27:52] Creating a new secret key for the current restoration process. [SUCCESS] [2024-09-20 09:27:52] Secret key generated, it will be returned to you (ping).

    I appreciate any help.

    • This topic was modified 2 months ago by alegomis.
    • This topic was modified 2 months ago by alegomis.

    The page I need help with: [log in to see the link]

Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Support MixHa

    (@mixha)

    Hello @alegomis ,

    In our plugin, it is possible to disable free space checks, but it’s not recommended and you should do that only if you’re 100% sure that you have enough space on the server for the backup.

    If you don’t have enough space for the backup or migration, but you will tell the plugin that there is enough, the process may still fail and your site may encounter many issues due to the lack of free space.

    Step list of the solution:

    1. Go to the “Other options” section
    2. Disable space checking: https://prnt.sc/PAlbYsz3RszJ
    3. Save the “Other options” section
    4. Force stop both processes: https://prnt.sc/1trv1tm
    5. Run your process once again

    Let me know if that resolves your issue ??
    Thank you!

    Thread Starter alegomis

    (@alegomis)

    Hi @mixha !

    Thanks for the information.

    I did all the steps above, but the message still exactly the same.

    Sorry for the inconvenience.

    Plugin Support MixHa

    (@mixha)

    Hey @alegomis ,

    Please provide the latest debug log: navigate to the plugin section Troubleshooting > Check advanced options and click on the button:
    Share debug info with BackupBliss team

    And here’s a screenshot that shows where to get it: https://prnt.sc/lKbjrSAqQudm

    Please paste the debug code in your reply.

    Kind regards

    Thread Starter alegomis

    (@alegomis)

    Good morning MixHa.

    Here it goes: BMI-JwrW1U48-91352

    Thank you!

    Plugin Support MixHa

    (@mixha)

    Hello @alegomis ,

    The latest backup log states that the backup was completed successfully. Please check the plugin section “Manage & Restore Backup”, backup file should be listed there.

    Kind regards

    Thread Starter alegomis

    (@alegomis)

    Hi there.

    As I said in the first comment. The problem is about restoring, no making a backup.

    The backups had always been there , but it’s impossible to restore.

    I tried again, this is the error code: BMI-Gb4yEdUq-13212

    And this the debug info you asked before, but updated with the last backup tried

    3 minutes ago: BMI-363Ov0vz-56938

    Thread Starter alegomis

    (@alegomis)

    If there is any chance of solving this buying the premium version it is not a problem.

    Thank you!

    Plugin Support MixHa

    (@mixha)

    Hi @alegomis ,

    It seems there is something blocking our requests from working properly, possibly a restrictive firewall. To overcome this, we’ve prepared a PHP CLI tool that allows you to perform backup/restore process directly via SSH. This way, our plugin won’t be limited by any restrictions related to the web server.

    Please ensure you have enough space for the restore process. I recommend adding approximately 25% more free storage than required. In your case, you should have about 0.5GB available.

    Before starting with the PHP CLI tool, make sure the ZipArchive PHP extension is enabled. You can verify this by running the following command:

    php -r 'echo class_exists("ZipArchive") ? "true\n" : "false\n";'

    It should return "true."

    Afterward, navigate to the root of your WordPress directory and then to our plugin directory using the following commands:

    cd wp-content/plugins/backup-backup/includes

    For more details about the tool, type:

    php -f cli-handler.php

    You should see the following help output:

    ========= BACKUP MIGRATION PLUGIN =========

    Please specify a CLI function: bmi_restore [.zip], bmi_backup, or bmi_quick_migration

    Examples:
    – php -f cli-handler.php bmi_backup
    – php -f cli-handler.php bmi_backup BMI_12-12-12_nameOfMySite_nameOfBackup.zip
    – php -f cli-handler.php bmi_restore BMI_12-12-12_nameOfMySite_nameOfBackup.zip
    – php -f cli-handler.php bmi_quick_migration "https://localhost/site/linkToMyBackup.zip"

    ========= BACKUP MIGRATION PLUGIN =========

    To restore the backup, simply use:

    php -f cli-handler.php bmi_restore

    Please let me know if you need any further assistance.

    Thank you!
    Plugin Support MixHa

    (@mixha)

    Hey @alegomis ,

    We haven’t heard from you since, so I’ll assume that the issue is resolved and will close this support thread. If you face any new issues, please feel free to open a new thread.

    Kind regards

Viewing 9 replies - 1 through 9 (of 9 total)
  • You must be logged in to reply to this topic.