• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • 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.

Connect to MySQL database via ASP

SuperCrazyMark

New Pleskian
Hello,
I want to write an ASP script to connect to the Plesk MySql database so I can read my client info etc to be displayed in our custom written Account pages (hopefully to be able to read & write so clients can view/amend their account details from our pages).

I have found the following connection script:

Code:
<%
Dim sConnection, objConn , objRS 

sConnection = "DRIVER={MySQL ODBC 3.51 Driver}; SERVER=localhost; DATABASE=mysqld; UID=admin;PASSWORD=++My admin password++; OPTION=3" 

Set objConn = Server.CreateObject("ADODB.Connection") 
%>

It seems to connect without errors but when I try and query the MySql database I get the following error:

HTML:
Microsoft OLE DB Provider for ODBC Drivers error '80004005' 

[MySQL][ODBC 3.51 Driver]Access denied for user 'admin'@'localhost' (using password: YES)

Is there another admin user I need to use to be able to connect to the actual Plesk MySql database?

Any help would be much appreciated.

-Mark
 
Back
Top