- Sales Literature file attachment size
- Posted by CRM GUY on December 2nd, 2005
I have sales literature files that are about 20 mb. I try to attach them,
but after they appear to attach, I get a blank screen and when I try to
access, they are not attached. Small attachments will work.
Is there any way to increase allowable attachment size or could this be a
problem with the installation?
Installation is on SBS 2003.
- Posted by John O'Donnell on December 2nd, 2005
CRM 1.2 had a 5mb attachment limit but this could be increased...the
registry entry should also work on crm 3.0.
Here is the 1.2 registry setting..be aware though this will allow anyone to
upload large attachments..
You can increase this default by modifying the registry key
maxuploadfilesize located in the registry by navigating to
HKEY_Local_Machine | Software | Microsoft | MSCRM.
=========================
John O'Donnell
Microsoft CRM MVP
http://www.microsoft.com/businesssol...community.mspx
"CRM GUY" <CRMGUY@discussions.microsoft.com> wrote in message
news:57B1C191-F850-417D-91B8-874AEEDA24D2@microsoft.com...
- Posted by TJ on December 2nd, 2005
Hi,
I'm not sure if this will help but we ran into a similar problem when
developing an ASP.NET solution. It was resolved by adding an entry to the
web.config file in the system.web section:
<httpRuntime maxRequestLength="X" /> (where X is in kilobytes)
If you don't know already the web.config file is found in the root of the
IIS folder for CRM version 3.0. I noticed that it's already there as:
<httpRuntime executionTimeout="300" maxRequestLength="8192"/>
Which suggests a 8mb upload limit. I would change it to what you need. It
should pick up right away. It's a hacking security feature as I read it so
don't make it uneccessairly big.
Post back if that works.
"CRM GUY" wrote:
- Posted by TJ on December 2nd, 2005
Scratch my post John's got the right answer.
"TJ" wrote: