Loading...

Knowledge Base

Powered by Network Solutions: Scripting - How to Increase PHP Upload Size Limits

If your website needs to upload bigger files or several files at once, you may need to change your PHP upload limits. This includes settings for the maximum file size and number of files you can upload. In this guide, we’ll show you how to update these limits easily from your Network Solutions hosting account.

  1. Log in to your account via https://www.networksolutions.com/my-account/login.
  2. Click Hosting on the left navigation menu.
    Hosting Menu
     
    Note: Alternatively, if you have multiple hosting accounts, you need to click MANAGE first to proceed with Step 3.
  3. Click Scripting Config on the left menu.
    Scripting Config Menu
     
  4. In the SCRIPTING CONFIGURATION section, select and click Manage PHP Scripting.
    scripting configuration manage
     
  5. Under ACTIONS, click Manage php.ini.
    Manage ini option
     
  6. Locate the following blocks of code within your php.ini file:
    Php script box
     
    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, 30M, 40M, 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 Save.

 

Review

You can easily increase your PHP upload limits in Network Solutions by logging in to your account, going to Scripting Config, and opening Manage php.ini. There, you’ll see three settings: post_max_size (total upload size allowed), upload_max_filesize (max size for one file), and max_file_uploads (number of files you can upload at once). Change the numbers to what you need—just make sure upload_max_filesize is not bigger than post_max_size—then save your changes. Your new limits will be applied right away, letting you upload larger files or more files at once without issues.

Did you find this article helpful?

 
* Your feedback is too short

Loading...