summaryrefslogtreecommitdiff
path: root/roundcubemail/INSTALL
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-08-06 15:55:11 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-08-06 15:55:11 +0000
commite2c3d8f79a2f06e485f2766e67a6afcb1315ebc9 (patch)
tree59fca0553dc43ea99ce7fdfaeb23f0b78df6ddaf /roundcubemail/INSTALL
parent5156830d1f8b2f0cdcf5fc4882b63c0c9e3da04f (diff)
Finalized 0.1beta2 release
git-svn-id: https://svn.roundcube.net/trunk@297 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/INSTALL')
-rw-r--r--roundcubemail/INSTALL16
1 files changed, 13 insertions, 3 deletions
diff --git a/roundcubemail/INSTALL b/roundcubemail/INSTALL
index efe060499..0c7e7cbbf 100644
--- a/roundcubemail/INSTALL
+++ b/roundcubemail/INSTALL
@@ -33,8 +33,8 @@ INSTALLATION
DATABASE SETUP
==============
-* MySQL
--------
+* MySQL 4.0.x
+-------------
Setting up the mysql database can be done by creating an empty database,
importing the table layout and granting the proper permissions to the
roundcube user. Here is an example of that procedure:
@@ -46,9 +46,19 @@ roundcube user. Here is an example of that procedure:
> quit
# mysql roundcubemail < SQL/mysql.initial.sql
+
+* MySQL 4.1.x/5.x
+-----------------
For MySQL version 4.1 and up, it's recommended to create the database for
-RoundCube with the following command:
+RoundCube with utf-8 charset. Here's an example of the init procedure:
+
+# mysql
> CREATE DATABASE 'roundcubemail' DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
+> GRANT ALL PRIVILEGES ON roundcubemail.* TO roundcube@localhost
+ IDENTIFIED BY 'password';
+> quit
+
+# mysql roundcubemail < SQL/mysql5.initial.sql
* SQLite