A
admin0
Guest
Hi,
I am using Plesk 7.5.1 on windows server 2003.
# issue 1
I can go to %plesk_dir$\mysql\bin
and connect to mysql on both ports OK with the admin password.
The phpmyadmin works OK as root and as client also.
Clients are able to create database OK and view via phpmyadmin.
The problem is:
php does not connect to the database. The error that I get is:
Warning: mysql_connect(): Access denied for user 'username'@'localhost' (using password: YES) in C:\Inetpub\vhosts\domain.com\httpdocs\test.php on line 7
Unable to connect to MySQL
<?
$username = "username";
$password = "password";
$hostname = "localhost";
$dbh = mysql_connect($hostname, $username, $password)
or die("Unable to connect to MySQL");
print "Connected to MySQL<br>";
mysql_close($dbh);
?>
but i can connect OK with the username and password via commmand line
%plesk-dir%\mysql\bin\
mysql -u username -p ENTER
<password>
select db1
show tables;
etc etc ...
# issue 2
There is no ms sql instance shown in the plesk database section of mssql. However, I am able to connect to the database OK, and create/edit and do other things. Its just not showing the instance name in the display when logged in as admin.
The issue #2 is not that much priority now, however, due to mysql issues, none of the php/mysql sites are working.
This is a new server.
Please help
Cheers,

I am using Plesk 7.5.1 on windows server 2003.
# issue 1
I can go to %plesk_dir$\mysql\bin
and connect to mysql on both ports OK with the admin password.
The phpmyadmin works OK as root and as client also.
Clients are able to create database OK and view via phpmyadmin.
The problem is:
php does not connect to the database. The error that I get is:
Warning: mysql_connect(): Access denied for user 'username'@'localhost' (using password: YES) in C:\Inetpub\vhosts\domain.com\httpdocs\test.php on line 7
Unable to connect to MySQL
<?
$username = "username";
$password = "password";
$hostname = "localhost";
$dbh = mysql_connect($hostname, $username, $password)
or die("Unable to connect to MySQL");
print "Connected to MySQL<br>";
mysql_close($dbh);
?>
but i can connect OK with the username and password via commmand line
%plesk-dir%\mysql\bin\
mysql -u username -p ENTER
<password>
select db1
show tables;
etc etc ...
# issue 2
There is no ms sql instance shown in the plesk database section of mssql. However, I am able to connect to the database OK, and create/edit and do other things. Its just not showing the instance name in the display when logged in as admin.
The issue #2 is not that much priority now, however, due to mysql issues, none of the php/mysql sites are working.
This is a new server.
Please help
Cheers,