• Resolved jaimeattomo

    (@jaimeattomo)


    Hello, I am trying to import an exported file from a web and when I am going to import the file it doesn’t allow me to do so due to the file limit upload. ?Does anyone know how to increase this file limit?

    Thanks!

Viewing 1 replies (of 1 total)
  • Plugin Author Yani

    (@yaniiliev)

    The issue you’re encountering is quite common when dealing with large backups.

    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 larger backups 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.

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