• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Microsoft][ODBC Microsoft Access Driver

E

ErikdeEngerd

Guest
Hi

How fix i this

[Microsoft][ODBC Microsoft Access Driver]General error Unable to open registry key 'Temporary (volatile) Jet DSN for process 0xd00 Thread 0xd90 DBC 0x15de76c Jet'.

Thanks ERic
 
Originally posted by ErikdeEngerd
Hi

How fix i this

[Microsoft][ODBC Microsoft Access Driver]General error Unable to open registry key 'Temporary (volatile) Jet DSN for process 0xd00 Thread 0xd90 DBC 0x15de76c Jet'.

Thanks ERic
I ran into this once, I changed to a DNSless connection and it solved the problem, although I'm not sure what caused it yet.
 
Hi

Thanks for your reply , but can you tel , how you do this , step by step.


Thanks
 
Originally posted by ErikdeEngerd
Hi

Thanks for your reply , but can you tel , how you do this , step by step.


Thanks

Hmm, I'm trying to think back, can you post your connection string right now?
 
Hi

%>

<%
Dim ConnectString, conn
On Error Resume Next

'** CHANGE THE BELOW LINE

ConnectString ="Driver={Microsoft Access Driver (*.mdb)};Dbq=C:\Inetpub\vhosts\domainname.com\httpdocs\mailerfree\mailerfree.mdb;"


Set conn = Server.CreateObject("ADODB.Connection")
conn.open ConnectString
If err <> "0" Then error() End If
%>

But is there another way to connect the database is it also oke , mayby there is an easyer way to do it!!

Thanks Eric
 
DSN server path

When you want to know the real path to the database file. Run this script in the directory of the database:

Just put it in a example.asp (or something like that)
<%
Response.Write Server.MapPath(Request.ServerVariables("PATH_INFO"))
%>
this line shows the real path to the databasefile.

View this example on: http://mappath.denit.net

You can add this path it in the plesk control panel under odbc. Test the connection et voila.

Do not forget to set write permissions on the database file.
 
Back
Top