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

Remotely monitoring your children’s computers using iTalc

Using iTalc on your private home network, you can monitor your kid’s activities and keep an eye on what websites they are browsing, what they are doing on social networking sites like Facebook, and even watch as they read their email. There are other tools that offer similar functions such as keylogging tools and web site blockers, but iTalc is a perfect addition to your arsenal of child protection tools.

Gaining Shell Access via Local File Inclusion Vulnerabilities

My firewall caught some odd injection attempts which lead to research on the intent of the hackers. Turns out it was an attempt to gain Shell access via Local File Inclusion vulnerabilities and injection of malicious code in proc/self/environ. Research lead to the following step-by-step instructions on what was being attempted (listed below).

Port WordPress from DreamHost to 1and1 VPS

I recently moved several WordPress blogs from DreamHost to a new 1and1 Virtual Private Server installation. Here are directions and screenshots of the move along with notes on problems that I ran across (and the resolution I found). I moved from a DreamHost shared host plan that killed scripts when memory consumption exceeded 100MB to a 1and1 VPS solution that provides 4,000MB of burst RAM.