sua resposta:
1. http://www.aspplaygr...m_376095/tm.htmQ3: My server is IIS 6, and I cannot upload more than 200KB at a time? If I upload more than 200KB of data, I got the following error:
quote:
Request object error 'ASP 0104 : 80004005'
Operation not Allowed
which happens at the line that calls the Request.BinaryRead method.
A3: The new metabase in IIS 6 has a restriction on the maximum file size ASP script can upload. Do the following to correct this issue (thanks to Ittech for the info)
quote:
Here's the code from the metabase.xml, which you can edit and it applies changes in realtime. Never restarted the forum/site
Gotta look under the header <IIsWebService Location ="/LM/W3SVC"
or for whatever service location site name you are using...
Change
AspMaxRequestEntityAllowed="204800"
to
AspMaxRequestEntityAllowed="10238976"
2. http://www.pd9soft.com/megabbs/forums/thread-view.asp?tid=3266&posts=16
...IIS6.0 prevent the upload of files more than +200Kb. So you need to make some changes in the default IIS settings first.
Background
For IIS6.0 users, the AspMaxRequestEntityAllowed property specifies the maximum number of bytes allowed in the entity body of an ASP request. If a Content-Length header is present and specifies an amount of data greater than the value of AspMaxRequestEntityAllowed, IIS returns a 403 error response.
This property is related in function to MaxRequestEntityAllowed, but is specific to ASP request. Whereas you might set the MaxRequestEntityAllowed property to 1 MB at the general World Wide Web Publishing Service (WWW Service) level, you may choose to set AspMaxRequestEntityAllowed to a lower value, if you know that your specific ASP applications handle a smaller amount of data.
Solution
Open your metabase.XML which is located in c:\Windows\System32\Inetsrv find the line "AspMaxRequestEntityAllowed" and change it to "1073741824". This is 1GB - of course you can enter another value to suite your needs.
NOTE: Before you edit the file, be sure to stop the IIS service first or else you won't be able to save the file.
GOOGLE:
http://www.google.co... Allowed &meta=flws...
Edição feita por: Tx.NET, 16/09/2005, 16:31.