I've migrated the files to a win 2003 server and guess what?
As expected, there is problem with the mapping of the pathway.
The new server does not seem to allow the " ../ " command for the virtual pathway. Did I miss out something here?
I tried using the physical directory and guess what? It worked.
But because I have other scripts using the virtual path, i still encounter errors and can't get them to work. The alternative would be of course to make changes to the script so that it will use the physical path but I don't know how ...
Example:
Set adoCon = Server.CreateObject("ADODB.Connection") connstr="DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("../../db/XYZ.mdb")adocon.Open connstr
If I were to modify it to use the physical path, what do I do with the above section of the script? Or am I too presumptious to just change this section?
Help!
Edited by godot - 27 June 2006 at 3:59pm