Languages ¶
$cfg['DefaultLang']¶-
Type: string Default value: 'en'Defines the default language to use, if not browser-defined or user- defined. The corresponding language file needs to be in locale/code/LC_MESSAGES/phpmyadmin.mo.
$cfg['DefaultConnectionCollation']¶-
Type: string Default value: 'utf8mb4_general_ci'Defines the default connection collation to use, if not user-defined. See the MySQL documentation for charsets for list of possible values.
$cfg['Lang']¶-
Type: string Default value: not set Force language to use. The corresponding language file needs to be in locale/code/LC_MESSAGES/phpmyadmin.mo.
$cfg['FilterLanguages']¶-
Type: string Default value: ''Limit list of available languages to those matching the given regular expression. For example if you want only Czech and English, you should set filter to
'^(cs|en)'.
$cfg['RecodingEngine']¶-
Type: string Default value: 'auto'You can select here which functions will be used for character set conversion. Possible values are:
- auto - automatically use available one (first is tested iconv, then recode)
- iconv - use iconv or libiconv functions
- recode - use recode_string function
- mb - use mbstring extension
- none - disable encoding conversion
Enabled charset conversion activates a pull-down menu in the Export and Import pages, to choose the character set when exporting a file. The default value in this menu comes from
$cfg['Export']['charset']and$cfg['Import']['charset'].
$cfg['IconvExtraParams']¶-
Type: string Default value: '//TRANSLIT'Specify some parameters for iconv used in charset conversion. See iconv documentation for details. By default
//TRANSLITis used, so that invalid characters will be transliterated.
$cfg['AvailableCharsets']¶-
Type: array Default value: array(…) Available character sets for MySQL conversion. You can add your own (any of supported by recode/iconv) or remove these which you don't use. Character sets will be shown in same order as here listed, so if you frequently use some of these move them to the top.