alecpl
2009-02-16 ad56004cd69afbbbbd7eff3ec630256b2d098132
- added info to create unicode database (#1485687)


1 files modified
4 ■■■■ changed files
INSTALL 4 ●●●● patch | view | raw | blame | history
INSTALL
@@ -53,7 +53,7 @@
roundcube user. Here is an example of that procedure:
# mysql
> CREATE DATABASE roundcubemail;
> CREATE DATABASE roundcubemail /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */;
> GRANT ALL PRIVILEGES ON roundcubemail.* TO roundcube@localhost
    IDENTIFIED BY 'password';
> quit
@@ -88,7 +88,7 @@
which ever is the database superuser):
$ createuser roundcube
$ createdb -O roundcube roundcubemail
$ createdb -O roundcube -E UNICODE roundcubemail
$ psql roundcubemail
roundcubemail =# ALTER USER roundcube WITH PASSWORD 'the_new_password';