- Require PHP 5.2.1 or greater
| | |
| | | CHANGELOG Roundcube Webmail |
| | | =========================== |
| | | |
| | | - Require PHP 5.2.1 or greater |
| | | |
| | | RELEASE 0.5 |
| | | ----------- |
| | | - Fix double-login/session issue (#1487104) |
| | |
| | | |
| | | * The Apache or Lighttpd Webserver |
| | | * .htaccess support allowing overrides for DirectoryIndex |
| | | * PHP Version 5.2 or greater including |
| | | * PHP Version 5.2.1 or greater including |
| | | - PCRE, DOM, JSON, XML, Session, Sockets (required) |
| | | - libiconv (recommended) |
| | | - mbstring, fileinfo, mcrypt (optional) |
| | |
| | | <h3>Checking PHP version</h3> |
| | | <?php |
| | | |
| | | define('MIN_PHP_VERSION', '5.2.0'); |
| | | define('MIN_PHP_VERSION', '5.2.1'); |
| | | if (version_compare(PHP_VERSION, MIN_PHP_VERSION, '>=')) { |
| | | $RCI->pass('Version', 'PHP ' . PHP_VERSION . ' detected'); |
| | | } else { |