• Resolved mustafakazi

    (@mustafakazi)


    Hello Support Team,

    I am Mustafa Kazi, and I’m currently facing challenges with the All-in-One WP Migration plugin during a significant project. I’ve been trying to restore a backup of over 3 GB, but I consistently encounter errors at the 3% mark in the restoration process on both local and live servers.

    Here are the console errors I’m seeing:

    • [Violation] ‘message’ handler took 253ms
    • [Violation] ‘setTimeout’ handler took 63ms
    • [Violation] ‘setTimeout’ handler took 74ms

    To address this, I’ve already implemented the following settings in the wp-config.php file:

    1. Check for PHP Errors:
      • define('WP_DEBUG', true);
      • define('WP_DEBUG_LOG', true);
      • define('WP_DEBUG_DISPLAY', false);
      • @ini_set('display_errors', 0);
    2. Increase Memory Limit:
      • ini_set('memory_limit', '256M');

    Could there be any restrictions on handling large files, or might there be another underlying issue? Your expert advice would be invaluable to help resolve this matter. I look forward to your guidance and potential solutions.

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter mustafakazi

    (@mustafakazi)

    Here is a screenshot showing the exact errors I’m encountering: https://ibb.co/FwNnkgn

    Thread Starter mustafakazi

    (@mustafakazi)

    I have allowed the plugin to run for over 30 minutes, but it remains stuck at 3%. Additionally, when attempting to access the homepage in a new tab, I encounter an “error establishing a database connection.” I would like to note that WP_DEBUG is already set to true in my wp-config.php file, and my PHP version is 7.4.2.

    Please advise on the next steps to resolve these issues.

    Thread Starter mustafakazi

    (@mustafakazi)

    The source site is running PHP version 7.3.

    The target site is running PHP version 7.4.2.

    Plugin Author Yani

    (@yaniiliev)

    Hello Mustafa,

    It sounds like you’re facing challenges with restoring a large backup using the All-in-One WP Migration plugin. The errors you’re encountering suggest a potential issue with handling large files, which is quite common when dealing with backups over 3GB.

    Given the console errors and the measures you’ve already implemented, here are a few additional steps and recommendations to help resolve this issue:

    1. Large file operations may exceed default script execution times, leading to timeouts. Increase the max_execution_time in your php.ini file:
    max_execution_time = 300 // You may need to increase it further depending on the backup size

    2. Ensure that your server configuration supports large file operations. This includes settings in php.ini for upload_max_filesize and post_max_size:

    upload_max_filesize = 4096M
    post_max_size = 4096M

    Adjust these values as necessary to accommodate your backup file size.

    3. For handling particularly large backups more efficiently, consider using the Unlimited Extension. This extension enhances the plugin’s capabilities, particularly in terms of handling large file sizes and extending execution times, making it ideal for substantial projects like yours.

    4. Monitor your server resource usage (CPU, RAM) during the restoration process. Insufficient resources can cause the process to halt unexpectedly.

    5. If you continue to encounter issues despite these adjustments, I recommend reaching out to a professional for more personalized assistance.

    Thread Starter mustafakazi

    (@mustafakazi)

    Increased max_execution_time to 300 in the php.ini file. I’m prepared to increase this further if necessary. Set upload_max_filesize and post_max_size to 4096M to support large file uploads.?Despite these changes, I am still facing the same issue with setting up the local environment. Could we explore other potential solutions or further diagnostic steps to resolve this problem??

    Plugin Author Yani

    (@yaniiliev)

    Hello Mustafa,

    Thank you for updating the server settings as suggested. It’s clear you’ve taken comprehensive steps to accommodate the large file size, yet the issue persists. Given the complexity and persistence of the problem, it may indeed be time to seek more specialized assistance. I recommend reaching out to a professional with expertise in WordPress and server management. They can provide a more thorough investigation into your specific setup and potentially identify issues that are not immediately apparent.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Assistance Required for Large File Restoration Errors with All-in-One WP Migrati’ is closed to new replies.