Search results

  1. WineIsGood

    Email connection slow

    Re: Re: Email connection slow Normally, I'd agree with this explaination, and I certainly understand what this worm is doing to email servers, including our own here at work. However, the "slow-connect" phenomenon I've noticed started well before these recent worms took hold. I have many...
  2. WineIsGood

    Email connection slow

    It almost seems as though there is a server somewhere in the chain of events which is timing out, and when it does, a fall-back method is used which works immediately... I say this only because it seems to be the same delay every time. Only a timeout value could reproduce something like this...
  3. WineIsGood

    Disk usage still blank

    That did the trick, thanks. -Dave
  4. WineIsGood

    Email connection slow

    There was a time, long ago, when connection to the mail servers was quick and painless. Recently, however, connecting to receive mail is very slow. Once connected, mail flows freely. Any reason for this? -Dave
  5. WineIsGood

    Disk usage still blank

    Okay, but what amount of space should I enter with the basic windows package, now that you've converted to a combined usage method? Thanks, -Dave
  6. WineIsGood

    Disk usage still blank

    A new billing cycle has ended once again for me and my CPanel Disk Usage is still blank. Should I do something to fix this or wait yet another billing cycle? Thanks, -Dave
  7. WineIsGood

    Protecting a folder

    Make an index.html page in that directory with one html body line: "Go away!" ;) -Dave
  8. WineIsGood

    Willing to pay - Custom Components

    Yeah, scrap all that ASP DLL-from-hell crap and just go .NET... everything is compiled VB code that sits right in the bin directory off your website's root. Much simpler and easier... -Dave
  9. WineIsGood

    crazy night

    My house is out but it's only 10 minutes away from my work, which has power -- go figure.... thought I could have a nice Friday off but no such luck... -Dave
  10. WineIsGood

    crazy night

    We still don't have power yet... ugh. -Dave
  11. WineIsGood

    IP Banned by DNS Service

    Not if the IP address were shared. The only way you could do it would be to get a dedicated IP address. Your only other option would be to use JodoHost's name servers, like everyone else. -Dave
  12. WineIsGood

    One of the websites down - 404

    My sites were down most all of today and only came back recently. -Dave
  13. WineIsGood

    Jodohost technial support : It Amazes me

    Re: Any of jodohost customers have 24 X 7 support requirments ? I was also with GearHost. Many times I never even got a response to my trouble tickets. Typically, I would get a response, via email, when the problem was resolved, which was sometimes days later. -Dave
  14. WineIsGood

    processors

    It would also allow you to store larger data values in memory, such as variable number sizes and data register sizes. Remember when declaring an Integer would overflow after 32,765? Look up the upper-bound for an Integer in your favorite language now and see the difference. -Dave
  15. WineIsGood

    Syntax Error in ASP?

    Get rid of the ON ERROR GOTO 0 crapola lines. Also, make sure to close the database connection at the end, even if there was an error. Use an If statement at the end to see if the connection is open, and if so, close it. That way it'll handle all cases... open or not. -Dave
  16. WineIsGood

    WebShell and zip

    I just use FTP Explorer and move all the files/folders from its window and drop it into a local ZIP folder. FTP Explorer gives you an interface just like Windows Explorer, so drag-drop features work like you'd expect. -Dave
  17. WineIsGood

    Custom Error Pages Error

    This is too weird for me. This calls for a nice bottle of cabernet. -Dave
  18. WineIsGood

    Custom Error Pages Error

    Wait -- did you set IIS up as a transfer or as a redirection? If the script engine generates an error, it will launch the corresponding error page, not IIS. You need IIS to redirect to the custom error page so it knows to process the new ASP information. You can try it by making a 404 error...
  19. WineIsGood

    Custom Error Pages Error

    Wow.. that's strange. Just try this simple page: <html> <body> <% Dim objErr Set objErr = Server.GetLastError() Response.Write "You just experienced error: " & objError.Description Set objError = Nothing %> </body> </html> I know it sounds strange, but just try this code and...
  20. WineIsGood

    Custom Error Pages Error

    Hmmm... are you sure the script resides within valid html and body tags? Try to make sure the page is simple at first -- html, body, and hardly any meta tags at all, then place your script directly between then body tags. You posted a good portion of the code, but would it be possible to...
Back
Top