Viewing 1 replies (of 1 total)
  • You need to make sure your PHP configuration supports file uploads that size or larger. Check your php.ini file. These are the two configurations you need to set. The example below will allow you to upload files up to 512M in size.

    upload_max_filesize = 512M

    post_max_size = 512M

    Also, make sure your PHP max execution time is set high enough so it doesn’t stop processing before the file finishes uploading. The example below is set for 1 hour.

    max_execution_time = 3600

    Disclaimer: These are just examples. Configure your settings based on your requirements. Also understand any implications increasing these values may provide.

    • This reply was modified 3 months, 3 weeks ago by wifiandbeer.
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.