Microsoft Content Management Server - file size upload

This is Interesting: Free IT Magazines  
Home > Archive > Microsoft Content Management Server > December 2004 > file size upload





You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

Author file size upload
Alon Mayaffit

2004-12-23, 5:51 pm

hi
how do i change the size limit for upload of files as attachments?
bye
Stefan [MSFT]

2004-12-23, 5:51 pm

Hi Alon,

this needs to be adjusted in the web.config of your project:
<httpRuntime executionTimeout="300"
maxRequestLength="10240"
...>

maxRequestLength is the size in KB (sample above is 10 MB). exeutionTimeout
is the amount of time the upload can take (300 seconds in the sample above).

Cheers,
Stefan.


"Alon Mayaffit" <mayafit@mail.bgu.ac.il> wrote in message
news:uyyigYP6EHA.2540@TK2MSFTNGP09.phx.gbl...
> hi
> how do i change the size limit for upload of files as attachments?
> bye



Alon Mayaffit

2004-12-23, 5:51 pm

hi stefan

i tried it , but i still have a problem (when i try to upload a 9Mb PDF
file i get a blank "page not found" page. I am working with windows 2003
server and i think there is something in the metabase file i need to
change, but i don't remember exactly what.

alon

Stefan [MSFT] wrote:
> Hi Alon,
>
> this needs to be adjusted in the web.config of your project:
> <httpRuntime executionTimeout="300"
> maxRequestLength="10240"
> ...>
>
> maxRequestLength is the size in KB (sample above is 10 MB). exeutionTimeout
> is the amount of time the upload can take (300 seconds in the sample above).
>
> Cheers,
> Stefan.
>
>
> "Alon Mayaffit" <mayafit@mail.bgu.ac.il> wrote in message
> news:uyyigYP6EHA.2540@TK2MSFTNGP09.phx.gbl...
>
>
>
>

Stefan [MSFT]

2004-12-23, 5:51 pm

Hi Alon,

is this a "page not found" or "dns error or host not found" error?
Please verify.

Thanks,
Stefan.


"Alon Mayaffit" <mayafit@mail.bgu.ac.il> wrote in message
news:uISsK0P6EHA.2452@TK2MSFTNGP14.phx.gbl...[vbcol=seagreen]
> hi stefan
>
> i tried it , but i still have a problem (when i try to upload a 9Mb PDF
> file i get a blank "page not found" page. I am working with windows 2003
> server and i think there is something in the metabase file i need to
> change, but i don't remember exactly what.
>
> alon
>
> Stefan [MSFT] wrote:
exeutionTimeout[vbcol=seagreen]
above).[vbcol=seagreen]


Alon Mayaffit

2004-12-23, 5:51 pm

the second one "dns error or host not found"
alon

Stefan [MSFT] wrote:

> Hi Alon,
>
> is this a "page not found" or "dns error or host not found" error?
> Please verify.
>
> Thanks,
> Stefan.
>
>
> "Alon Mayaffit" <mayafit@mail.bgu.ac.il> wrote in message
> news:uISsK0P6EHA.2452@TK2MSFTNGP14.phx.gbl...
>
>
> exeutionTimeout
>
>
> above).
>
>
>

Alon Mayaffit

2004-12-26, 7:46 am

hi stefan

ive tried several things but i still get the : "Cannot find server or
DNS Error"

i tried :

1) setting the httpRuntime in the project web.config
2) setting the AspMaxRequestEntityAllowed for the ResUpload,SDUpload and
CMS directories in the metabase.xml

nothing helped. i still can't upload some files.

bye,
alon mayaffit

Stefan [MSFT] wrote:

> Hi Alon,
>
> is this a "page not found" or "dns error or host not found" error?
> Please verify.
>
> Thanks,
> Stefan.
>
>
> "Alon Mayaffit" <mayafit@mail.bgu.ac.il> wrote in message
> news:uISsK0P6EHA.2452@TK2MSFTNGP14.phx.gbl...
>
>
> exeutionTimeout
>
>
> above).
>
>
>

Alon Mayaffit

2004-12-26, 7:46 am

Hi Stefan
i have fount a solution in the KB article at :
http://support.microsoft.com/kb/295626/EN-US/

the change should be done in th emachine.config file (to the
maxRequestLength attribute of the httpRuntime node)

there is a nice collection of articles at :
http://support.microsoft.com/defaul...cms2001&sid=120

(i'm sure you probably wrote half of them but..... )

thanks fot your help,
alon mayaffit

Stefan [MSFT] wrote:

> Hi Alon,
>
> is this a "page not found" or "dns error or host not found" error?
> Please verify.
>
> Thanks,
> Stefan.
>
>
> "Alon Mayaffit" <mayafit@mail.bgu.ac.il> wrote in message
> news:uISsK0P6EHA.2452@TK2MSFTNGP14.phx.gbl...
>
>
> exeutionTimeout
>
>
> above).
>
>
>

Stefan [MSFT]

2004-12-26, 5:47 pm

Hi Alon,

the "cannot find server" is a client side error message.
You cannot fix client side errors with server side settings. (makes sense?)

Usually this is the following IE bug:
http://support.microsoft.com/default.aspx?id=821814

If you have all the latest IE security fixes installed, then this fix is
installed but not active.
To activate it you need to follow the hints at the bottom of the following
article:
http://support.microsoft.com/default.aspx?id=831167

You should take a netmon trace to see if there is a error message sent from
the server which is not correctly interpreted by the browser or if there is
a different problem.

Cheers,
Stefan.


"Alon Mayaffit" <mayafit@mail.bgu.ac.il> wrote in message
news:uVcF9dy6EHA.2516@TK2MSFTNGP09.phx.gbl...[vbcol=seagreen]
> hi stefan
>
> ive tried several things but i still get the : "Cannot find server or
> DNS Error"
>
> i tried :
>
> 1) setting the httpRuntime in the project web.config
> 2) setting the AspMaxRequestEntityAllowed for the ResUpload,SDUpload and
> CMS directories in the metabase.xml
>
> nothing helped. i still can't upload some files.
>
> bye,
> alon mayaffit
>
> Stefan [MSFT] wrote:
>


Stefan [MSFT]

2004-12-26, 5:47 pm

This setting is identical to the setting I outlined below.
Only that you set it in the machine.config and I asked you to set it in the
web.config.
There is no difference - if you updated the right web.config.

Cheers,
Stefan.


"Alon Mayaffit" <mayafit@mail.bgu.ac.il> wrote in message
news:ePlbPyy6EHA.3416@TK2MSFTNGP09.phx.gbl...
> Hi Stefan
> i have fount a solution in the KB article at :
> http://support.microsoft.com/kb/295626/EN-US/
>
> the change should be done in th emachine.config file (to the
> maxRequestLength attribute of the httpRuntime node)
>
> there is a nice collection of articles at :
>

http://support.microsoft.com/defaul...cms2001&sid=120[vbcol=seagreen]
>
> (i'm sure you probably wrote half of them but..... )
>
> thanks fot your help,
> alon mayaffit
>
> Stefan [MSFT] wrote:
>


Sponsored Links






Free braindumps | Software forum | Database administration forum

Copyright 2003 - 2008 webservertalk.com