Update of /cvsroot/phpwiki/phpwiki
In directory usw-pr-cvs1:/tmp/cvs-serv31853
Modified Files:
Tag: release-1_2-branch
INSTALL.mysql
Log Message:
SF patch #479791 by Carsten Klapp:
Improvements to the mysql installation documentation.
Index: INSTALL.mysql
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/INSTALL.mysql,v
retrieving revision 1.6
retrieving revision 1.6.2.1
diff -C2 -r1.6 -r1.6.2.1
*** INSTALL.mysql 2001/01/24 18:36:17 1.6
--- INSTALL.mysql 2001/11/09 03:13:00 1.6.2.1
***************
*** 7,18 ****
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.*
--- 7,24 ----
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.*
***************
*** 20,24 ****
IDENTIFIED BY 'password';
! 3. Create tables inside your database.
mysql -uuser -ppassword phpwiki <schemas/schema.mysql
--- 26,30 ----
IDENTIFIED BY 'password';
! 3. Create tables inside your database (still using the root account).
mysql -uuser -ppassword phpwiki <schemas/schema.mysql
|