
August 10th, 1999, 05:06 PM
|
|
Guest
|
|
Posts: n/a
Time spent in forums:
Reputation Power:
|
|
|
Hi,
just installed apache and php on a win95 machine.
and now i'm trying to configure mysql but i'm
quit stuck in here.
i'm using
http://www.vtwebwizard.comtutorialsmysqlstart.html
as reference.
php3 script :
<html>
<head><title>test db</title>
</head>
<body>
<?php
require("util.php3");
$sql = new MySQL_class;
$sql->Create("php3test");
echo("Database connection successful.n");
?>
</body>
</html>
util.php3 would be to long to past but if nessecary
it's at this link :
http://www.vtwebwizard.com/tutorials/mysql/mysql_module.html
it used as user jo and as password joa.
apache and the mysqld deamon is running.
php3.ini has been adapted as following :
;Windows Extensions
extension=php3_mysql.dll
;extension=php3_nsmail.dll
[MySQL]
mysql.default_port = ;
mysql.default_host =127.0.0.1;
mysql.default_user =jo;
mysql.default_password =joa;
now running testdb.php3 keeps giving me
Error: Unable to connect to MySQL server: : '' :
Now,
mysql -u root
i've added a superuser like this:
do_command: query: INSERT INTO user VALUES ('%', 'jo',
password('joa'), 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y')
quit
mysqladmin reload -uroot
then : mysql -ujo -pjoa
ok logged in
and typed in the rest of the tutorial.
btw : logging in as root and doing
a query like select * from user outputs
what it should.
If anyone has any idea where my config problem should locate I would love to hear it.
Greetings Joachim
|