Hi folks!
I created the database, the database user, and added the user to the db.
--------------------------------------------
djscoll_auction (Privileges: ALL PRIVILEGES)
Connection Strings
Perl $dbh = DBI->connect("DBI:mysql:djscoll_auction:localhost","djscoll_auction","<PASSWORD HERE>");
PHP $dbh=mysql_connect ("localhost", "djscoll_auction", "<PASSWORD HERE>") or die ('I cannot connect to the database because: ' . mysql_error());
mysql_select_db ("djscoll_auction");
-----------------------------------------
When I run the script, I get a host of errors (which is better than I was originally getting)
Please select : Create new database Use existing database
Database host : localhost
Database name : djscoll_auction
Database username : djscoll_auction
Database password : my password
Admin E-Mail : my email
Site name : djscollectables.com
Site URL : full path of my site
Since this is just an add-on to my site, I am not sure whether to show the url to the site or to the index.php that will call the auction software (or if it even makes a difference, as I have tried both and neither changes the outcome).
I have attached a txt file showing the error output. I thought that it may be a chmod problem, so I did the whole thing as 777, which didn't help. Any suggestions would be greatly appreciated.