Config
Config
php
.. _config:
Configuration
=============
.. seealso::
If a directive is missing from your file, you can just add another line with
the file. This file is for over-writing the defaults; if you wish to use the
default value there's no need to add a line here.
.. note::
.. warning::
Basic settings
--------------
.. config:option:: $cfg['PmaAbsoluteUri']
:type: string
:default: ``''``
.. versionchanged:: 4.6.5
Sets here the complete :term:`URL` (with full path) to your phpMyAdmin
installation's directory. E.g.
``https://www.example.net/path_to_your_phpMyAdmin_directory/``. Note also
that the :term:`URL` on most of web servers are case sensitive (even on
Windows). Don’t forget the trailing slash at the end.
A good test is to browse a table, edit a row and save it. There should be
an error message if phpMyAdmin is having trouble auto–detecting the correct
value. If you get an error that this must be set or if the autodetect code
fails to detect your path, please post a bug report on our bug tracker so
we can improve the code.
.. config:option:: $cfg['PmaNoRelation_DisableWarning']
:type: boolean
:default: false
If you do not want to use those features set this variable to ``true`` to
stop this message from appearing.
.. config:option:: $cfg['AuthLog']
:type: string
:default: ``'auto'``
.. versionadded:: 4.8.0
``auto``
Let phpMyAdmin automatically choose between ``syslog`` and ``php``.
``syslog``
Log using syslog, using AUTH facility, on most systems this ends up
in :file:`/var/log/auth.log`.
``php``
Log into PHP error log.
``sapi``
Log into PHP SAPI logging.
``/path/to/file``
Any other value is treated as a filename and log entries are written there.
.. note::
When logging to a file, make sure its permissions are correctly set
for a web server user, the setup should closely match instructions
described in :config:option:`$cfg['TempDir']`:
.. config:option:: $cfg['AuthLogSuccess']
:type: boolean
:default: false
.. versionadded:: 4.8.0
.. config:option:: $cfg['SuhosinDisableWarning']
:type: boolean
:default: false
You can set this parameter to ``true`` to stop this message from appearing.
.. config:option:: $cfg['LoginCookieValidityDisableWarning']
:type: boolean
:default: false
You can set this parameter to ``true`` to stop this message from appearing.
.. config:option:: $cfg['ServerLibraryDifference_DisableWarning']
:type: boolean
:default: false
.. deprecated:: 4.7.0
This setting was removed as the warning has been removed as well.
You can set this parameter to ``true`` to stop this message from appearing.
.. config:option:: $cfg['ReservedWordDisableWarning']
:type: boolean
:default: false
If you want to turn off this warning, you can set it to ``true`` and
warning will no longer be displayed.
.. config:option:: $cfg['TranslationWarningThreshold']
:type: integer
:default: 80
.. config:option:: $cfg['SendErrorReports']
:type: string
:default: ``'ask'``
The default setting of ``'ask'`` will ask the user everytime there is a new
error report. However you can set this parameter to ``'always'`` to send error
reports without asking for confirmation or you can set it to ``'never'`` to
never send error reports.
.. config:option:: $cfg['ConsoleEnterExecutes']
:type: boolean
:default: false
Setting this to ``true`` allows the user to execute queries by pressing Enter
instead of Ctrl+Enter. A new line can be inserted by pressing Shift + Enter.
.. config:option:: $cfg['AllowThirdPartyFraming']
:type: boolean
:default: false
.. config:option:: $cfg['Servers']
:type: array
:default: one server array with settings listed below
.. note::
.. config:option:: $cfg['Servers'][$i]['host']
:type: string
:default: ``'localhost'``
.. note::
.. seealso::
:config:option:`$cfg['Servers'][$i]['port']`,
<https://dev.mysql.com/doc/refman/5.7/en/connecting.html>
.. config:option:: $cfg['Servers'][$i]['port']
:type: string
:default: ``''``
.. note::
If you use ``localhost`` as the hostname, MySQL ignores this port number
and connects with the socket, so if you want to connect to a port
different from the default port, use ``127.0.0.1`` or the real hostname
in :config:option:`$cfg['Servers'][$i]['host']`.
.. seealso::
:config:option:`$cfg['Servers'][$i]['host']`,
<https://dev.mysql.com/doc/refman/5.7/en/connecting.html>
.. config:option:: $cfg['Servers'][$i]['socket']
:type: string
:default: ``''``
The path to the socket to use. Leave blank for default. To determine
the correct socket, check your MySQL configuration or, using the
:command:`mysql` command–line client, issue the ``status`` command. Among the
resulting information displayed will be the socket used.
.. note::
.. seealso::
:config:option:`$cfg['Servers'][$i]['host']`,
<https://dev.mysql.com/doc/refman/5.7/en/connecting.html>
.. config:option:: $cfg['Servers'][$i]['ssl']
:type: boolean
:default: false
Whether to enable SSL for the connection between phpMyAdmin and the MySQL
server to secure the connection.
.. seealso::
:ref:`ssl`,
:ref:`example-google-ssl`,
:config:option:`$cfg['Servers'][$i]['ssl_key']`,
:config:option:`$cfg['Servers'][$i]['ssl_cert']`,
:config:option:`$cfg['Servers'][$i]['ssl_ca']`,
:config:option:`$cfg['Servers'][$i]['ssl_ca_path']`,
:config:option:`$cfg['Servers'][$i]['ssl_ciphers']`,
:config:option:`$cfg['Servers'][$i]['ssl_verify']`
.. config:option:: $cfg['Servers'][$i]['ssl_key']
:type: string
:default: NULL
Path to the client key file when using SSL for connecting to the MySQL
server. This is used to authenticate the client to the server.
For example:
.. code-block:: php
$cfg['Servers'][$i]['ssl_key'] = '/etc/mysql/server-key.pem';
.. seealso::
:ref:`ssl`,
:ref:`example-google-ssl`,
:config:option:`$cfg['Servers'][$i]['ssl']`,
:config:option:`$cfg['Servers'][$i]['ssl_cert']`,
:config:option:`$cfg['Servers'][$i]['ssl_ca']`,
:config:option:`$cfg['Servers'][$i]['ssl_ca_path']`,
:config:option:`$cfg['Servers'][$i]['ssl_ciphers']`,
:config:option:`$cfg['Servers'][$i]['ssl_verify']`
.. config:option:: $cfg['Servers'][$i]['ssl_cert']
:type: string
:default: NULL
Path to the client certificate file when using SSL for connecting to the
MySQL server. This is used to authenticate the client to the server.
.. seealso::
:ref:`ssl`,
:ref:`example-google-ssl`,
:config:option:`$cfg['Servers'][$i]['ssl']`,
:config:option:`$cfg['Servers'][$i]['ssl_key']`,
:config:option:`$cfg['Servers'][$i]['ssl_ca']`,
:config:option:`$cfg['Servers'][$i]['ssl_ca_path']`,
:config:option:`$cfg['Servers'][$i]['ssl_ciphers']`,
:config:option:`$cfg['Servers'][$i]['ssl_verify']`
.. config:option:: $cfg['Servers'][$i]['ssl_ca']
:type: string
:default: NULL
Path to the CA file when using SSL for connecting to the MySQL server.
.. seealso::
:ref:`ssl`,
:ref:`example-google-ssl`,
:config:option:`$cfg['Servers'][$i]['ssl']`,
:config:option:`$cfg['Servers'][$i]['ssl_key']`,
:config:option:`$cfg['Servers'][$i]['ssl_cert']`,
:config:option:`$cfg['Servers'][$i]['ssl_ca_path']`,
:config:option:`$cfg['Servers'][$i]['ssl_ciphers']`,
:config:option:`$cfg['Servers'][$i]['ssl_verify']`
.. config:option:: $cfg['Servers'][$i]['ssl_ca_path']
:type: string
:default: NULL
.. seealso::
:ref:`ssl`,
:ref:`example-google-ssl`,
:config:option:`$cfg['Servers'][$i]['ssl']`,
:config:option:`$cfg['Servers'][$i]['ssl_key']`,
:config:option:`$cfg['Servers'][$i]['ssl_cert']`,
:config:option:`$cfg['Servers'][$i]['ssl_ca']`,
:config:option:`$cfg['Servers'][$i]['ssl_ciphers']`,
:config:option:`$cfg['Servers'][$i]['ssl_verify']`
.. config:option:: $cfg['Servers'][$i]['ssl_ciphers']
:type: string
:default: NULL
.. seealso::
:ref:`ssl`,
:ref:`example-google-ssl`,
:config:option:`$cfg['Servers'][$i]['ssl']`,
:config:option:`$cfg['Servers'][$i]['ssl_key']`,
:config:option:`$cfg['Servers'][$i]['ssl_cert']`,
:config:option:`$cfg['Servers'][$i]['ssl_ca']`,
:config:option:`$cfg['Servers'][$i]['ssl_ca_path']`,
:config:option:`$cfg['Servers'][$i]['ssl_verify']`
.. config:option:: $cfg['Servers'][$i]['ssl_verify']
:type: boolean
:default: true
.. versionadded:: 4.6.0
If your PHP install uses the MySQL Native Driver (mysqlnd), your
MySQL server is 5.6 or later, and your SSL certificate is self-signed,
there is a chance your SSL connection will fail due to validation.
Setting this to ``false`` will disable the validation check.
Since PHP 5.6.0 it also verifies whether server name matches CN of its
certificate. There is currently no way to disable just this check without
disabling complete SSL verification.
.. warning::
.. note::
.. seealso::
:ref:`ssl`,
:ref:`example-google-ssl`,
:config:option:`$cfg['Servers'][$i]['ssl']`,
:config:option:`$cfg['Servers'][$i]['ssl_key']`,
:config:option:`$cfg['Servers'][$i]['ssl_cert']`,
:config:option:`$cfg['Servers'][$i]['ssl_ca']`,
:config:option:`$cfg['Servers'][$i]['ssl_ca_path']`,
:config:option:`$cfg['Servers'][$i]['ssl_ciphers']`,
:config:option:`$cfg['Servers'][$i]['ssl_verify']`
.. config:option:: $cfg['Servers'][$i]['connect_type']
:type: string
:default: ``'tcp'``
.. deprecated:: 4.7.0
What type connection to use with the MySQL server. Your options are
``'socket'`` and ``'tcp'``. It defaults to tcp as that is nearly guaranteed
to be available on all MySQL servers, while sockets are not supported on
some platforms. To use the socket mode, your MySQL server must be on the
same machine as the Web server.
.. config:option:: $cfg['Servers'][$i]['compress']
:type: boolean
:default: false
.. _controlhost:
.. config:option:: $cfg['Servers'][$i]['controlhost']
:type: string
:default: ``''``
.. seealso::
:config:option:`$cfg['Servers'][$i]['control_*']`
.. _controlport:
.. config:option:: $cfg['Servers'][$i]['controlport']
:type: string
:default: ``''``
.. seealso::
:config:option:`$cfg['Servers'][$i]['control_*']`
.. _controluser:
.. config:option:: $cfg['Servers'][$i]['controluser']
:type: string
:default: ``''``
.. config:option:: $cfg['Servers'][$i]['controlpass']
:type: string
:default: ``''``
.. versionchanged:: 2.2.5
those were called ``stduser`` and ``stdpass``
.. seealso::
:ref:`setup`,
:ref:`authentication_modes`,
:ref:`linked-tables`,
:config:option:`$cfg['Servers'][$i]['pmadb']`,
:config:option:`$cfg['Servers'][$i]['controlhost']`,
:config:option:`$cfg['Servers'][$i]['controlport']`,
:config:option:`$cfg['Servers'][$i]['control_*']`
.. config:option:: $cfg['Servers'][$i]['control_*']
:type: mixed
.. versionadded:: 4.7.0
You can change any MySQL connection setting for control link (used to
access :ref:`linked-tables`) using configuration prefixed with ``control_``.
This can be used to change any aspect of the control connection, which by
default uses same parameters as the user one.
For example you can configure SSL for the control connection:
.. code-block:: php
// Enable SSL
$cfg['Servers'][$i]['control_ssl'] = true;
// Client secret key
$cfg['Servers'][$i]['control_ssl_key'] = '../client-key.pem';
// Client certificate
$cfg['Servers'][$i]['control_ssl_cert'] = '../client-cert.pem';
// Server certification authority
$cfg['Servers'][$i]['control_ssl_ca'] = '../server-ca.pem';
.. seealso::
:config:option:`$cfg['Servers'][$i]['ssl']`,
:config:option:`$cfg['Servers'][$i]['ssl_key']`,
:config:option:`$cfg['Servers'][$i]['ssl_cert']`,
:config:option:`$cfg['Servers'][$i]['ssl_ca']`,
:config:option:`$cfg['Servers'][$i]['ssl_ca_path']`,
:config:option:`$cfg['Servers'][$i]['ssl_ciphers']`,
:config:option:`$cfg['Servers'][$i]['ssl_verify']`
.. config:option:: $cfg['Servers'][$i]['auth_type']
:type: string
:default: ``'cookie'``
.. seealso:: :ref:`authentication_modes`
.. _servers_auth_http_realm:
.. config:option:: $cfg['Servers'][$i]['auth_http_realm']
:type: string
:default: ``''``
.. _servers_user:
.. config:option:: $cfg['Servers'][$i]['user']
:type: string
:default: ``'root'``
.. config:option:: $cfg['Servers'][$i]['password']
:type: string
:default: ``''``
.. _servers_nopassword:
.. config:option:: $cfg['Servers'][$i]['nopassword']
:type: boolean
:default: false
.. deprecated:: 4.7.0
.. _servers_only_db:
.. config:option:: $cfg['Servers'][$i]['only_db']
This setting is an efficient way to lower the server load since the
latter does not need to send MySQL requests to build the available
database list. But **it does not replace the privileges rules of the
MySQL database server**. If set, it just means only these databases
will be displayed but **not that all other databases can't be used.**
.. code-block:: php
.. versionchanged:: 4.0.0
Previous versions permitted to specify the display order of
the database names via this directive.
.. config:option:: $cfg['Servers'][$i]['hide_db']
:type: string
:default: ``''``
.. code-block:: php
$cfg['Servers'][$i]['hide_db'] = '^a';
.. code-block:: php
$cfg['Servers'][$i]['hide_db'] = '^(db1|db2)$';
.. config:option:: $cfg['Servers'][$i]['verbose']
:type: string
:default: ``''``
.. config:option:: $cfg['Servers'][$i]['extension']
:type: string
:default: ``'mysqli'``
.. config:option:: $cfg['Servers'][$i]['pmadb']
:type: string
:default: ``''``
If you are the only user of this phpMyAdmin installation, you can use your
current database to store those special tables; in this case, just put your
current database name in :config:option:`$cfg['Servers'][$i]['pmadb']`. For a
multi-user installation, set this parameter to the name of your central
database containing the phpMyAdmin configuration storage.
.. _bookmark:
.. config:option:: $cfg['Servers'][$i]['bookmarktable']
.. _relation:
.. config:option:: $cfg['Servers'][$i]['relation']
* make clickable, when you browse the master table, the data values that
point to the foreign table;
* display in an optional tool-tip the "display column" when browsing the
master table, if you move the mouse to a column containing a foreign
key (use also the 'table\_info' table); (see :ref:`faqdisplay`)
* in edit/insert mode, display a drop-down list of possible foreign keys
(key value and "display column" are shown) (see :ref:`faq6_21`)
* display links on the table properties page, to check referential
integrity (display missing foreign keys) for each described key;
* in query-by-example, create automatic joins (see :ref:`faq6_6`)
* enable you to get a :term:`PDF` schema of
your database (also uses the table\_coords table).
.. note::
.. _table_info:
.. config:option:: $cfg['Servers'][$i]['table_info']
.. seealso:: :ref:`faqdisplay`
.. _table_coords:
.. config:option:: $cfg['Servers'][$i]['table_coords']
The designer feature can save your page layout; by pressing the "Save page" or
"Save page as"
button in the expanding designer menu, you can customize the layout and have it
loaded the next
time you use the designer. That layout is stored in this table. Furthermore,
this table is also
required for using the PDF relation export feature, see
:config:option:`$cfg['Servers'][$i]['pdf\_pages']` for additional details.
.. config:option:: $cfg['Servers'][$i]['pdf_pages']
Since release 2.3.0 you can have phpMyAdmin create :term:`PDF` pages
showing the relations between your tables. Further, the designer interface
permits visually managing the relations. To do this it needs two tables
"pdf\_pages" (storing information about the available :term:`PDF` pages)
and "table\_coords" (storing coordinates where each table will be placed on
a :term:`PDF` schema output). You must be using the "relation" feature.
.. seealso:: :ref:`faqpdf`.
.. _col_com:
.. config:option:: $cfg['Servers'][$i]['column_info']
Starting with release 2.5.0, comments are consequently used on the table
property pages and table browse view, showing up as tool-tips above the
column name (properties page) or embedded within the header of table in
browse view. They can also be shown in a table dump. Please see the
relevant configuration directives later on.
.. code-block:: mysql
.. note::
.. _history:
.. config:option:: $cfg['Servers'][$i]['history']
Since release 2.5.0 you can store your :term:`SQL` history, which means all
queries you entered manually into the phpMyAdmin interface. If you don't
want to use a table-based history, you can use the JavaScript-based
history.
Using that, all your history items are deleted when closing the window.
Using :config:option:`$cfg['QueryHistoryMax']` you can specify an amount of
history items you want to have on hold. On every login, this list gets cut
to the maximum amount.
.. _recent:
.. config:option:: $cfg['Servers'][$i]['recent']
Since release 3.5.0 you can show recently used tables in the
navigation panel. It helps you to jump across table directly, without
the need to select the database, and then select the table. Using
:config:option:`$cfg['NumRecentTables']` you can configure the maximum number
of recent tables shown. When you select a table from the list, it will jump to
the page specified in :config:option:`$cfg['NavigationTreeDefaultTabTable']`.
Without configuring the storage, you can still access the recently used tables,
but it will disappear after you logout.
.. _favorite:
.. config:option:: $cfg['Servers'][$i]['favorite']
Since release 4.2.0 you can show a list of selected tables in the
navigation panel. It helps you to jump to the table directly, without
the need to select the database, and then select the table. When you
select a table from the list, it will jump to the page specified in
:config:option:`$cfg['NavigationTreeDefaultTabTable']`.
You can add tables to this list or remove tables from it in database
structure page by clicking on the star icons next to table names. Using
:config:option:`$cfg['NumFavoriteTables']` you can configure the maximum
number of favorite tables shown.
Without configuring the storage, you can still access the favorite tables,
but it will disappear after you logout.
.. _table_uiprefs:
.. config:option:: $cfg['Servers'][$i]['table_uiprefs']
.. config:option:: $cfg['Servers'][$i]['users']
.. config:option:: $cfg['Servers'][$i]['usergroups']
Since release 4.1.0 you can create different user groups with menu items
attached to them. Users can be assigned to these groups and the logged in
user would only see menu items configured to the usergroup he is assigned to.
To do this it needs two tables "usergroups" (storing allowed menu items for
each
user group) and "users" (storing users and their assignments to user groups).
.. seealso:: :ref:`configurablemenus`
.. _navigationhiding:
.. config:option:: $cfg['Servers'][$i]['navigationhiding']
Since release 4.1.0 you can hide/show items in the navigation tree.
.. _central_columns:
.. config:option:: $cfg['Servers'][$i]['central_columns']
Since release 4.3.0 you can have a central list of columns per database.
You can add/remove columns to the list as per your requirement. These columns
in the central list will be available to use while you create a new column for
a table or create a table itself. You can select a column from central list
while creating a new column, it will save you from writing the same column
definition
over again or from writing different names for similar column.
.. _designer_settings:
.. config:option:: $cfg['Servers'][$i]['designer_settings']
:type: string or false
:default: ``''``
.. _savedsearches:
.. config:option:: $cfg['Servers'][$i]['savedsearches']
Since release 4.2.0 you can save and load query-by-example searches from the
Database > Query panel.
.. _export_templates:
.. config:option:: $cfg['Servers'][$i]['export_templates']
Since release 4.5.0 you can save and load export templates.
.. _tracking:
.. config:option:: $cfg['Servers'][$i]['tracking']
:type: string or false
:default: ``''``
.. _tracking2:
.. config:option:: $cfg['Servers'][$i]['tracking_version_auto_create']
:type: boolean
:default: false
Whether the tracking mechanism creates versions for tables and views
automatically.
and no version exists for it, the mechanism will create a version for
you automatically.
.. _tracking3:
.. config:option:: $cfg['Servers'][$i]['tracking_default_statements']
:type: string
:default: ``'CREATE TABLE,ALTER TABLE,DROP TABLE,RENAME TABLE,CREATE INDEX,DROP
INDEX,INSERT,UPDATE,DELETE,TRUNCATE,REPLACE,CREATE VIEW,ALTER VIEW,DROP VIEW,CREATE
DATABASE,ALTER DATABASE,DROP DATABASE'``
:type: boolean
:default: true
.. _tracking5:
.. config:option:: $cfg['Servers'][$i]['tracking_add_drop_table']
:type: boolean
:default: true
.. _tracking6:
.. config:option:: $cfg['Servers'][$i]['tracking_add_drop_database']
:type: boolean
:default: true
.. _userconfig:
.. config:option:: $cfg['Servers'][$i]['userconfig']
.. config:option:: $cfg['Servers'][$i]['MaxTableUiprefs']
:type: integer
:default: 100
.. config:option:: $cfg['Servers'][$i]['SessionTimeZone']
:type: string
:default: ``''``
Sets the time zone used by phpMyAdmin. Leave blank to use the time zone of your
database server. Possible values are explained at
https://dev.mysql.com/doc/refman/5.7/en/time-zone-support.html
This is useful when your database server uses a time zone which is different
from the
time zone you want to use in phpMyAdmin.
.. config:option:: $cfg['Servers'][$i]['AllowRoot']
:type: boolean
:default: true
.. config:option:: $cfg['Servers'][$i]['AllowNoPassword']
:type: boolean
:default: false
.. _servers_allowdeny_order:
.. config:option:: $cfg['Servers'][$i]['AllowDeny']['order']
:type: string
:default: ``''``
.. _servers_allowdeny_rules:
.. config:option:: $cfg['Servers'][$i]['AllowDeny']['rules']
.. code-block:: none
.. code-block:: none
Examples:
.. code-block:: none
$cfg['Servers'][$i]['AllowDeny']['order'] = 'allow,deny';
$cfg['Servers'][$i]['AllowDeny']['rules'] = array('allow bob from all');
// Allow only 'bob' to connect from any host
$cfg['Servers'][$i]['AllowDeny']['order'] = 'allow,deny';
$cfg['Servers'][$i]['AllowDeny']['rules'] = array('allow mary from
192.168.100.[50-100]');
// Allow only 'mary' to connect from host 192.168.100.50 through
192.168.100.100
$cfg['Servers'][$i]['AllowDeny']['order'] = 'allow,deny';
$cfg['Servers'][$i]['AllowDeny']['rules'] = array('allow % from 192.168.[5-
6].10');
// Allow any user to connect from host 192.168.5.10 or 192.168.6.10
$cfg['Servers'][$i]['AllowDeny']['order'] = 'allow,deny';
$cfg['Servers'][$i]['AllowDeny']['rules'] = array('allow root from
192.168.5.50','allow % from 192.168.6.10');
// Allow any user to connect from 192.168.6.10, and additionally allow root
to connect from 192.168.5.50
.. config:option:: $cfg['Servers'][$i]['DisableIS']
:type: boolean
:default: false
.. note::
Enabling this option might give you a big performance boost on older
MySQL servers.
.. config:option:: $cfg['Servers'][$i]['SignonScript']
:type: string
:default: ``''``
.. versionadded:: 3.5.0
.. seealso:: :ref:`auth_signon`
.. config:option:: $cfg['Servers'][$i]['SignonSession']
:type: string
:default: ``''``
.. seealso:: :ref:`auth_signon`
.. config:option:: $cfg['Servers'][$i]['SignonCookieParams']
:type: array
:default: ``array()``
.. versionadded:: 4.7.0
.. seealso:: :ref:`auth_signon`
.. config:option:: $cfg['Servers'][$i]['SignonURL']
:type: string
:default: ``''``
.. seealso:: :ref:`auth_signon`
.. config:option:: $cfg['Servers'][$i]['LogoutURL']
:type: string
:default: ``''``
Generic settings
----------------
.. config:option:: $cfg['DisableShortcutKeys']
:type: boolean
:default: false
.. config:option:: $cfg['ServerDefault']
:type: integer
:default: 1
If you have more than one server configured, you can set
:config:option:`$cfg['ServerDefault']` to any one of them to autoconnect to
that
server when phpMyAdmin is started, or set it to 0 to be given a list
of servers without logging in.
.. config:option:: $cfg['VersionCheck']
:type: boolean
:default: true
Enables check for latest versions using JavaScript on the main phpMyAdmin
page or by directly accessing :file:`version_check.php`.
.. note::
.. config:option:: $cfg['ProxyUrl']
:type: string
:default: ""
The url of the proxy to be used when phpmyadmin needs to access the outside
internet such as when retrieving the latest version info or submitting error
reports. You need this if the server where phpMyAdmin is installed does not
have direct access to the internet.
The format is: "hostname:portnumber"
.. config:option:: $cfg['ProxyUser']
:type: string
:default: ""
.. config:option:: $cfg['ProxyPass']
:type: string
:default: ""
.. config:option:: $cfg['MaxDbList']
:type: integer
:default: 100
.. config:option:: $cfg['MaxTableList']
:type: integer
:default: 250
.. config:option:: $cfg['ShowHint']
:type: boolean
:default: true
Whether or not to show hints (for example, hints when hovering over
table headers).
.. config:option:: $cfg['MaxCharactersInDisplayedSQL']
:type: integer
:default: 1000
.. config:option:: $cfg['PersistentConnections']
:type: boolean
:default: false
.. config:option:: $cfg['ForceSSL']
:type: boolean
:default: false
.. deprecated:: 4.6.0
.. note::
In some setups (like separate SSL proxy or load balancer) you might
have to set :config:option:`$cfg['PmaAbsoluteUri']` for correct
redirection.
.. config:option:: $cfg['ExecTimeLimit']
.. config:option:: $cfg['SessionSavePath']
:type: string
:default: ``''``
.. warning::
.. config:option:: $cfg['MemoryLimit']
You can also use any string as in :file:`php.ini`, eg. '16M'. Ensure you
don't omit the suffix (16 means 16 bytes!)
.. config:option:: $cfg['SkipLockedTables']
:type: boolean
:default: false
Mark used tables and make it possible to show databases with locked
tables (since MySQL 3.23.30).
.. config:option:: $cfg['ShowSQL']
:type: boolean
:default: true
.. config:option:: $cfg['RetainQueryBox']
:type: boolean
:default: false
.. config:option:: $cfg['CodemirrorEnable']
:type: boolean
:default: true
Defines whether to use a Javascript code editor for SQL query boxes.
CodeMirror provides syntax highlighting and line numbers. However,
middle-clicking for pasting the clipboard contents in some Linux
distributions (such as Ubuntu) is not supported by all browsers.
.. config:option:: $cfg['DefaultForeignKeyChecks']
:type: string
:default: ``'default'``
.. config:option:: $cfg['AllowUserDropDatabase']
:type: boolean
:default: false
.. warning::
:type: boolean
:default: true
.. config:option:: $cfg['UseDbSearch']
:type: boolean
:default: true
.. config:option:: $cfg['IgnoreMultiSubmitErrors']
:type: boolean
:default: false
.. config:option:: $cfg['blowfish_secret']
:type: string
:default: ``''``
The "cookie" auth\_type uses AES algorithm to encrypt the password. If you
are using the "cookie" auth\_type, enter here a random passphrase of your
choice. It will be used internally by the AES algorithm: you won’t be
prompted for this passphrase.
The secret should be 32 characters long. Using shorter will lead to weaker
security
of encrypted cookies, using longer will cause no harm.
.. note::
.. versionchanged:: 3.1.0
Since version 3.1.0 phpMyAdmin can generate this on the fly, but it
makes a bit weaker security as this generated secret is stored in
session and furthermore it makes impossible to recall user name from
cookie.
.. config:option:: $cfg['LoginCookieRecall']
:type: boolean
:default: true
.. config:option:: $cfg['LoginCookieValidity']
Define how long a login cookie is valid. Please note that php
configuration option `session.gc\_maxlifetime
<https://secure.php.net/manual/en/session.configuration.php#ini.session.gc-
maxlifetime>`_ might limit session validity and if the session is lost,
the login cookie is also invalidated. So it is a good idea to set
``session.gc_maxlifetime`` at least to the same value of
:config:option:`$cfg['LoginCookieValidity']`.
.. config:option:: $cfg['LoginCookieStore']
.. config:option:: $cfg['LoginCookieDeleteAll']
:type: boolean
:default: true
.. _AllowArbitraryServer:
.. config:option:: $cfg['AllowArbitraryServer']
:type: boolean
:default: false
.. note::
Please use this carefully, as this may allow users access to MySQL servers
behind the firewall where your :term:`HTTP` server is placed.
See also :config:option:`$cfg['ArbitraryServerRegexp']`.
.. config:option:: $cfg['ArbitraryServerRegexp']
:type: string
:default: ``''``
Restricts the MySQL servers to which the user can log in when
:config:option:`$cfg['AllowArbitraryServer']` is enabled by
matching the :term:`IP` or the hostname of the MySQL server
to the given regular expression. The regular expression must be enclosed
with a delimiter character.
**Examples:**
.. code-block:: php
.. note::
The whole server name is matched, it can include port as well. Due to
way MySQL is permissive in connection parameters, it is possible to use
connection strings as ```server:3306-mysql```. This can be used to
bypass regullar expression by the suffix, while connecting to another
server.
.. config:option:: $cfg['CaptchaLoginPublicKey']
:type: string
:default: ``''``
The public key for the reCaptcha service that can be obtained from
https://www.google.com/recaptcha/intro/.
.. config:option:: $cfg['CaptchaLoginPrivateKey']
:type: string
:default: ``''``
The private key for the reCaptcha service that can be obtain from
https://www.google.com/recaptcha/intro/.
.. config:option:: $cfg['ShowDatabasesNavigationAsTree']
:type: boolean
:default: true
.. config:option:: $cfg['FirstLevelNavigationItems']
:type: integer
:default: 100
The number of first level databases that can be displayed on each page
of navigation tree.
.. config:option:: $cfg['MaxNavigationItems']
:type: integer
:default: 50
The number of items (tables, columns, indexes) that can be displayed on each
page of the navigation tree.
.. config:option:: $cfg['NavigationTreeEnableGrouping']
:type: boolean
:default: true
.. config:option:: $cfg['NavigationTreeDbSeparator']
:type: string
:default: ``'_'``
The string used to separate the parts of the database name when
showing them in a tree.
.. config:option:: $cfg['NavigationTreeTableSeparator']
Defines a string to be used to nest table spaces. This means if you have
tables like ``first__second__third`` this will be shown as a three-level
hierarchy like: first > second > third. If set to false or empty, the
feature is disabled. NOTE: You should not use this separator at the
beginning or end of a table name or multiple times after another without
any other characters in between.
.. config:option:: $cfg['NavigationTreeTableLevel']
:type: integer
:default: 1
.. config:option:: $cfg['NumRecentTables']
:type: integer
:default: 10
.. config:option:: $cfg['NumFavoriteTables']
:type: integer
:default: 10
.. config:option:: $cfg['ZeroConf']
:type: boolean
:default: true
Enables Zero Configuration mode in which the user will be offered a choice to
create phpMyAdmin configuration storage in the current database
or use the existing one, if already present.
.. config:option:: $cfg['NavigationLinkWithMainPanel']
:type: boolean
:default: true
.. config:option:: $cfg['NavigationDisplayLogo']
:type: boolean
:default: true
.. config:option:: $cfg['NavigationLogoLink']
:type: string
:default: ``'index.php'``
Enter :term:`URL` where logo in the navigation panel will point to.
For use especially with self made theme which changes this.
For relative/internal URLs, you need to have leading `` ./ `` or trailing
characters `` ? `` such as ``'./sql.php?'``.
For external URLs, you should include URL protocol schemes (``http`` or
``https``) with absolute URLs.
.. config:option:: $cfg['NavigationLogoLinkWindow']
:type: string
:default: ``'main'``
.. config:option:: $cfg['NavigationTreeDisplayItemFilterMinimum']
:type: integer
:default: 30
To disable the filter completely some high number can be used (e.g. 9999)
.. config:option:: $cfg['NavigationTreeDisplayDbFilterMinimum']
:type: integer
:default: 30
.. config:option:: $cfg['NavigationDisplayServers']
:type: boolean
:default: true
.. config:option:: $cfg['DisplayServersList']
:type: boolean
:default: false
.. config:option:: $cfg['NavigationTreeDefaultTabTable']
:type: string
:default: ``'structure'``
Defines the tab displayed by default when clicking the small icon next
to each table name in the navigation panel. The possible values are the
localized equivalent of:
* ``structure``
* ``sql``
* ``search``
* ``insert``
* ``browse``
.. config:option:: $cfg['NavigationTreeDefaultTabTable2']
:type: string
:default: null
Defines the tab displayed by default when clicking the second small icon next
to each table name in the navigation panel. The possible values are the
localized equivalent of:
* ``(empty)``
* ``structure``
* ``sql``
* ``search``
* ``insert``
* ``browse``
.. config:option:: $cfg['NavigationTreeEnableExpansion']
:type: boolean
:default: true
.. config:option:: $cfg['NavigationTreeShowTables']
:type: boolean
:default: true
.. config:option:: $cfg['NavigationTreeShowViews']
:type: boolean
:default: true
.. config:option:: $cfg['NavigationTreeShowFunctions']
:type: boolean
:default: true
.. config:option:: $cfg['NavigationTreeShowProcedures']
:type: boolean
:default: true
.. config:option:: $cfg['NavigationTreeShowEvents']
:type: boolean
:default: true
.. config:option:: $cfg['NavigationWidth']
:type: integer
:default: 240
Main panel
----------
.. config:option:: $cfg['ShowStats']
:type: boolean
:default: true
.. config:option:: $cfg['ShowServerInfo']
:type: boolean
:default: true
.. config:option:: $cfg['ShowPhpInfo']
:type: boolean
:default: false
Please note that to block the usage of ``phpinfo()`` in scripts, you have to
put this in your :file:`php.ini`:
.. code-block:: ini
disable_functions = phpinfo()
.. warning::
Enabling phpinfo page will leak quite a lot of information about server
setup. Is it not recommended to enable this on shared installations.
This might also make easier some remote attacks on your installations,
so enable this only when needed.
.. config:option:: $cfg['ShowChgPassword']
:type: boolean
:default: true
Please note that enabling the :guilabel:`Change password` link has no effect
with config authentication mode: because of the hard coded password value
in the configuration file, end users can't be allowed to change their
passwords.
.. config:option:: $cfg['ShowCreateDb']
:type: boolean
:default: true
Defines whether to display the form for creating database or not at the
starting main (right) frame. This setting does not check MySQL commands
entered directly.
.. config:option:: $cfg['ShowGitRevision']
:type: boolean
:default: true
Defines whether to display informations about the current Git revision (if
applicable) on the main panel.
.. config:option:: $cfg['MysqlMinVersion']
:type: array
Database structure
------------------
.. config:option:: $cfg['ShowDbStructureCreation']
:type: boolean
:default: false
.. config:option:: $cfg['ShowDbStructureLastUpdate']
:type: boolean
:default: false
Defines whether the database structure page (tables list) has a "Last
update" column that displays when each table was last updated.
.. config:option:: $cfg['ShowDbStructureLastCheck']
:type: boolean
:default: false
Defines whether the database structure page (tables list) has a "Last
check" column that displays when each table was last checked.
.. config:option:: $cfg['HideStructureActions']
:type: boolean
:default: true
Defines whether the table structure actions are hidden under a "More"
drop-down.
.. config:option:: $cfg['ShowColumnComments']
:type: boolean
:default: true
Browse mode
-----------
.. config:option:: $cfg['TableNavigationLinksMode']
:type: string
:default: ``'icons'``
.. config:option:: $cfg['ActionLinksMode']
:type: string
:default: ``'both'``
If set to ``icons``, will display icons instead of text for db and table
properties links (like :guilabel:`Browse`, :guilabel:`Select`,
:guilabel:`Insert`, ...). Can be set to ``'both'``
if you want icons AND text. When set to ``text``, will only show text.
.. config:option:: $cfg['RowActionType']
:type: string
:default: ``'both'``
Whether to display icons or text or both icons and text in table row action
segment. Value can be either of ``'icons'``, ``'text'`` or ``'both'``.
.. config:option:: $cfg['ShowAll']
:type: boolean
:default: false
.. config:option:: $cfg['MaxRows']
:type: integer
:default: 25
.. config:option:: $cfg['Order']
:type: string
:default: ``'SMART'``
Defines whether columns are displayed in ascending (``ASC``) order, in
descending (``DESC``) order or in a "smart" (``SMART``) order - I.E.
descending order for columns of type TIME, DATE, DATETIME and
TIMESTAMP, ascending order else- by default.
.. versionchanged:: 3.4.0
Since phpMyAdmin 3.4.0 the default value is ``'SMART'``.
.. config:option:: $cfg['GridEditing']
:type: string
:default: ``'double-click'``
.. config:option:: $cfg['RelationalDisplay']
:type: string
:default: ``'K'``
Defines the initial behavior for Options > Relational. ``K``, which
is the default, displays the key while ``D`` shows the display column.
.. config:option:: $cfg['SaveCellsAtOnce']
:type: boolean
:default: false
Defines whether or not to save all edited cells at once for grid
editing.
Editing mode
------------
.. config:option:: $cfg['ProtectBinary']
.. config:option:: $cfg['ShowFunctionFields']
:type: boolean
:default: true
.. config:option:: $cfg['ShowFieldTypesInDataEditView']
:type: boolean
:default: true
.. config:option:: $cfg['InsertRows']
:type: integer
:default: 2
Defines the default number of rows to be entered from the Insert page.
Users can manually change this from the bottom of that page to add or remove
blank rows.
.. config:option:: $cfg['ForeignKeyMaxLimit']
:type: integer
:default: 100
If there are fewer items than this in the set of foreign keys, then a
drop-down box of foreign keys is presented, in the style described by
the :config:option:`$cfg['ForeignKeyDropdownOrder']` setting.
.. config:option:: $cfg['ForeignKeyDropdownOrder']
:type: array
:default: array('content-id', 'id-content')
For the foreign key drop-down fields, there are several methods of
display, offering both the key and value data. The contents of the
array should be one or both of the following strings: ``content-id``,
``id-content``.
.. config:option:: $cfg['ZipDump']
:type: boolean
:default: true
.. config:option:: $cfg['GZipDump']
:type: boolean
:default: true
.. config:option:: $cfg['BZipDump']
:type: boolean
:default: true
.. config:option:: $cfg['CompressOnFly']
:type: boolean
:default: true
.. config:option:: $cfg['Export']
:type: array
:default: array(...)
.. config:option:: $cfg['Export']['format']
:type: string
:default: ``'sql'``
.. config:option:: $cfg['Export']['method']
:type: string
:default: ``'quick'``
Defines how the export form is displayed when it loads. Valid values
are:
.. config:option:: $cfg['Export']['charset']
:type: string
:default: ``''``
.. config:option:: $cfg['Export']['file_template_table']
:type: string
:default: ``'@TABLE@'``
.. seealso:: :ref:`faq6_27`
.. config:option:: $cfg['Export']['file_template_database']
:type: string
:default: ``'@DATABASE@'``
Default filename template for database exports.
.. seealso:: :ref:`faq6_27`
.. config:option:: $cfg['Export']['file_template_server']
:type: string
:default: ``'@SERVER@'``
.. seealso:: :ref:`faq6_27`
.. config:option:: $cfg['Import']
:type: array
:default: array(...)
.. config:option:: $cfg['Import']['charset']
:type: string
:default: ``''``
.. config:option:: $cfg['TabsMode']
:type: string
:default: ``'both'``
.. config:option:: $cfg['PropertiesNumColumns']
:type: integer
:default: 1
How many columns will be utilized to display the tables on the database
property view? When setting this to a value larger than 1, the type of the
database will be omitted for more display space.
.. config:option:: $cfg['DefaultTabServer']
:type: string
:default: ``'welcome'``
Defines the tab displayed by default on server view. The possible values
are the localized equivalent of:
.. config:option:: $cfg['DefaultTabDatabase']
:type: string
:default: ``'structure'``
Defines the tab displayed by default on database view. The possible values
are the localized equivalent of:
* ``structure``
* ``sql``
* ``search``
* ``operations``
.. config:option:: $cfg['DefaultTabTable']
:type: string
:default: ``'browse'``
Defines the tab displayed by default on table view. The possible values
are the localized equivalent of:
* ``structure``
* ``sql``
* ``search``
* ``insert``
* ``browse``
PDF Options
-----------
.. config:option:: $cfg['PDFPageSizes']
:type: array
:default: ``array('A3', 'A4', 'A5', 'letter', 'legal')``
.. config:option:: $cfg['PDFDefaultPageSize']
:type: string
:default: ``'A4'``
Default page size to use when creating PDF pages. Valid values are any
listed in :config:option:`$cfg['PDFPageSizes']`.
Languages
---------
.. config:option:: $cfg['DefaultLang']
:type: string
:default: ``'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.
.. config:option:: $cfg['DefaultConnectionCollation']
:type: string
:default: ``'utf8mb4_general_ci'``
.. config:option:: $cfg['Lang']
:type: string
:default: not set
.. config:option:: $cfg['FilterLanguages']
:type: string
:default: ``''``
.. config:option:: $cfg['RecodingEngine']
:type: string
:default: ``'auto'``
You can select here which functions will be used for character set
conversion. Possible values are:
.. config:option:: $cfg['IconvExtraParams']
:type: string
:default: ``'//TRANSLIT'``
.. config:option:: $cfg['AvailableCharsets']
:type: array
:default: 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.
.. config:option:: $cfg['OBGzip']
:type: string/boolean
:default: ``'auto'``
.. config:option:: $cfg['TrustedProxies']
:type: array
:default: array()
.. code-block:: php
.. config:option:: $cfg['GD2Available']
:type: string
:default: ``'auto'``
.. config:option:: $cfg['CheckConfigurationPermissions']
:type: boolean
:default: true
.. config:option:: $cfg['LinkLengthLimit']
:type: integer
:default: 1000
Limit for length of :term:`URL` in links. When length would be above this
limit, it is replaced by form with button. This is required as some web
servers (:term:`IIS`) have problems with long :term:`URL` .
.. config:option:: $cfg['CSPAllow']
:type: string
:default: ``''``
This can be useful when you want to include some external JavaScript files
in :file:`config.footer.inc.php` or :file:`config.header.inc.php`, which
would be normally not allowed by Content Security Policy.
.. code-block:: php
.. versionadded:: 4.0.4
.. config:option:: $cfg['DisableMultiTableMaintenance']
:type: boolean
:default: false
In the database Structure page, it's possible to mark some tables then
choose an operation like optimizing for many tables. This can slow
down a server; therefore, setting this to ``true`` prevents this kind
of multiple maintenance operation.
Theme settings
--------------
Design customization
--------------------
.. config:option:: $cfg['NavigationTreePointerEnable']
:type: boolean
:default: true
When set to true, hovering over an item in the navigation panel causes that
item to be marked
(the background is highlighted).
.. config:option:: $cfg['BrowsePointerEnable']
:type: boolean
:default: true
When set to true, hovering over a row in the Browse page causes that row to be
marked (the background
is highlighted).
.. config:option:: $cfg['BrowseMarkerEnable']
:type: boolean
:default: true
When set to true, a data row is marked (the background is highlighted) when the
row is selected
with the checkbox.
.. config:option:: $cfg['LimitChars']
:type: integer
:default: 50
.. config:option:: $cfg['RowActionLinks']
:type: string
:default: ``'left'``
Defines the place where table row links (Edit, Copy, Delete) would be
put when tables contents are displayed (you may have them displayed at
the left side, right side, both sides or nowhere).
.. config:option:: $cfg['RowActionLinksWithoutUnique']
:type: boolean
:default: false
Defines whether to show row links (Edit, Copy, Delete) and checkboxes
for multiple row operations even when the selection does not have a
:term:`unique key`.
Using row actions in the absence of a unique key may result in different/more
rows being affected since there is no guaranteed way to select the exact
row(s).
.. config:option:: $cfg['RememberSorting']
:type: boolean
:default: true
.. config:option:: $cfg['TablePrimaryKeyOrder']
:type: string
:default: ``'NONE'``
This defines the default sort order for the tables, having a :term:`primary
key`,
when there is no sort order defines externally.
Acceptable values : ['NONE', 'ASC', 'DESC']
.. config:option:: $cfg['ShowBrowseComments']
:type: boolean
:default: true
.. config:option:: $cfg['ShowPropertyComments']
:type: boolean
:default: true
Text fields
-----------
.. config:option:: $cfg['CharEditing']
:type: string
:default: ``'input'``
Defines which type of editing controls should be used for CHAR and
VARCHAR columns. Applies to data editing and also to the default values
in structure editing. Possible values are:
.. config:option:: $cfg['MinSizeForInputField']
:type: integer
:default: 4
Defines the minimum size for input fields generated for CHAR and
VARCHAR columns.
.. config:option:: $cfg['MaxSizeForInputField']
:type: integer
:default: 60
Defines the maximum size for input fields generated for CHAR and
VARCHAR columns.
.. config:option:: $cfg['TextareaCols']
:type: integer
:default: 40
.. config:option:: $cfg['TextareaRows']
:type: integer
:default: 15
.. config:option:: $cfg['CharTextareaCols']
:type: integer
:default: 40
.. config:option:: $cfg['CharTextareaRows']
:type: integer
:default: 2
Number of columns and rows for the textareas. This value will be
emphasized (\*2) for :term:`SQL` query
textareas and (\*1.25) for :term:`SQL`
textareas inside the query window.
.. config:option:: $cfg['LongtextDoubleTextarea']
:type: boolean
:default: true
Defines whether textarea for LONGTEXT columns should have double size.
.. config:option:: $cfg['TextareaAutoSelect']
:type: boolean
:default: false
.. config:option:: $cfg['EnableAutocompleteForTablesAndColumns']
:type: boolean
:default: true
.. config:option:: $cfg['SQLQuery']['Edit']
:type: boolean
:default: true
.. config:option:: $cfg['SQLQuery']['Explain']
:type: boolean
:default: true
.. config:option:: $cfg['SQLQuery']['ShowAsPHP']
:type: boolean
:default: true
Whether to display a link to wrap a query in PHP code in any SQL Query
box.
.. config:option:: $cfg['SQLQuery']['Refresh']
:type: boolean
:default: true
.. _web-dirs:
If PHP is running in safe mode, all directories must be owned by the same user
as the owner of the phpMyAdmin scripts.
For security reasons, all directories should be outside the tree published by
webserver. If you cannot avoid having this directory published by webserver,
limit access to it either by web server configuration (for example using
.htaccess or web.config files) or place at least an empty :file:`index.html`
file there, so that directory listing is not possible. However as long as the
directory is accessible by web server, an attacker can guess filenames to download
the files.
.. config:option:: $cfg['UploadDir']
:type: string
:default: ``''``
The name of the directory where :term:`SQL` files have been uploaded by
other means than phpMyAdmin (for example, ftp). Those files are available
under a drop-down box when you click the database or table name, then the
Import tab.
If
you want different directory for each user, %u will be replaced with
username.
Please note that the file names must have the suffix ".sql"
(or ".sql.bz2" or ".sql.gz" if support for compressed formats is
enabled).
.. warning::
.. seealso::
.. config:option:: $cfg['SaveDir']
:type: string
:default: ``''``
If you want different directory for each user, %u will be replaced with
username.
Please note that the directory must exist and has to be writable for
the user running webserver.
.. warning::
.. config:option:: $cfg['TempDir']
:type: string
:default: ``'./tmp/'``
The name of the directory where temporary files can be stored. It is used
for several purposes, currently:
.. code-block:: sh
If you cannot change owner of the directory, you can achieve a similar
setup using :term:`ACL`:
.. code-block:: sh
If neither of above works for you, you can still make the directory
:command:`chmod 777`, but it might impose risk of other users on system
reading and writing data in this directory.
.. warning::
.. config:option:: $cfg['RepeatCells']
:type: integer
:default: 100
.. config:option:: $cfg['QueryHistoryDB']
:type: boolean
:default: false
.. config:option:: $cfg['QueryHistoryMax']
:type: integer
:default: 25
When using the JavaScript based query window, it will always get updated
when you click on a new table/db to browse and will focus if you click on
:guilabel:`Edit SQL` after using a query. You can suppress updating the
query window by checking the box :guilabel:`Do not overwrite this query
from outside the window` below the query textarea. Then you can browse
tables/databases in the background without losing the contents of the
textarea, so this is especially useful when composing a query with tables
you first have to look in. The checkbox will get automatically checked
whenever you change the contents of the textarea. Please uncheck the button
whenever you definitely want the query window to get updated even though
you have made alterations.
.. config:option:: $cfg['BrowseMIME']
:type: boolean
:default: true
Enable :ref:`transformations`.
.. config:option:: $cfg['MaxExactCount']
:type: integer
:default: 50000
For InnoDB tables, determines for how large tables phpMyAdmin should
get the exact row count using ``SELECT COUNT``. If the approximate row
count as returned by ``SHOW TABLE STATUS`` is smaller than this value,
``SELECT COUNT`` will be used, otherwise the approximate count will be
used.
.. versionchanged:: 4.8.0
.. versionchanged:: 4.2.6
.. seealso:: :ref:`faq3_11`
.. config:option:: $cfg['MaxExactCountViews']
:type: integer
:default: 0
For VIEWs, since obtaining the exact count could have an impact on
performance, this value is the maximum to be displayed, using a
``SELECT COUNT ... LIMIT``. Setting this to 0 bypasses any row
counting.
.. config:option:: $cfg['NaturalOrder']
:type: boolean
:default: true
.. config:option:: $cfg['InitialSlidersState']
:type: string
:default: ``'closed'``
.. config:option:: $cfg['UserprefsDisallow']
:type: array
:default: array()
.. config:option:: $cfg['UserprefsDeveloperTab']
:type: boolean
:default: false
Page titles
-----------
.. config:option:: $cfg['TitleTable']
:type: string
:default: ``'@HTTP_HOST@ / @VSERVER@ / @DATABASE@ / @TABLE@ | @PHPMYADMIN@'``
.. config:option:: $cfg['TitleDatabase']
:type: string
:default: ``'@HTTP_HOST@ / @VSERVER@ / @DATABASE@ | @PHPMYADMIN@'``
.. config:option:: $cfg['TitleServer']
:type: string
:default: ``'@HTTP_HOST@ / @VSERVER@ | @PHPMYADMIN@'``
.. config:option:: $cfg['TitleDefault']
:type: string
:default: ``'@HTTP_HOST@ | @PHPMYADMIN@'``
Allows you to specify window's title bar. You can use :ref:`faq6_27`.
.. config:option:: $cfg['ThemeManager']
:type: boolean
:default: true
:type: string
:default: ``'pmahomme'``
.. config:option:: $cfg['ThemePerServer']
:type: boolean
:default: false
.. config:option:: $cfg['FontSize']
:type: string
:default: '82%'
Default queries
---------------
.. config:option:: $cfg['DefaultQueryTable']
:type: string
:default: ``'SELECT * FROM @TABLE@ WHERE 1'``
.. config:option:: $cfg['DefaultQueryDatabase']
:type: string
:default: ``''``
Default queries that will be displayed in query boxes when user didn't
specify any. You can use standard :ref:`faq6_27`.
MySQL settings
--------------
.. config:option:: $cfg['DefaultFunctions']
:type: array
:default: array(...)
.. config:option:: $cfg['DefaultTransformations']
:type: array
:default: An array with below listed key-values
.. config:option:: $cfg['DefaultTransformations']['Substring']
:type: array
:default: array(0, 'all', '…')
.. config:option:: $cfg['DefaultTransformations']['Bool2Text']
:type: array
:default: array('T', 'F')
.. config:option:: $cfg['DefaultTransformations']['External']
:type: array
:default: array(0, '-f /dev/null -i -wrap -q', 1, 1)
.. config:option:: $cfg['DefaultTransformations']['PreApPend']
:type: array
:default: array('', '')
.. config:option:: $cfg['DefaultTransformations']['Hex']
:type: array
:default: array('2')
.. config:option:: $cfg['DefaultTransformations']['DateFormat']
:type: array
:default: array(0, '', 'local')
.. config:option:: $cfg['DefaultTransformations']['Inline']
:type: array
:default: array('100', 100)
.. config:option:: $cfg['DefaultTransformations']['TextImageLink']
:type: array
:default: array('', 100, 50)
.. config:option:: $cfg['DefaultTransformations']['TextLink']
:type: array
:default: array('', '', '')
Console settings
----------------
.. note::
.. config:option:: $cfg['Console']['StartHistory']
:type: boolean
:default: false
:type: boolean
:default: false
.. config:option:: $cfg['Console']['CurrentQuery']
:type: boolean
:default: true
.. config:option:: $cfg['Console']['EnterExecutes']
:type: boolean
:default: false
Execute queries on Enter and insert new line with Shift + Enter
.. config:option:: $cfg['Console']['DarkTheme']
:type: boolean
:default: false
.. config:option:: $cfg['Console']['Mode']
:type: string
:default: 'info'
Console mode
.. config:option:: $cfg['Console']['Height']
:type: integer
:default: 92
Console height
Developer
---------
.. warning::
.. config:option:: $cfg['DBG']
:type: array
:default: array(...)
.. config:option:: $cfg['DBG']['sql']
:type: boolean
:default: false
Enable logging queries and execution times to be
displayed in the console's Debug SQL tab.
.. config:option:: $cfg['DBG']['sqllog']
:type: boolean
:default: false
.. config:option:: $cfg['DBG']['demo']
:type: boolean
:default: false
.. config:option:: $cfg['DBG']['simple2fa']
:type: boolean
:default: false
.. _config-examples:
Examples
--------
Basic example
+++++++++++++
.. literalinclude:: ../config.sample.inc.php
:language: php
.. warning::
Don't use the controluser 'pma' if it does not yet exist and don't use
'pmapass'
as password.
.. _example-signon:
Example for signon authentication
+++++++++++++++++++++++++++++++++
.. code-block:: php
<?php
$i = 0;
$i++;
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['auth_type'] = 'signon';
$cfg['Servers'][$i]['SignonSession'] = 'SignonSession';
$cfg['Servers'][$i]['SignonURL'] = 'examples/signon.php';
?>`
If you want to automatically login when accessing phpMyAdmin locally while asking
for a password when accessing remotely, you can achieve it using following snippet:
.. code-block:: php
if ($_SERVER["REMOTE_ADDR"] == "127.0.0.1") {
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'yourpassword';
} else {
$cfg['Servers'][$i]['auth_type'] = 'cookie';
}
.. note::
.. code-block:: php
<?php
$cfg['blowfish_secret']='multiServerExample70518';
//any string of your choice
$i = 0;
$i++; // server 1 :
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['verbose'] = 'no1';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['extension'] = 'mysqli';
// more options for #1 ...
$i++; // server 2 :
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['verbose'] = 'no2';
$cfg['Servers'][$i]['host'] = 'remote.host.addr';//or ip:'10.9.8.1'
// this server must allow remote clients, e.g., host 10.9.8.%
// not only in mysql.host but also in the startup configuration
$cfg['Servers'][$i]['extension'] = 'mysqli';
// more options for #2 ...
.. _example-google-ssl:
.. code-block:: text
.. warning::
To connect phpMyAdmin to Google Cloud SQL using SSL download the client and
server certificates and tell phpMyAdmin to use them:
.. code-block:: php
.. seealso::
:ref:`ssl`,
:config:option:`$cfg['Servers'][$i]['ssl']`,
:config:option:`$cfg['Servers'][$i]['ssl_key']`,
:config:option:`$cfg['Servers'][$i]['ssl_cert']`,
:config:option:`$cfg['Servers'][$i]['ssl_ca']`,
:config:option:`$cfg['Servers'][$i]['ssl_verify']`,
<https://bugs.php.net/bug.php?id=72048>