? change in hosting environment ??????

Discussion in 'ASP.NET / ASP.NET Core' started by msword, Feb 6, 2004.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. I got error not enough space on disk.
    I checked my space, and it says 14mb, that cant be right. I think it's more than that. It allows me to FTP items there but not copy files. [B)]


    THis is how i caught it

    Sub uploadThefile(ByVal send As system.Object, ByVal e as System.Eventargs)
    Dim fso
    dim strFile = uplTheFile.Postedfile.Filename
    dim getname
    fso = CreateObject("Scripting.FileSystemObject")
    Getname = fso.GetFileName(strFile)

    Dim docpath = "path "
    Try
    uplTheFile.PostedFile.SaveAs(docpath & getname)

    response.write("file uploaded successfully")

    Catch msg as Exception
    response.write(msg.Message)

    End Try

    End Sub
    </font id="size1">
     
  2. Bruce

    Bruce DiscountASP.NET Staff

    please create a support ticket to get this matter resolve.

    quote:Originally posted by msword

    I got error not enough space on disk.
    I checked my space, and it says 14mb, that cant be right. I think it's more than that. It allows me to FTP items there but not copy files. [B)]


    THis is how i caught it

    Sub uploadThefile(ByVal send As system.Object, ByVal e as System.Eventargs)
    Dim fso
    dim strFile = uplTheFile.Postedfile.Filename
    dim getname
    fso = CreateObject("Scripting.FileSystemObject")
    Getname = fso.GetFileName(strFile)

    Dim docpath = "path "
    Try
    uplTheFile.PostedFile.SaveAs(docpath & getname)

    response.write("file uploaded successfully")

    Catch msg as Exception
    response.write(msg.Message)

    End Try

    End Sub
    </font id="size1">
    </blockquote id="quote"></font id="quote">
     
  3. Has somethign changed in the hosting environment? I was able to upload documents,now I cant. My scripts work in my local environment, but they are working now.
    I have a
    try catch finally statment, but I'm not catching any errors. Does anybody know if something happended in the last 2-3 days?

    thanks
     
  4. Bruce

    Bruce DiscountASP.NET Staff

    Nothing has changed on our server in the past week.

    I need to see the error to narrowdown the problem


    quote:Originally posted by msword

    Has somethign changed in the hosting environment? I was able to upload documents,now I cant. My scripts work in my local environment, but they are working now.
    I have a
    try catch finally statment, but I'm not catching any errors. Does anybody know if something happended in the last 2-3 days?

    thanks
    </blockquote id="quote"></font id="quote">
     
  5. bruce maybe you can see something wrong here? it's just a very simple script. What could cause my file to not upload? any ideas then?
    Dim fso
    dim strFile = inpfileup.Postedfile.Filename
    dim getname
    fso = CreateObject("Scripting.FileSystemObject")
    Getname = fso.GetFileName(strFile)

    Try
    inpfileup.PostedFile.SaveAs(docpath & getname)
    catch msg as Exception
    response.write(msg.Message)
    end try
     
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