Reseller Hosting, Shared Hosting, Dedicated Hosting by Vortech Inc.

Go Back   Reseller Hosting, Shared Hosting, Dedicated Hosting by Vortech Inc. > >> General Public > Chit Chat Public
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Chit Chat Public Talk about any thing you want! This forum is public.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 09-25-2002, 11:30 AM
Garreg's Avatar
Garreg Garreg is offline
Resident Optimist
Vortech Inc. Customer
 
Location: UK - Mon to Fri. Mars - all Weekend
Windows WebSite - Down

Have entered a TT – though still awaiting a response.

I’m getting a lot of faults / downtime reported on one of my website (windows / asp) - one minute it’s ‘up’ next minute its ‘down’, usually “HTTP 500 - Internal server error
Internet Explorer”

Today alone………………….
09.25.2002 20:07 HTTP Error 500 Internal Server Error 30 mins
09.25.2002 19:06 HTTP Error 500 Internal Server Error 45 mins
09.25.2002 18:04 HTTP Error 500 Internal Server Error 30 mins
09.25.2002 17:03 HTTP Error 500 Internal Server Error 46 mins
09.25.2002 15:45 HTTP Error 500 Internal Server Error 31 mins
09.25.2002 14:43 HTTP Error 500 Internal Server Error 30 mins
09.25.2002 11:51 HTTP Error 500 Internal Server Error 30 mins
09.25.2002 06:18 Connection refused 14 mins

And it’s still reporting http 500.

Also – since the update to 2.3 I’m not receiving the automated acknowledgments to my TT’s.



Garreg
Reply With Quote
  #2  
Old 09-25-2002, 12:42 PM
admin's Avatar
admin admin is offline
Vortech Inc. Owner
Owner
 
Location: Orlando FL
Send a message via ICQ to admin
Garreg,

I checked your site from the ticket and looks fine. I am working on some thing now to check asp ever 3 min so i can keep an eye on asp for ever one.. Right now we are just checking http.
Reply With Quote
  #3  
Old 09-26-2002, 07:09 PM
Garreg's Avatar
Garreg Garreg is offline
Resident Optimist
Vortech Inc. Customer
 
Location: UK - Mon to Fri. Mars - all Weekend
Same ticket as yesterday – same site – same problem……

09.27.2002 04:56 HTTP Error 500 Internal Server Error
09.27.2002 04:23 HTTP Error 500 Internal Server Error 17 mins
09.26.2002 09:51 Timeout 14 mins

Whats is actually happening to cause this?
__________________
Regards to all
Reply With Quote
  #4  
Old 09-26-2002, 07:12 PM
Garreg's Avatar
Garreg Garreg is offline
Resident Optimist
Vortech Inc. Customer
 
Location: UK - Mon to Fri. Mars - all Weekend
Bye the way – email has been ‘on’ ‘off’ for this domain and one other windows one as well today….
__________________
Regards to all
Reply With Quote
  #5  
Old 09-26-2002, 07:14 PM
admin's Avatar
admin admin is offline
Vortech Inc. Owner
Owner
 
Location: Orlando FL
Send a message via ICQ to admin
Read

http://www.matrixreseller.com/forum/...=&threadid=389
Reply With Quote
  #6  
Old 09-26-2002, 07:15 PM
Garreg's Avatar
Garreg Garreg is offline
Resident Optimist
Vortech Inc. Customer
 
Location: UK - Mon to Fri. Mars - all Weekend
That explains the mail - what about the domain?
__________________
Regards to all
Reply With Quote
  #7  
Old 09-26-2002, 07:24 PM
admin's Avatar
admin admin is offline
Vortech Inc. Owner
Owner
 
Location: Orlando FL
Send a message via ICQ to admin
What domain you only said some thing about email not a web site?
Reply With Quote
  #8  
Old 09-27-2002, 04:28 AM
Garreg's Avatar
Garreg Garreg is offline
Resident Optimist
Vortech Inc. Customer
 
Location: UK - Mon to Fri. Mars - all Weekend
I
Quote:
What domain you only said some thing about email not a web site?


You didn't read the previous post... made just a few minutes earlier.
__________________
Regards to all
Reply With Quote
  #9  
Old 09-27-2002, 09:52 PM
jammin jammin is offline
Vortech Inc. Customer
Vortech Inc. Customer
 
