diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-12-21 10:32:59 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-12-21 10:32:59 +0100 |
commit | 73899662952a1ae91167c070d2a38136a0200c67 (patch) | |
tree | fc8147bd82d9bd72a14c8bea885ad0fda316ac01 /installer | |
parent | 679b375a4685ad84456860accdd6d719531c81cf (diff) |
Add notes about new requirements of the new mysql database driver,
add check in installer (#1488875)
Diffstat (limited to 'installer')
-rw-r--r-- | installer/check.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/installer/check.php b/installer/check.php index d6c9f5c40..886200b84 100644 --- a/installer/check.php +++ b/installer/check.php @@ -130,7 +130,13 @@ foreach ($optional_php_exts as $name => $ext) { $prefix = (PHP_SHLIB_SUFFIX === 'dll') ? 'php_' : ''; foreach ($RCI->supported_dbs as $database => $ext) { if (extension_loaded($ext)) { - $RCI->pass($database); + // MySQL driver requires PHP >= 5.3 (#1488875) + if ($ext == 'pdo_mysql' && version_compare(PHP_VERSION, '5.3.0', '<')) { + $RCI->fail($database, 'PHP >= 5.3 required'); + } + else { + $RCI->pass($database); + } } else { $_ext = $ext_dir . '/' . $prefix . $ext . '.' . PHP_SHLIB_SUFFIX; |