Link to home
Start Free TrialLog in
Avatar of WebMaker
WebMaker

asked on

Virtual Directories

I have the following database conncetion code that I reference with an INCLUDE file.

<%
        ScriptName = Request.ServerVariables("SCRIPT_NAME")
        ScriptNameParts = Split(ScriptName, "/", -1)
        ScriptName = ScriptNameParts(Ubound(ScriptNameParts))
     
        BaseLoc = Left(Request.ServerVariables("PATH_TRANSLATED"), Len(Request.ServerVariables("PATH_TRANSLATED"))-Len(ScriptName))

     DBase = "databases/supplier.mdb"

        DBasePath = BaseLoc & DBase & ";"
        strProvider="Driver=Microsoft Access Driver (*.mdb); DBQ=" & DBasePath
       
        set objConn = server.createobject("ADODB.Connection")

        objConn.Open strProvider
%>

It works perfectly in a normal environment, however I've now tried using it in an environment where the folder databases (within the DBase = "databases/supplier.mdb" line) is a virtual directory.

It now gives me the following error :

Microsoft OLE DB Provider for ODBC Drivers error '80004005'

[Microsoft][ODBC Microsoft Access Driver] '(unknown)' is not a valid path. Make sure that the path name is spelled correctly and that you are connected to the server on which the file resides.

/include/supplierConnString.asp, line 15

Any ideas ?????????
Avatar of newjack
newjack

Have you tried a Response.Write of that BaseLoc variable you are compiling?

I'm pretty sure there will be something wrong with that path to your mdb file.

Also, it's not a good thing to put your database in your web-directory (which looks like what you are doing).

Putting it there will allow any user to download it once they know the filename like when directory browsing is enabled...
I had a similiar problem.  Try this.

strConn = "DBQ=[databasePath];" & _
          "Driver={Microsoft Access Driver (*.mdb)};" & _
       "FIL=MS Access;"

The database path should be the full path of the database.
ie. F:\databases\myDatabase.mdb
Avatar of Mark Franz
Well... since I don't use OLE but good ol' ADO, this might not of any use to you.  But I suggest a switch to ADO;

Set connAdmin = Server.CreateObject("ADODB.Connection")
connAdmin.ConnectionTimeout = 15
connAdmin.CommandTimeout =  10
connAdmin.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=" & Server.MapPath("/database/inventory.mdb")

If the directory is in a virtual directory above the MapPath then use this; (html is the name of the Home dir in this case)

connAdmin.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=" & Replace(Server.MapPath("/database/inventory.mdb"), "html", "")

"Microsoft OLE DB Provider for ODBC Drivers error '80004005' "

It's an permissions error.
Avatar of WebMaker

ASKER

There's nothing wrong with the permissions or the path :

DBasePath = D:\Inetpub\suppliers\databases\supplier.mdb

databases is the virtual directory in which the database supplier.mdb is held.

The real location of databases is :

D:\Inetpub\wwwroot\databases\supplier.mdb

I want the same database to feed both sites.

I'm going slowly mad with this one !!!!!!!!

the "PATH_TRANSLATED" server variables does a virtual directory to physical directory translation, so in theory your code should work,

are you sure your database is where it should be?
I find the fact that you say your db is in D:\Inetpub\wwwroot\databases\ and that your server returns D:\Inetpub\suppliers\databases\ very odd.

Normally IIS apps are always somewhere in wwwroot, unless you share another folder somewhere on your system, but then you have to make sure your database is also at that location, and not in the wwwroot directory.

So if your webapp is in D:\Inetpub\suppliers\ you need to put your database in D:\Inetpub\suppliers\databases instead of D:\Inetpub\wwwroot\databases\

Also, you migth need to correct the forward slash to a backslash in this line of code,

DBase = "databases/supplier.mdb"


hope this helps,
NJ

newjack,

D:\Inetpub\suppliers\databases is a virtual directory created from D:\Inetpub\wwwroot\databases so theoretically the database resides in both of these folders.

Our main web-site is stored in the wwwroot folder, however I want to create another site, separate from the main one (for security reasons) but utilising the same source databases.  I thought a virtual directory of the database folder would do the trick.

Also, I've tried changing the forward-slash to a back-slash, but nothing changes.

Any more ideas ?
ASKER CERTIFIED SOLUTION
Avatar of newjack
newjack

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial