Loading...

Knowledge Base

Scripting: How to Increase PHP Upload Size Limits

-

  1. Log in to your account Account Manager.

    Checkout Domain order

  2. On the left pane, click on Hosting

    Checkout Domain order

  3. Under Hosting packages, click on the MANAGE button on the right.

    Checkout Domain order

  4. Under Scripting Configuration, click on the Manage PHP Scripting link.

    Checkout Domain order

  5. Under the Actions column, click Manage php.ini.

    Checkout Domain order

  6. Locate the following blocks of code within your php.ini file:

    Checkout Domain order

    • Maximum size of POST data that PHP will accept: post_max_size = 20M
    • Maximum allowed size for uploaded files: upload_max_filesize = 20M
    • Maximum number of files that can be uploaded via a single request: max_file_uploads = 20
    • Modify the highlighted value for post_max_size as desired (for example, 30M40M, or 50M).
    • Modify the highlighted value for upload_max_filesize as desired (for example, 30M, 40M, or 50M). This value should not be larger than the post_max_size value.
    • Modify the highlighted value for max_file_uploads as desired (for example, 30, 40, or 50).
  7. Once done, click on the Save button.

    Checkout Domain order

Loading...