Changeset 142 in subversion


Ignore:
Timestamp:
Feb 19, 2006 2:08:53 PM (7 years ago)
Author:
roundcube
Message:

Updated installation instructions

Location:
trunk/roundcubemail
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/INSTALL

    r93 r142  
     1 
     2REQUIREMENTS 
     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 
    115 
    216INSTALLATION 
     
    3145> quit 
    3246# mysql roundcubemail < SQL/mysql.initial.sql 
     47 
     48For MySQL version 4.1 and up, it's recommended to create the database for 
     49RoundCube with the following command: 
     50> CREATE DATABASE `roundcube` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; 
    3351 
    3452 
     
    6583 
    6684 
     85CONFIGURATION 
     86============= 
     87 
     88Change the files in config/* according your to environment and your needs. 
     89Details about the config paramaters can be found in the config files. 
     90 
     91 
    6792UPGRADING 
    6893========= 
     
    7196 
    7297 
    73 REQUIREMENTS 
    74 ============ 
    75  
    76 * The Apache Webserver 
    77 * .htaccess support allowing overrides for DirectoryIndex 
    78 * PHP Version 4.3.1 or greater 
    79 * PCRE (perl compatible regular expression) installed with PHP 
    80 * 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 PHP 
    84 * A database with permission to create tables 
    85  
    86  
    87 CONFIGURATION 
    88 ============= 
    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  
    11-- RoundCube Webmail initial database structure 
    2 -- Version 0.1a 
     2-- Version 0.1b 
    33--  
    44 
     
    2020  KEY `cache_key` (`cache_key`), 
    2121  KEY `session_id` (`session_id`) 
    22 ) TYPE=MyISAM; 
     22); 
    2323 
    2424-- -------------------------------------------------------- 
     
    4040  PRIMARY KEY  (`contact_id`), 
    4141  KEY `user_id` (`user_id`) 
    42 ) TYPE=MyISAM; 
     42); 
    4343 
    4444-- -------------------------------------------------------- 
     
    6161  PRIMARY KEY  (`identity_id`), 
    6262  KEY `user_id` (`user_id`) 
    63 ) TYPE=MyISAM; 
     63); 
    6464 
    6565-- -------------------------------------------------------- 
     
    7676  `vars` text NOT NULL, 
    7777  PRIMARY KEY  (`sess_id`) 
    78 ) TYPE=MyISAM; 
     78); 
    7979 
    8080-- -------------------------------------------------------- 
     
    9494  `preferences` text NOT NULL default '', 
    9595  PRIMARY KEY  (`user_id`) 
    96 ) TYPE=MyISAM; 
     96); 
    9797 
    9898-- -------------------------------------------------------- 
     
    123123  KEY `idx` (`idx`), 
    124124  KEY `uid` (`uid`) 
    125 ) TYPE=MyISAM; 
     125); 
    126126 
    127127 
  • trunk/roundcubemail/SQL/mysql.update.sql

    r125 r142  
    11-- RoundCube Webmail update script for MySQL databases 
    2 -- Version 0.1-20051007 
     2-- Updates from version 0.1-20051007 
    33 
    44 
     
    99 
    1010-- RoundCube Webmail update script for MySQL databases 
    11 -- Version 0.1-20051021 
     11-- Updates from version 0.1-20051021 
    1212 
    1313ALTER TABLE `session` CHANGE `sess_id` `sess_id` VARCHAR(40) NOT NULL; 
     
    5353 
    5454-- RoundCube Webmail update script for MySQL databases 
    55 -- Version 0.1-20051216 
     55-- Updates from version 0.1-20051216 
    5656 
    5757ALTER TABLE `messages` ADD `created` DATETIME NOT NULL AFTER `cache_key` ; 
Note: See TracChangeset for help on using the changeset viewer.