My ISP hosts MySQL on a different server. I can't figure out where to specify the hostname for the install script. The script of course fails because it can't connect to mysql on localhost.
THanks!
Logged In: NO
Edit the following line in DBI.pm:
(Replace your host domain after host=)
my $dbh = DBI->connect ("dbi:$db_driver:database=$db_name;host=LOCALHOST OR YOUR HOST GOES HERE;", $db_username, $db_password, {RaiseError=>'1'});
Log in to post a comment.
Logged In: NO
Edit the following line in DBI.pm:
(Replace your host domain after host=)
my $dbh = DBI->connect
("dbi:$db_driver:database=$db_name;host=LOCALHOST OR
YOUR HOST GOES HERE;", $db_username, $db_password,
{RaiseError=>'1'});