FIXME: these instructions are slightly broken. Installing phpwiki with mySQL ----------------------------- This assumes that you have a working mySQL server and client setup. Installing mySQL is beyond the scope of this document. For more information on mySQL go to http://www.mysql.org/ 1. If you do not have a suitable database already, create one (using the root or other privileged account you set up when mySQL was installed.) mysqladmin -uuser -ppassword create phpwiki 2. If necessary create a user for that database which has the rights to select, insert, update, delete (again using the root administration account). mysql -uuser -ppassword phpwiki A mySQL grant statement for this user would look like this: GRANT select, insert, update, delete ON phpwiki.* TO wikiuser@localhost IDENTIFIED BY 'password'; 3. Create tables inside your database (still using the root account). mysql -uuser -ppassword phpwiki