Change maximum upload file size in SharePoint/WSS 3.0

Sharepoint max upload file size is limited out of the box.  You can change the max file upload size by following the steps below.  Note that if the max upload size setting is greater than 50MB then IIS settings in web.config may need to be changed too.

Click screenshots below to view full-size version.

  1. Connect to Central Admin
    image
  2. Navigate to Central Admin > Application Management > Web Application General Settings
    image
  3. Select your web application
    image
  4. Set the Maximum Upload Size value to "X" MB and click OK
    image
  5. Repeat steps 6-7 for all zones for your web application on all servers hosting the web application role
  6. If size is greater than 50MB, you must change IIS .Net settings in the web.config file also
  7. Open the web.config for your SharePoint application
  8. Replace the following line:
    <httpRuntime maxRequestLength="51200" />
    with
    <httpRuntime maxRequestLength="{X * 1024}" />
    image

Leave a Reply

Related Post

Brian Haddock Resume

A creative, quality-minded software engineer with over twenty years experience programming mainframe, pc client server, and internet web based applications covering a broad range of functional areas. The following is my current resume.

Add delete confirmation to asp.net ListView control

The ASP.Net ListView control is a godsend for developers. Drop the control on the form, hook in a datasource, and you have complete, out-of-the-box view, edit, insert, and delete functionality. One thing missing though is a delete confirmation if the user clicks the delete button. The Delete button is right next to the Edit button so it’s fairly easy to mistakenly click it and with an accidental click, the record is permanently deleted with no prompt or warning issued to the user.

Passwordless logins in Unix

Connecting via SSH, requires a user provide his identity to the remote machine using one of several methods. One method lets you access the remote system without entering a password at each login. Normally, when you log in to a system, you authenticate by entering your password for that system. Your password goes, as it is typed, to the remote system, which authenticates it against the /etc/passwd or /etc/shadow file. By contrast, SSH allow a “password-less” authentication method based on public-key cryptography.