
July 11th, 2003, 01:33 PM
|
|
Contributing User
|
|
Join Date: Feb 2003
Location: New Jersey
Posts: 77
Time spent in forums: 6 h 2 m 21 sec
Reputation Power: 6
|
|
ASP: SSL Problem
I recently switched web hosts and my Secure Socket Layer is on a different server from the database and most of my files. Also, my web host keeps the web sites and SSL for a web site separated.
Is there any way I can access the database from the SSL.
I used this code to get the path and then extracted out those parts of the path that applied to the SSL:
strPathInfo = Request.ServerVariables("PATH_INFO")
strPhysicalPath = Server.MapPath(strPathInfo)
Although the path looks correct, I got this error message:
Make sure that the path name is spelled correctly and that you are connected to the server on which the file resides.
|