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. mysqladmin -uuser -ppassword create phpwiki 2. If necessary create a user for that database which has the rights to select, insert, update, delete. A mySQL grant statment 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. mysql -uuser -ppassword phpwiki