Help - PLEASE READ BEFORE CONTINUING |
|---|
|
If you do not know how to do this, make sure you have mysql installed and that the deamon mysqld is running.
Run mysql and create a database and user/password using the commands : create database whatever_you_want; If the server that MySQL is on is different that the server your .php files are on, then change the 'localhost' in the next command to either the hostname or IP of the MySQL sever grant all privileges on what_you_named_the_database.* to some_username@localhost identified by 'some_password'; flush privileges; If you get the message : Warning: mysql_connect(): Client does not support authentication protocol requested by server Run the mysql command : UPDATE mysql.user SET Password = OLD_PASSWORD('the_pass') WHERE User = 'the_user'; |
|
|
|
To change the uploads dir privileges issue the command : chmod depends_on_the_owner_and_apache -R uploads To change the language, download the correct language file from speedywiki's sourceforge site and copy it to lang.php. Speedywiki comes with english.php as the default language already copied to lang.php. |