import v1.0.1 | 2009-07-07

This commit is contained in:
2019-07-17 22:10:53 +02:00
parent b484e522e8
commit 2c1152f0d3
19 changed files with 179 additions and 13 deletions

View File

@ -187,6 +187,9 @@ class Install_CredentialsController extends Monkeys_Controller_Action
if (!is_writable(WEB_DIR . '/captchas')) {
$errors[] = $this->view->translate('The directory "captchas" under the web directory for Community-ID must be writable by the web server user (%s)', $webServerUser);
}
if (!extension_loaded('mysqli')) {
$errors[] = $this->view->translate('You need to have the %s extension installed', '<a href="http://www.php.net/manual/en/mysqli.installation.php">MySQLi</a>');
}
return $errors;
}