aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorDavid M <davidmj@users.sourceforge.net>2006-11-12 14:42:45 +0000
committerDavid M <davidmj@users.sourceforge.net>2006-11-12 14:42:45 +0000
commit90b16076d34cf1475d8210701737b4df371f42eb (patch)
tree8ae52d16a30665af4ecde8e3fae9fa23bfb927ed /phpBB
parentcf34efb06ce62407232d63dd4e73b8afc6e2a4ef (diff)
downloadforums-90b16076d34cf1475d8210701737b4df371f42eb.tar
forums-90b16076d34cf1475d8210701737b4df371f42eb.tar.gz
forums-90b16076d34cf1475d8210701737b4df371f42eb.tar.bz2
forums-90b16076d34cf1475d8210701737b4df371f42eb.tar.xz
forums-90b16076d34cf1475d8210701737b4df371f42eb.zip
blah blah blah :D
git-svn-id: file:///svn/phpbb/trunk@6570 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rwxr-xr-xphpBB/install/install_install.php7
-rwxr-xr-xphpBB/language/en/install.php1
2 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php
index bae24122cd..c282f867a0 100755
--- a/phpBB/install/install_install.php
+++ b/phpBB/install/install_install.php
@@ -1803,6 +1803,13 @@ class install_install extends module
}
break;
+ case 'mysqli':
+ if (version_compare(sqlite_libversion(), '2.8.2', '<'))
+ {
+ $error[] = $lang['INST_ERR_DB_NO_SQLITE'];
+ }
+ break;
+
case 'firebird':
// check the version of FB, use some hackery if we can't get access to the server info
if ($db->service_handle !== false && function_exists('ibase_server_info'))
diff --git a/phpBB/language/en/install.php b/phpBB/language/en/install.php
index d1db579302..86a1761bfe 100755
--- a/phpBB/language/en/install.php
+++ b/phpBB/language/en/install.php
@@ -159,6 +159,7 @@ $lang = array_merge($lang, array(
'INST_ERR_DB_NO_ERROR' => 'No error message given',
'INST_ERR_DB_NO_MYSQL4' => 'The version of MySQL installed on this machine is incompatible with the “MySQL 4.x/5.x” option you have selected. Please try the “MySQL 3.23.x/4.x” option instead.',
'INST_ERR_DB_NO_MYSQLI' => 'The version of MySQL installed on this machine is incompatible with the “MySQL 4.1.x/5.x with MySQLi Extension” option you have selected. Please try the “MySQL 3.23.x/4.x” option instead.',
+ 'INST_ERR_DB_NO_SQLITE' => 'The version of the SQLite extension you have installed is too old, it must be upgraded to at least 2.8.2.',
'INST_ERR_DB_NO_ORACLE' => 'The version of Oracle installed on this machine requires you to set the <var>NLS_CHARACTERSET</var> parameter to <var>UTF8</var>. Either upgrade your installation to 9.2+ or change the parameter.',
'INST_ERR_DB_NO_FIREBIRD' => 'The version of Firebird installed on this machine is older than 2.0, please upgrade to a newer version.',
'INST_ERR_DB_NO_POSTGRES' => 'The database you have selected was not created in <var>UNICODE</var> or <var>UTF8</var> encoding. Try installing with a database in <var>UNICODE</var> or <var>UTF8</var> encoding',