diff options
author | thomascube <thomas@roundcube.net> | 2006-05-05 16:59:12 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-05-05 16:59:12 +0000 |
commit | fd372599212f4cdb077b1694f448d88e9585eec1 (patch) | |
tree | bccfe2b86ebda87ca22ab08418183dea446947cf /INSTALL | |
parent | ded2b7e166d4b0acab09c00f22f379fbabba709a (diff) |
Corrected INSTALL description (Bug #1476106)
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -39,7 +39,7 @@ importing the table layout and granting the proper permissions to the roundcube user. Here is an example of that procedure: # mysql -> create database 'roundcubemail'; +> CREATE DATABASE 'roundcubemail'; > GRANT ALL PRIVILEGES ON roundcubemail.* TO roundcube@localhost IDENTIFIED BY 'password'; > quit @@ -47,7 +47,7 @@ roundcube user. Here is an example of that procedure: For MySQL version 4.1 and up, it's recommended to create the database for RoundCube with the following command: -> CREATE DATABASE `roundcube` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; +> CREATE DATABASE 'roundcubemail' DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; * SQLite |