Update Admin\Install page

This commit is contained in:
Visman 2021-12-16 22:37:36 +07:00
parent f278136617
commit bf0ccae33c
3 changed files with 12 additions and 22 deletions

View file

@ -539,7 +539,7 @@ class Install extends Admin
switch ($dbtype) {
case 'mysql_innodb':
case 'mysql':
$versionNeed = self::SQLITE_MIN;
$versionNeed = self::MYSQL_MIN;
$progName = 'MySQL';
break;
@ -576,7 +576,7 @@ class Install extends Admin
isset($stat['server_encoding'])
&& 'UTF8' !== $stat['server_encoding']
) {
$v->addError('Bad database encoding');
$v->addError(['Bad database encoding', 'UTF8']);
}
// база PostgreSQL, порядок сопоставления/сортировки
@ -595,6 +595,14 @@ class Install extends Admin
$v->addError('Bad database ctype');
}
// база SQLite, кодировка базы
if (
isset($stat['encoding'])
&& 'UTF-8' !== $stat['encoding']
) {
$v->addError(['Bad database encoding', 'UTF-8']);
}
return $dbhost;
}

View file

@ -207,20 +207,11 @@ msgstr "Test forum"
msgid "This is just a test forum"
msgstr "This is just a test forum"
msgid "Alert cache"
msgstr "<b>The cache directory is currently not writable!</b> In order for ForkBB to function properly, the directory <em>%s</em> must be writable by PHP. Use chmod to set the appropriate directory permissions. If in doubt, chmod to 0777."
msgid "Alert avatar"
msgstr "<b>The avatar directory is currently not writable!</b> If you want users to be able to upload their own avatar images you must see to it that the directory <em>%s</em> is writable by PHP. You can later choose to save avatar images in a different directory (see Admin/Options). Use chmod to set the appropriate directory permissions. If in doubt, chmod to 0777."
msgid "Alert upload"
msgstr "<b>File uploads appear to be disallowed on this server!</b> If you want users to be able to upload their own avatar images you must enable the file_uploads configuration setting in PHP. Once file uploads have been enabled, avatar uploads can be enabled in Administration/Options/Features."
msgid "Bad database charset"
msgstr "The database must be created with the character encoding <b>utf8mb4</b> (compare <b>utf8mb4_unicode_ci</b>)."
msgid "Bad database encoding"
msgstr "The database must be created with the character encoding <b>UTF8</b>."
msgstr "The database must be created with the character encoding <b>%s</b>."
msgid "Bad database collate"
msgstr "The database must be created with Collation order <b>C</b> (LC_COLLATE)."

View file

@ -207,20 +207,11 @@ msgstr "Тестовый раздел"
msgid "This is just a test forum"
msgstr "Этот раздел создан при установке форума"
msgid "Alert cache"
msgstr "<b>Папка кэша заблокирована для записи!</b> Для правильного функционирования ForkBB директория <em>%s</em> должна быть открыта для записи из PHP. Используйте chmod для установки прав на директорию. Если сомневаетесь, то установите права 0777."
msgid "Alert avatar"
msgstr "<b>Папка для аватар заблокирована для записи!</b> Если вы хотите, чтобы пользователи форума использовали аватары, вы должны разрешить запись в директорию <em>%s</em> для PHP. Позже вы можете сменить директорию хранения аватар (смотрите Админка/Опции). Используйте chmod для установки прав на директорию. Если сомневаетесь, то установите права 0777."
msgid "Alert upload"
msgstr "<b>Загрузка файлов, кажется, выключена на этом сервере!</b> Если вы хотите, чтобы пользователи форума использовали аватары, вы должны разрешить file_uploads в настройках вашего PHP. После разрешения загрузки файлов на сервер, вы можете разрешить использования аватар для пользователей форума (смотрите Админка/Опции)."
msgid "Bad database charset"
msgstr "База данных должна быть создана с указанием кодировки символов <b>utf8mb4</b> (сравнение <b>utf8mb4_unicode_ci</b>)."
msgid "Bad database encoding"
msgstr "База данных должна быть создана с указанием кодировки символов <b>UTF8</b>."
msgstr "База данных должна быть создана с указанием кодировки символов <b>%s</b>."
msgid "Bad database collate"
msgstr "База данных должна быть создана с порядком сопоставления <b>C</b> (LC_COLLATE)."