View previous topic :: View next topic |
Author |
Message |
nesje -
Joined: 17 Jan 2005 Posts: 3
|
Posted: Mon Jan 17, 2005 9:45 pm Post subject: Critical error |
|
|
phpBB : Critical Error
Could not connect to the database
what should i do to fix this??
thx |
|
Back to top |
|
 |
NoName -
Joined: 05 Jan 2005 Posts: 88 Location: Lawton America
|
|
Back to top |
|
 |
Tim1681 -
Joined: 17 Jan 2005 Posts: 160 Location: Bristol, CT, USA
|
Posted: Mon Jan 17, 2005 10:00 pm Post subject: |
|
|
Do you have the right version of MySQL Selected in the Install.php Page? |
|
Back to top |
|
 |
nesje -
Joined: 17 Jan 2005 Posts: 3
|
Posted: Mon Jan 17, 2005 10:09 pm Post subject: |
|
|
i've selected MySQL 4.x
and how do you create a database is there a tutorial of it?
thx |
|
Back to top |
|
 |
Tim1681 -
Joined: 17 Jan 2005 Posts: 160 Location: Bristol, CT, USA
|
Posted: Mon Jan 17, 2005 10:18 pm Post subject: |
|
|
goto your MySQL Command Line Client & type in the following code, donot type in the mysql>'s or the ->'s!
Code: |
mysql> create database
-> DatabaseName; |
Then assign a user to it:
Code: |
mysql> SET PASSWORD FOR
-> 'some_user'@'some_host' = OLD_PASSWORD('newpwd'); |
|
|
Back to top |
|
 |
|