Har du installerat MySQL? phpbb använder sig av MySQL nämligen.
För Mac OS version 10.2 eller senare
1. Download the package mysql-3.23.55.pkg.tar.gz to your desktop. Unpack it and then double-click on the .pkg file to install it.
2. Open a terminal window and type in the following commands (without the double quotes):
3. type "cd /usr/local/mysql"
4. type "sudo ./scripts/mysql_install_db", enter administrator password when asked
5. type "sudo chown -R mysql /usr/local/mysql/*"
To start the server, issue "sudo echo" first, then type "sudo ./bin/safe_mysqld --user=mysql &"
Use it with "/usr/local/bin/mysql test"
If you do not want to have to type "/usr/local/bin" in front of every command, you have to add the /usr/local/bin directory to your PATH environment variable in your login script.
For the default tcsh shell, you can do this by running this command once:
"echo ´setenv PATH /usr/local/bin:$PATH´ >> ~/.tcshrc"
Important: You should at least run this command in order to secure the open master account in the default installation:
mysqladmin -u root password new_password_here
Källa: Marc Liyanage
[ 11. mars 2003, 09:54: Meddelandet ändrat av: Jon Adolfsson ]