View Single Post
  #8 (permalink)  
Old 01-24-2003, 07:35 AM
JerseyNB JerseyNB is offline
Junior Member
 
Join Date: Jan 2003
Location: New Jersey
Posts: 40
Quote:
NukeSQL.php and the Connection Test Script managed to connect to the MySQL server but,
the connection to database "nuke" has FAILED!
Edit config.php and enter the correct value for dbname as no database with the name "nuke" was found.
You have to edit the config.php with the correct values.

################################################## ####################
# Database & System Config
#
# dbhost: SQL Database Hostname
# dbuname: SQL Username
# dbpass: SQL Password
# dbname: SQL Database Name
# $prefix: Your Database table's prefix
# $user_prefix: Your Users' Database table's prefix (To share it)
# $dbtype: Your Database Server type. Supported servers are:
# MySQL, mSQL, PostgreSQL, PostgreSQL_local, ODBC,
# ODBC_Adabas, Interbase, and Sybase.
# Be sure to write it exactly as above, case SeNsItIvE!
################################################## ####################

$dbhost = "localhost";
$dbuname = "demo";
$dbpass = "demo";
$dbname = "demo";
$prefix = "nuke";
$user_prefix = "nuke";
$dbtype = "MySQL";
Reply With Quote