PDA

View Full Version : File upload problem...


blabberblog
06-05-2004, 04:44 AM
What is the maximum size allowed by Discount ASP for a file upload?

I know this value is specified in the machine config file.
I have to allow users to upload mp3 files and they can be pretty large.

Pete

bruce
06-07-2004, 11:20 AM
I do not think the server cares about the file size, its a application thing.


[b]quote:Originally posted by blabberblog

What is the maximum size allowed by Discount ASP for a file upload?

I know this value is specified in the machine config file.
I have to allow users to upload mp3 files and they can be pretty large.

Pete
</blockquote id="quote"></font id="quote">

blabberblog
06-08-2004, 10:05 AM
Yes , there is a setting in the Machine.config for max size upload and download.

I beleive the default is 4M. I was wondering if this is set because I amd having problems with users that try to upload files larger than 4M.

Pete

blabberblog
06-09-2004, 11:04 AM
I created a problem ticket. The response was:

ASP.NET allows up to 4M

That's it.

Now I know if they change it in the machine.config they can make it higher.

bruce
06-09-2004, 11:49 AM
Please create a support ticket.
I am guessing that the machine.config file setting is overriding the web.config setting.

[b]quote:Originally posted by blabberblog

Yes , there is a setting in the Machine.config for max size upload and download.

I beleive the default is 4M. I was wondering if this is set because I amd having problems with users that try to upload files larger than 4M.

Pete
</blockquote id="quote"></font id="quote">

bruce
06-10-2004, 12:11 PM
Hmmm...

i am not sure about that. i'll bring it up to the SA team in our next meeting.

[b]quote:Originally posted by blabberblog

I created a problem ticket. The response was:

ASP.NET allows up to 4M

That's it.

Now I know if they change it in the machine.config they can make it higher.
</blockquote id="quote"></font id="quote">

blabberblog
06-11-2004, 04:14 AM
OK

Let me know what they say

Pete

blabberblog
06-13-2004, 10:53 AM
Bruce

Here is the machine config code:

<httpRuntime
executionTimeout="90"
maxRequestLength="4096"
useFullyQualifiedRedirectUrl="false"
minFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueueLimit="100"
/>

If maxRequestLength is set to 4096 then I cannot override this in the web config.

Do you know what the max upload file size is set to in the machine.config?

Thanks

bruce
06-16-2004, 05:59 AM
Ok...

there were some inconsistency on this value among our server. We have standardize it to 10MB


[b]quote:Originally posted by blabberblog

Bruce

Here is the machine config code:

<httpRuntime
executionTimeout="90"
maxRequestLength="4096"
useFullyQualifiedRedirectUrl="false"
minFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueueLimit="100"
/>

If maxRequestLength is set to 4096 then I cannot override this in the web config.

Do you know what the max upload file size is set to in the machine.config?

Thanks
</blockquote id="quote"></font id="quote">