Export and import settings ¶
$cfg['ZipDump']
¶-
Type: boolean Default value: true
$cfg['GZipDump']
¶-
Type: boolean Default value: true
$cfg['BZipDump']
¶-
Type: boolean Default value: true Defines whether to allow the use of zip/GZip/BZip2 compression when creating a dump file
$cfg['CompressOnFly']
¶-
Type: boolean Default value: true Defines whether to allow on the fly compression for GZip/BZip2 compressed exports. This doesn't affect smaller dumps and allows users to create larger dumps that won't otherwise fit in memory due to php memory limit. Produced files contain more GZip/BZip2 headers, but all normal programs handle this correctly.
$cfg['Export']
¶-
Type: array Default value: array(…) In this array are defined default parameters for export, names of items are similar to texts seen on export page, so you can easily identify what they mean.
$cfg['Export']['format']
¶-
Type: string Default value: 'sql'
Default export format.
$cfg['Export']['method']
¶-
Type: string Default value: 'quick'
Defines how the export form is displayed when it loads. Valid values are:
quick
to display the minimum number of options to configurecustom
to display every available option to configurecustom-no-form
same ascustom
but does not display the option of using quick export
$cfg['Export']['charset']
¶-
Type: string Default value: ''
Defines charset for generated export. By default no charset conversion is done assuming UTF-8.
$cfg['Export']['file_template_table']
¶-
Type: string Default value: '@TABLE@'
Default filename template for table exports.
See also
$cfg['Export']['file_template_database']
¶-
Type: string Default value: '@DATABASE@'
Default filename template for database exports.
See also
$cfg['Export']['file_template_server']
¶-
Type: string Default value: '@SERVER@'
Default filename template for server exports.
See also
$cfg['Import']
¶-
Type: array Default value: array(…) In this array are defined default parameters for import, names of items are similar to texts seen on import page, so you can easily identify what they mean.
$cfg['Import']['charset']
¶-
Type: string Default value: ''
Defines charset for import. By default no charset conversion is done assuming UTF-8.