View Single Post
  #2  
Old 09-23-2003, 08:13 AM
krich
Hill Giant
 
Join Date: May 2003
Location: The Great Northwest
Posts: 150
Default

This is likely a problem with your db.ini file. Check to make sure you don't have spaces at the end of any of the lines in your db.ini.

You can check that your MySQL is working by typing the following from the command/shell prompt:

for windows:
cd <mysql install directory>/bin
mysql -u <userid> -p <dbname>
enter password when requested

for linux:
mysql -u <userid> -p <dbname>
enter password when requested

Where:
<userid> = userid in your db.ini file
<password> = password in your db.ini file
<dbname> = dbname in your db.ini file

If you get into the mysql prompt, the problem likely lies within your db.ini file.

regards,

krich
Reply With Quote