Internet Products
1821051 Members
2362 Online
109631 Solutions
New Discussion юеВ

HTTP 500.100 - Internal Server Error - ASP error

 
Christopher_17
New Member

HTTP 500.100 - Internal Server Error - ASP error

I am preparing to move our site, as a test I moved the site to a new box and left the db where it currently sits(on a separate SQL server) the default page comes up fine, but when I try to access the db, I get the http 500.100 error, stating the server does not exist or access is denied. Any ideas?
4 REPLIES 4
Jon Finley
Honored Contributor

Re: HTTP 500.100 - Internal Server Error - ASP error

Check the headers in your pages. Some of them probably refer back to the original server.

It would be better to import the web over to the new server. Importing takes care of having all of the headers correct.


Tjhis can also happen if you are using Server.CreateObject

http://support.microsoft.com/default.aspx?scid=kb;en-us;Q273744

Or by how permissions have been assigned.

http://support.microsoft.com/default.aspx?scid=kb;en-us;Q255650

Also, make sure that both Servers have the same patch level (SP's and hot fixes).


Jon
"Do or do not. There is no try!" - Yoda
Kurt Matthies
Valued Contributor

Re: HTTP 500.100 - Internal Server Error - ASP error

I suspect that there is a component installed on the inital server that is not installed or registered on the new server.

What call in the ASP page gives you the error?
If if ain't broke, don't fix it.
Jorge Pinto Leite
Respected Contributor

Re: HTTP 500.100 - Internal Server Error - ASP error

Christopher, just two things for you to assure:
Are you using a connection that points to the db server?
Are the permissions correct in the db server?
Andre_19
Occasional Advisor

Re: HTTP 500.100 - Internal Server Error - ASP error

Try setting response.buffer = false in your asp page. This will send the error output to the client as it is processed. You will see the actual reason for the error.

Regards
Andr??
So long and thanks for all the fish