Just in case you're not aware of this...

A regular ASP coding error is reported as an "Error 500 - internal server error" if you have "Show friendly HTTP error messages" enabled in Internet Explorer.

Needless to say, a generic error that tells you nothing is not really "friendly" !

To change it in IE, go to Tools / Internet Options / Advanced / Browsing

Cheers
Jammin
Reply With Quote
  #10  
Old 09-28-2002, 12:40 AM
admin's Avatar
admin admin is offline
Vortech Inc. Owner
Owner
 
Location: Orlando FL
Send a message via ICQ to admin
Quote:
Originally posted by jammin
Just in case you're not aware of this...

A regular ASP coding error is reported as an "Error 500 - internal server error" if you have "Show friendly HTTP error messages" enabled in Internet Explorer.

Needless to say, a generic error that tells you nothing is not really "friendly" !

To change it in IE, go to Tools / Internet Options / Advanced / Browsing

Cheers
Jammin


Yea i know.. I beat the problem with Garreg's is ODBC.. Garreg can you send over the domains so i can make sure there set right for high use if using an ODBC. If your not using any kind of system ODBC then let me know i need to look in to what else may make that problem.
Reply With Quote
  #11  
Old 09-28-2002, 07:24 AM
Garreg's Avatar
Garreg Garreg is offline
Resident Optimist
Vortech Inc. Customer
 
Location: UK - Mon to Fri. Mars - all Weekend
Nope - this is what I'm using. I use the same coding for all my .ASP domains - but the one in the TT is the only one that has had problems (recently).

'internet Connection Class @-600904A6
Class clsDBinternet

Public ConnectionString
Public User
Public Password
Public DateFormat
Public BooleanFormat
Public LastSQL
Public Errors

Private objConnection
Private blnState

Private Sub Class_Initialize()
ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;User ID=Admin;Data Source=c:/hshome/MyUsername/MyDomain/database/Internet.mdb;Persist Security Info=False"
User = "XXX"
Password = "XXX"
DateFormat = Array("yyyy", "-", "mm", "-", "dd", " ", "HH", ":", "nn", ":", "ss")
BooleanFormat = Empty
Set objConnection = Server.CreateObject("ADODB.Connection")
Set Errors = New clsErrors
End Sub

Sub Open()
On Error Resume Next
objConnection.Errors.Clear
objConnection.Open ConnectionString, User, Password
If Err.Number <> 0 then
Response.Write "<div><h2>Unable to establish connection to database.</h2>"
Response.Write "<ul><li>Error information:<br>"
Response.Write Err.Source & " (0x" & Hex(Err.Number) & ")<br>"
Response.Write Err.Description & "</li>"
If Err.Number = -2147467259 then _
Response.Write "<li>More information:<br>The database cannot be opened, most likely due to insufficient security set on your database folder or file.</li>"
Response.Write "</ul></div>"
Response.End
End If
End Sub

I'm happy to create and use a different connection ? BTW - I haven't ammended anything (don't know if you have) but the sites remained up since your (Admin) original reply to may post.
__________________
Regards to all
Reply With Quote
  #12  
Old 09-28-2002, 12:03 PM
admin's Avatar
admin admin is offline
Vortech Inc. Owner
Owner
 
Location: Orlando FL
Send a message via ICQ to admin
So its been fine since the 25th?
Reply With Quote
  #13  
Old 09-28-2002, 12:06 PM
Garreg's Avatar
Garreg Garreg is offline
Resident Optimist
Vortech Inc. Customer
 
Location: UK - Mon to Fri. Mars - all Weekend
27th as per above post regarding downtime
__________________
Regards to all
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
ISP Not seeing my website cjmelhorn Chit Chat Public 19 08-18-2003 10:42 PM
website design outercircle Chit Chat Public 17 07-16-2003 06:57 AM
Website Problem MadPinger Chit Chat Public 2 11-01-2002 10:12 AM


All times are GMT -5. The time now is 04:07 AM.


Powered by vBulletin Version 3.5.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Vortech Inc. ©2005
Page generated in 0.57258 seconds with 15 queries
[Output: 102.19 Kb. compressed to 93.96 Kb. by saving 8.23 Kb. (8.05%)]