Page 1 of 1

Installation problem

Posted: Thu May 26, 2005 1:20 pm
by Victor
Hi,

I followed the installation instructions to the letter.
My setup:
Windows 2003 Server
IIS 6
PHP 4.3.11
MySQL 4.0.24
MySQL Client 5.0.0

The message I recive is:
Can't connect to MySQL server on:
127.0.0.1

What account is netjukebox trying to connect as?
I have looked for any account information and found none.

Re: Installation problem

Posted: Thu May 26, 2005 5:17 pm
by wbartels
Victor wrote:The message I recive is:
Can't connect to MySQL server on:
127.0.0.1

What account is netjukebox trying to connect as?
I have looked for any account information and found none.
By default it is conecting to:

Code: Select all

//  +---------------------------------------------------------------------------+
//  | MySQL configuration                                                       |
//  +---------------------------------------------------------------------------+
$cfg['mysql_host']                 = '127.0.0.1';
$cfg['mysql_db']                   = 'netjukebox';
$cfg['mysql_user']                 = 'root';
$cfg['mysql_password']             = '';
These setting can be set in the include/config.inc.php file.

Posted: Thu May 26, 2005 5:38 pm
by Guest
Thanks,
I must have been smoking something illegal to miss that :)

/victor