ASPUpload

Discussion in 'Classic ASP' started by Scott McLain, Mar 30, 2006.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. Trying to get this working and striking out. Got two simple pages:

    demo1.asp
    <html>
    <head>
    </head>

    <form action="aspupload1.asp" method="post" enctype="multipart/form-data">
    <input type="file" size="40" name="FILE1" />

    <input type="submit" value="Upload!" />
    </form>
    </body>
    </html>



    aspupload1.asp
    <HTML>

    <%
    Set Upload = Server.CreateObject("Persits.Upload")
    count = upload.savevirtual ("/mp3_uploads")
    Response.Write Count &amp; " file(s) uploaded"
    %>
    </BODY>
    </HTML>



    I have created the mp3_uploads directory at the root level of the website and allowedanonymous writepermissions.

    Any help would be greatly appreciated.
     
  2. Check your Anonymous IUSR user's disk quota in the User/Quota Manager. Make sure it has enough disk space free.

    Aristotle

    DiscountASP.NET
    www.DiscountASP.NET
     
  3. That was it, thanks!!!
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page