Symptom: Upload files to Windows 2003 Server IIS 6.0 server encountered the following error: Request object error 'ASP 0104: 80004005' Operation is disabled / UPLOAD.ASP, LINE 40
Cause: IIS6.0 prohibits uploading more than 200KB files. So you need to modify the default settings for IIS.
Technical Background In IIS 6.0, the AspMaxRequestentityAllowed property specifies the maximum number of bytes that can be used. If the request length included in the content-length header exceeds the value of AspMaxRequestentityAllowed, IIS will return a 403 error message. This attribute value is similar to maxrequestentityallowed, but is for ASP requests. If you know that your ASP app only needs to handle few request data, you can set the global maxrequestentityAllowed property in the World Wide Web Publishing Service (WWW Publishing Service) hierarchy. It is 1MB and sets the aspmaxrequestentityAllowed as a smaller value.
Solution Open Metabase.xml in C: / Windows / System32 / IneTsrv and modify the value of AspMaxRequestentityAllowed for you (for example, "1073741824", 1GB).
Note: Stop the IIS service before editing the file, otherwise the modified file cannot be saved.