Quantcast
Channel: Classic ASP
Viewing all articles
Browse latest Browse all 488

How do I enable upload of large files in classic ASP on IIS?

$
0
0

I have an upload system in ASP Classic. I can upload up to 200KB without problems, but when I try a larger size the error occurs:

 

Request object error 'ASP 0104 : 80004005'

Operation not Allowed

/admin/freeaspupload.asp, line 101

I saw that I need to adjust the web.config file on the hosting server (godaddy), so I put it like this, but even then the error continues.

 

<?xml version="1.0" encoding="UTF-8"?>

<configuration>

<system.web>

<customErrors mode="Off"/>  

<httpRuntime maxRequestLength="2147483647"/>

<sessionState timeout="1600"  />

</system.web>

  

<system.webServer>

                <httpRedirect enabled="false" destination="" exactDestination="true" httpResponseStatus="Permanent" />

                <httpErrors errorMode="Detailed">

<remove statusCode="403" subStatusCode="-1" />

<remove statusCode="404" subStatusCode="-1" />

</httpErrors>

                <security>

<requestFiltering>

                               <requestLimits maxAllowedContentLength="2147483647"/>

</requestFiltering>

</security>

</system.webServer>

</configuration>

 

Someone to help me please?


Viewing all articles
Browse latest Browse all 488

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>