Changeset 142 in subversion
- Timestamp:
- Feb 19, 2006 2:08:53 PM (7 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 3 edited
-
INSTALL (modified) (4 diffs)
-
SQL/mysql.initial.sql (modified) (7 diffs)
-
SQL/mysql.update.sql (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/INSTALL
r93 r142 1 2 REQUIREMENTS 3 ============ 4 5 * The Apache Webserver 6 * .htaccess support allowing overrides for DirectoryIndex 7 * PHP Version 4.3.1 or greater 8 * PCRE (perl compatible regular expression) installed with PHP 9 * php.ini options: 10 - error_reporting E_ALL & ~E_NOTICE (or lower) 11 - file_uploads on (for attachment upload features) 12 * A MySQL or PostgreSQL database engine or the SQLite extension for PHP 13 * A database with permission to create tables 14 1 15 2 16 INSTALLATION … … 31 45 > quit 32 46 # mysql roundcubemail < SQL/mysql.initial.sql 47 48 For MySQL version 4.1 and up, it's recommended to create the database for 49 RoundCube with the following command: 50 > CREATE DATABASE `roundcube` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; 33 51 34 52 … … 65 83 66 84 85 CONFIGURATION 86 ============= 87 88 Change the files in config/* according your to environment and your needs. 89 Details about the config paramaters can be found in the config files. 90 91 67 92 UPGRADING 68 93 ========= … … 71 96 72 97 73 REQUIREMENTS74 ============75 76 * The Apache Webserver77 * .htaccess support allowing overrides for DirectoryIndex78 * PHP Version 4.3.1 or greater79 * PCRE (perl compatible regular expression) installed with PHP80 * php.ini options:81 - error_reporting E_ALL & ~E_NOTICE (or lower)82 - file_uploads on (for attachment upload features)83 * A MySQL or PostgreSQL database engine or the SQLite extension for PHP84 * A database with permission to create tables85 86 87 CONFIGURATION88 =============89 90 Change the files in config/* according your to environment and your needs.91 Details about the config paramaters can be found in the config files. -
trunk/roundcubemail/SQL/mysql.initial.sql
r124 r142 1 1 -- RoundCube Webmail initial database structure 2 -- Version 0.1 a2 -- Version 0.1b 3 3 -- 4 4 … … 20 20 KEY `cache_key` (`cache_key`), 21 21 KEY `session_id` (`session_id`) 22 ) TYPE=MyISAM;22 ); 23 23 24 24 -- -------------------------------------------------------- … … 40 40 PRIMARY KEY (`contact_id`), 41 41 KEY `user_id` (`user_id`) 42 ) TYPE=MyISAM;42 ); 43 43 44 44 -- -------------------------------------------------------- … … 61 61 PRIMARY KEY (`identity_id`), 62 62 KEY `user_id` (`user_id`) 63 ) TYPE=MyISAM;63 ); 64 64 65 65 -- -------------------------------------------------------- … … 76 76 `vars` text NOT NULL, 77 77 PRIMARY KEY (`sess_id`) 78 ) TYPE=MyISAM;78 ); 79 79 80 80 -- -------------------------------------------------------- … … 94 94 `preferences` text NOT NULL default '', 95 95 PRIMARY KEY (`user_id`) 96 ) TYPE=MyISAM;96 ); 97 97 98 98 -- -------------------------------------------------------- … … 123 123 KEY `idx` (`idx`), 124 124 KEY `uid` (`uid`) 125 ) TYPE=MyISAM;125 ); 126 126 127 127 -
trunk/roundcubemail/SQL/mysql.update.sql
r125 r142 1 1 -- RoundCube Webmail update script for MySQL databases 2 -- Version 0.1-200510072 -- Updates from version 0.1-20051007 3 3 4 4 … … 9 9 10 10 -- RoundCube Webmail update script for MySQL databases 11 -- Version 0.1-2005102111 -- Updates from version 0.1-20051021 12 12 13 13 ALTER TABLE `session` CHANGE `sess_id` `sess_id` VARCHAR(40) NOT NULL; … … 53 53 54 54 -- RoundCube Webmail update script for MySQL databases 55 -- Version 0.1-2005121655 -- Updates from version 0.1-20051216 56 56 57 57 ALTER TABLE `messages` ADD `created` DATETIME NOT NULL AFTER `cache_key` ;
Note: See TracChangeset
for help on using the changeset viewer.
