Where 209715200 is 200mb in bytes
Regards,
Trevor Benedict
MCSD
"Judy E" <Ju...@discussions.microsoft.com> wrote in message
news:3BD06EDC-5D05-40B6...@microsoft.com...
"Trevor Benedict" <trevo...@gmail.com> wrote in message
news:Oz2Cbov...@TK2MSFTNGP06.phx.gbl...
With:
< section name = "requestFiltering" overrideModeDefault = "Allow" />
Note: the following settings should be corrected accordingly.
<!-- MEDIA - MAX SIZE IN DATABASE
The maximum allowed size of media intended to be stored in a
database (base64 blob).
This value must be less than the ASP.NET
httpRuntime.maxRequestLength setting.
Default value: 20MB
-->
<setting name="Media.MaxSizeInDatabase" value="20MB" />
<!-- MEDIA - MAX SIZE IN MEMORY
The maximum size of media to load into memory for processing
(rezising etc.).
Default value: 40MB
-->
<setting name="Media.MaxSizeInMemory" value="40MB" />
<!--
httpRuntime Attributes:
executionTimeout="[seconds]" - time in seconds before request is
automatically timed out
maxRequestLength="[KBytes]" - KBytes size of maximum request length
to accept
useFullyQualifiedRedirectUrl="[true|false]" - Fully qualifiy the URL
for client redirects
minFreeThreads="[count]" - minimum number of free thread to allow
execution of new requests
minLocalRequestFreeThreads="[count]" - minimum number of free thread
to allow execution of new local requests
appRequestQueueLimit="[count]" - maximum number of requests queued
for the application
If you change the maxRequestLength setting, you should also change
the Media.MaxSizeInDatabase setting.
Media.MaxSizeInDatabase should always be less than maxRequestLength.
-->
<httpRuntime maxRequestLength="16384" executionTimeout="600" />
as below
<system.webServer>
<security>
<requestFiltering>
<!-- limit post size to 10mb, query string to 256 chars, url to 1024 chars -->
<!--<requestLimits maxQueryString="256" maxUrl="1024" maxAllowedContentLength="3000000000" />-->
<requestLimits maxQueryString="256" maxUrl="1024" maxAllowedContentLength="80000000" />
</requestFiltering>
</security>
</system.webServer>
>> On Wednesday, December 10, 2008 2:01 PM Trevor Benedict wrote:
>> Type this in the command Prompt
>> appcmd set config /section:requestfiltering
>> /requestlimits.maxallowedcontentlength:209715200
>>
>> Where 209715200 is 200mb in bytes
>>
>> Regards,
>>
>> Trevor Benedict
>> MCSD
>>> On Wednesday, December 10, 2008 2:05 PM Trevor Benedict wrote:
>>> and you said you do not want this as a system wide setting in which case you
>>> can configure as show in this article
>>> http://sdn5.sitecore.net/Scrapbook/IIS7%20and%20large%20files.aspx
>>>> Submitted via EggHeadCafe
>>>> Twitter Search API with jQuery and JSONP
>>>> http://www.eggheadcafe.com/tutorials/aspnet/94d7bda5-c477-4ff9-b71d-e24e5fc70c24/twitter-search-api-with-jquery-and-jsonp.aspx