Installation

    Warning

    Mac users should note that if you are on a version before , StuffIt unstuffs with Mac formats. So you’ll have to resave as in BBEdit to Unix style ALL phpMyAdmin scripts before uploading them to your server, as PHP seems not to like -style end of lines character (“”).

    phpMyAdmin is included in most Linux distributions. It is recommended to use distribution packages when possible - they usually provide integration to your distribution and you will automatically get security updates from your distribution.

    Debian’s package repositories include a phpMyAdmin package, but be aware that the configuration file is maintained in /etc/phpmyadmin and may differ in some ways from the official phpMyAdmin documentation. Specifically, it does:

    See also

    More information can be found in README.Debian (it is installed as /usr/share/doc/phmyadmin/README.Debian with the package).

    OpenSUSE

    OpenSUSE already comes with phpMyAdmin package, just install packages from the openSUSE Build Service.

    Gentoo

    Gentoo ships the phpMyAdmin package, both in a near-stock configuration as well as in a webapp-config configuration. Use emerge dev-db/phpmyadmin to install.

    Mandriva

    Mandriva ships the phpMyAdmin package in their contrib branch and can be installed via the usual Control Center.

    Fedora

    Fedora ships the phpMyAdmin package, but be aware that the configuration file is maintained in /etc/phpMyAdmin/ and may differ in some ways from the official phpMyAdmin documentation.

    Red Hat Enterprise Linux

    Red Hat Enterprise Linux itself and thus derivatives like CentOS don’t ship phpMyAdmin, but the Fedora-driven repository is doing so, if it’s enabled. But be aware that the configuration file is maintained in /etc/phpMyAdmin/ and may differ in some ways from the official phpMyAdmin documentation.

    Installing on Windows

    The easiest way to get phpMyAdmin on Windows is using third party products which include phpMyAdmin together with a database and web server such as XAMPP.

    You can find more of such options at .

    Installing from Git

    You can clone current phpMyAdmin source from https://github.com/phpmyadmin/phpmyadmin.git:

    Additionally you need to install dependencies using the :

    1. composer update

    If you do not intend to develop, you can skip the installation of developer tools by invoking:

    1. composer update --no-dev

    Installing using Composer

    You can install phpMyAdmin using the , since 4.7.0 the releases are automatically mirrored to the default Packagist repository.

    Note

    The content of the Composer repository is automatically generated separately from the releases, so the content doesn’t have to be 100% same as when you download the tarball. There should be no functional differences though.

    To install phpMyAdmin simply run:

    1. composer create-project phpmyadmin/phpmyadmin

    Alternatively you can use our own composer repository, which contains the release tarballs and is available at :

    1. composer create-project phpmyadmin/phpmyadmin --repository-url=https://www.phpmyadmin.net/packages.json --no-dev

    phpMyAdmin comes with a Docker image, which you can easily deploy. You can download it using:

    1. docker pull phpmyadmin/phpmyadmin

    The phpMyAdmin server will listen on port 80. It supports several ways of configuring the link to the database server, either by Docker’s link feature by linking your database container to db for phpMyAdmin (by specifying --link your_db_host:db) or by environment variables (in this case it’s up to you to set up networking in Docker to allow the phpMyAdmin container to access the database container over the network).

    Docker environment variables

    You can configure several phpMyAdmin features using environment variables:

    PMA_ARBITRARY

    Allows you to enter a database server hostname on login form.

    See also

    $cfg['AllowArbitraryServer']

    PMA_HOST

    Hostname or IP address of the database server to use.

    See also

    PMA_HOSTS

    Comma-separated hostnames or IP addresses of the database servers to use.

    Note

    Used only if PMA_HOST is empty.

    PMA_VERBOSE

    Verbose name of the database server.

    See also

    PMA_VERBOSES

    Comma-separated verbose name of the database servers.

    Note

    Used only if PMA_VERBOSE is empty.

    PMA_USER

    User name to use for .

    PMA_PASSWORD

    Password to use for Config authentication mode.

    PMA_PORT

    Port of the database server to use.

    PMA_PORTS

    Comma-separated ports of the database server to use.

    Note

    Used only if is empty.

    PMA_ABSOLUTE_URI

    The fully-qualified path (https://pma.example.net/) where the reverse proxy makes phpMyAdmin available.

    See also

    $cfg['PmaAbsoluteUri']

    By default, is used, but if PMA_USER and are set, it is switched to Config authentication mode.

    The credentials you need to log in are stored in the MySQL server, in case of Docker image, there are various ways to set it (for example MYSQL_ROOT_PASSWORD when starting the MySQL container). Please check documentation for or MySQL container.

    Additionally configuration can be tweaked by /etc/phpmyadmin/config.user.inc.php. If this file exists, it will be loaded after configuration is generated from above environment variables, so you can override any configuration variable. This configuration can be added as a volume when invoking docker using -v /some/local/directory/config.user.inc.php:/etc/phpmyadmin/config.user.inc.php parameters.

    Note that the supplied configuration file is applied after , but you can override any of the values.

    For example to change the default behavior of CSV export you can use the following configuration file:

    1. <?php
    2. $cfg['Export']['csv_columns'] = true;
    3. ?>

    You can also use it to define server configuration instead of using the environment variables listed in Docker environment variables:

    1. <?php
    2. /* Override Servers array */
    3. $cfg['Servers'] = [
    4. 1 => [
    5. 'auth_type' => 'cookie',
    6. 'host' => 'mydb1',
    7. 'port' => 3306,
    8. 'verbose' => 'Verbose name 1',
    9. ],
    10. 2 => [
    11. 'auth_type' => 'cookie',
    12. 'host' => 'mydb2',
    13. 'port' => 3306,
    14. 'verbose' => 'Verbose name 2',
    15. ],
    16. ];

    See also

    See for detailed description of configuration options.

    Docker Volumes

    You can use the following volumes to customize image behavior:

    /etc/phpmyadmin/config.user.inc.php

    /sessions/

    /www/themes/

    Docker Examples

    To connect phpMyAdmin to a given server use:

    1. docker run --name myadmin -d -e PMA_HOST=dbhost -p 8080:80 phpmyadmin/phpmyadmin

    To connect phpMyAdmin to more servers use:

    1. docker run --name myadmin -d -e PMA_HOSTS=dbhost1,dbhost2,dbhost3 -p 8080:80 phpmyadmin/phpmyadmin

    To use arbitrary server option:

    1. docker run --name myadmin -d --link mysql_db_server:db -p 8080:80 -e PMA_ARBITRARY=1 phpmyadmin/phpmyadmin

    You can also link the database container using Docker:

    1. docker run --name phpmyadmin -d --link mysql_db_server:db -p 8080:80 phpmyadmin/phpmyadmin

    Running with additional configuration:

    1. docker run --name phpmyadmin -d --link mysql_db_server:db -p 8080:80 -v /some/local/directory/config.user.inc.php:/etc/phpmyadmin/config.user.inc.php phpmyadmin/phpmyadmin

    Running with additional themes:

    Using docker-compose

    Alternatively, you can also use docker-compose with the docker-compose.yml from . This will run phpMyAdmin with an arbitrary server - allowing you to specify MySQL/MariaDB server on the login page.

    1. docker-compose up -d

    Customizing configuration file using docker-compose

    You can use an external file to customize phpMyAdmin configuration and pass it using the volumes directive:

    1. phpmyadmin:
    2. image: phpmyadmin/phpmyadmin
    3. container_name: phpmyadmin
    4. environment:
    5. - PMA_ARBITRARY=1
    6. restart: always
    7. ports:
    8. - 8080:80
    9. volumes:
    10. - /sessions
    11. - ~/docker/phpmyadmin/config.user.inc.php:/etc/phpmyadmin/config.user.inc.php
    12. - /custom/phpmyadmin/theme/:/www/themes/theme/

    See also

    Running behind haproxy in a subdirectory

    When you want to expose phpMyAdmin running in a Docker container in a subdirectory, you need to rewrite the request path in the server proxying the requests.

    For example, using haproxy it can be done as:

    1. frontend http
    2. bind *:80
    3. option forwardfor
    4. option http-server-close
    5. ### NETWORK restriction
    6. acl LOCALNET src 10.0.0.0/8 192.168.0.0/16 172.16.0.0/12
    7. # /phpmyadmin
    8. acl phpmyadmin path_dir /phpmyadmin
    9. use_backend phpmyadmin if phpmyadmin LOCALNET
    10. backend phpmyadmin
    11. mode http
    12. reqirep ^(GET|POST|HEAD)\ /phpmyadmin/(.*) \1\ /\2
    13. # phpMyAdmin container IP
    14. server localhost 172.30.21.21:80

    When using traefik, something like following should work:

    1. defaultEntryPoints = ["http"]
    2. [entryPoints]
    3. [entryPoints.http]
    4. address = ":80"
    5. [entryPoints.http.redirect]
    6. regex = "(http:\\/\\/[^\\/]+\\/([^\\?\\.]+)[^\\/])$"
    7. replacement = "$1/"
    8. [backends]
    9. [backends.myadmin]
    10. [backends.myadmin.servers.myadmin]
    11. url="http://internal.address.to.pma"
    12. [frontends]
    13. [frontends.myadmin]
    14. backend = "myadmin"
    15. passHostHeader = true
    16. [frontends.myadmin.routes.default]
    17. rule="PathPrefixStrip:/phpmyadmin/;AddPrefix:/"

    You then should specify in the docker-compose configuration:

    1. version: '2'
    2. services:
    3. phpmyadmin:
    4. restart: always
    5. image: phpmyadmin/phpmyadmin
    6. container_name: phpmyadmin
    7. hostname: phpmyadmin
    8. domainname: example.com
    9. ports:
    10. - 8000:80
    11. environment:
    12. - PMA_HOSTS=172.26.36.7,172.26.36.8,172.26.36.9,172.26.36.10
    13. - PMA_VERBOSES=production-db1,production-db2,dev-db1,dev-db2
    14. - PMA_USER=root
    15. - PMA_PASSWORD=
    16. - PMA_ABSOLUTE_URI=http://example.com/phpmyadmin/

    Quick Install

    1. Choose an appropriate distribution kit from the phpmyadmin.net Downloads page. Some kits contain only the English messages, others contain all languages. We’ll assume you chose a kit whose name looks like phpMyAdmin-x.x.x -all-languages.tar.gz.
    2. Ensure you have downloaded a genuine archive, see .
    3. Untar or unzip the distribution (be sure to unzip the subdirectories): tar -xzvf phpMyAdmin_x.x.x-all-languages.tar.gz in your webserver’s document root. If you don’t have direct access to your document root, put the files in a directory on your local machine, and, after step 4, transfer the directory on your web server using, for example, ftp.
    4. Ensure that all the scripts have the appropriate owner (if PHP is running in safe mode, having some scripts with an owner different from the owner of other scripts will be a problem). See 4.2 What’s the preferred way of making phpMyAdmin secure against evil access? and for suggestions.
    5. Now you must configure your installation. There are two methods that can be used. Traditionally, users have hand-edited a copy of config.inc.php, but now a wizard-style setup script is provided for those who prefer a graphical installation. Creating a config.inc.php is still a quick way to get started and needed for some advanced features.

    Manually creating the file

    To manually create the file, simply use your text editor to create the file config.inc.php (you can copy config.sample.inc.php to get a minimal configuration file) in the main (top-level) phpMyAdmin directory (the one that contains index.php). phpMyAdmin first loads libraries/config.default.php and then overrides those values with anything found in config.inc.php. If the default value is okay for a particular setting, there is no need to include it in config.inc.php. You’ll probably need only a few directives to get going; a simple configuration may look like this:

    1. <?php
    2. // use here a value of your choice at least 32 chars long
    3. $cfg['blowfish_secret'] = '1{dd0`<Q),5XP_:R9UK%%8\"EEcyH#{o';
    4. $i=0;
    5. $i++;
    6. $cfg['Servers'][$i]['auth_type'] = 'cookie';
    7. // if you insist on "root" having no password:
    8. // $cfg['Servers'][$i]['AllowNoPassword'] = true; `
    9. ?>

    Or, if you prefer to not be prompted every time you log in:

    1. <?php
    2. $i=0;
    3. $i++;
    4. $cfg['Servers'][$i]['user'] = 'root';
    5. $cfg['Servers'][$i]['password'] = 'cbb74bc'; // use here your password
    6. $cfg['Servers'][$i]['auth_type'] = 'config';
    7. ?>

    Warning

    Storing passwords in the configuration is insecure as anybody can then manipulate your database.

    For a full explanation of possible configuration values, see the of this document.

    Instead of manually editing config.inc.php, you can use phpMyAdmin’s setup feature. The file can be generated using the setup and you can download it for upload to the server.

    Next, open your browser and visit the location where you installed phpMyAdmin, with the /setup suffix. The changes are not saved to the server, you need to use the Download button to save them to your computer and then upload to the server.

    Now the file is ready to be used. You can choose to review or edit the file with your favorite editor, if you prefer to set some advanced options that the setup script does not provide.

    1. If you are using the auth_type “config”, it is suggested that you protect the phpMyAdmin installation directory because using config does not require a user to enter a password to access the phpMyAdmin installation. Use of an alternate authentication method is recommended, for example with HTTP–AUTH in a .htaccess file or switch to using auth_type cookie or http. See the for additional information, especially 4.4 phpMyAdmin always gives “Access denied” when using HTTP authentication..
    2. Open the main phpMyAdmin directory in your browser. phpMyAdmin should now display a welcome screen and your databases, or a login dialog if using or cookie authentication mode.

    Setup script on Debian, Ubuntu and derivatives

    Debian and Ubuntu have changed the way in which the setup script is enabled and disabled, in a way that single command has to be executed for either of these.

    To allow editing configuration invoke:

    1. /usr/sbin/pma-configure

    To block editing configuration invoke:

    1. /usr/sbin/pma-secure

    Setup script on openSUSE

    Some openSUSE releases do not include setup script in the package. In case you want to generate configuration on these you can either download original package from [https://www.phpmyadmin.net/](https://www.phpmyadmin.net/)\ or use setup script on our demo server: .

    Verifying phpMyAdmin releases

    Since July 2015 all phpMyAdmin releases are cryptographically signed by the releasing developer, who through January 2016 was Marc Delisle. His key id is 0xFEFC65D181AF644A, his PGP fingerprint is:

    1. 436F F188 4B1A 0C3F DCBF 0D79 FEFC 65D1 81AF 644A

    and you can get more identification information from .

    Beginning in January 2016, the release manager is Isaac Bennetch. His key id is 0xCE752F178259BD92, and his PGP fingerprint is:

    1. 3D06 A59E CE73 0EB7 1B51 1C17 CE75 2F17 8259 BD92

    and you can get more identification information from [https://keybase.io/ibennetch](https://keybase.io/ibennetch)\.

    Some additional downloads (for example themes) might be signed by Michal Čihař. His key id is 0x9C27B31342B7511D, and his PGP fingerprint is:

    1. 63CB 1DF1 EF12 CF2A C0EE 5A32 9C27 B313 42B7 511D

    and you can get more identification information from .

    You should verify that the signature matches the archive you have downloaded. This way you can be sure that you are using the same code that was released. You should also verify the date of the signature to make sure that you downloaded the latest version.

    Each archive is accompanied by .asc files which contain the PGP signature for it. Once you have both of them in the same folder, you can verify the signature:

    As you can see gpg complains that it does not know the public key. At this point, you should do one of the following steps:

    1. $ gpg --import phpmyadmin.keyring
    • Download and import the key from one of the key servers:
    1. $ gpg --keyserver hkp://pgp.mit.edu --recv-keys 3D06A59ECE730EB71B511C17CE752F178259BD92
    2. gpg: requesting key 8259BD92 from hkp server pgp.mit.edu
    3. gpg: key 8259BD92: public key "Isaac Bennetch <bennetch@gmail.com>" imported
    4. gpg: Total number processed: 1
    5. gpg: imported: 1 (RSA: 1)

    This will improve the situation a bit - at this point, you can verify that the signature from the given key is correct but you still can not trust the name used in the key:

    1. $ gpg --verify phpMyAdmin-4.5.4.1-all-languages.zip.asc
    2. gpg: Signature made Fri 29 Jan 2016 08:59:37 AM EST using RSA key ID 8259BD92
    3. gpg: Good signature from "Isaac Bennetch <bennetch@gmail.com>"
    4. gpg: aka "Isaac Bennetch <isaac@bennetch.org>"
    5. gpg: WARNING: This key is not certified with a trusted signature!
    6. gpg: There is no indication that the signature belongs to the owner.
    7. Primary key fingerprint: 3D06 A59E CE73 0EB7 1B51 1C17 CE75 2F17 8259 BD92

    The problem here is that anybody could issue the key with this name. You need to ensure that the key is actually owned by the mentioned person. The GNU Privacy Handbook covers this topic in the chapter . The most reliable method is to meet the developer in person and exchange key fingerprints, however, you can also rely on the web of trust. This way you can trust the key transitively though signatures of others, who have met the developer in person. For example, you can see how Isaac’s key links to Linus’s key.

    Once the key is trusted, the warning will not occur:

    1. gpg: Signature made Fri 29 Jan 2016 08:59:37 AM EST using RSA key ID 8259BD92
    2. gpg: Good signature from "Isaac Bennetch <bennetch@gmail.com>" [full]

    Should the signature be invalid (the archive has been changed), you would get a clear error regardless of the fact that the key is trusted or not:

    1. $ gpg --verify phpMyAdmin-4.5.4.1-all-languages.zip.asc
    2. gpg: Signature made Fri 29 Jan 2016 08:59:37 AM EST using RSA key ID 8259BD92
    3. gpg: BAD signature from "Isaac Bennetch <bennetch@gmail.com>" [unknown]

    phpMyAdmin configuration storage

    Changed in version 3.4.0: Prior to phpMyAdmin 3.4.0 this was called Linked Tables Infrastructure, but the name was changed due to the extended scope of the storage.

    For a whole set of additional features (Bookmarks, comments, -history, tracking mechanism, PDF-generation, , Relations etc.) you need to create a set of special tables. Those tables can be located in your own database, or in a central database for a multi-user installation (this database would then be accessed by the controluser, so no other user should have rights to it).

    Zero configuration

    In many cases, this database structure can be automatically created and configured. This is called “Zero Configuration” mode and can be particularly useful in shared hosting situations. “Zeroconf” mode is on by default, to disable set $cfg['ZeroConf'] to false.

    The following three scenarios are covered by the Zero Configuration mode:

    • When entering a database where the configuration storage tables are not present, phpMyAdmin offers to create them from the Operations tab.
    • When entering a database where the tables do already exist, the software automatically detects this and begins using them. This is the most common situation; after the tables are initially created automatically they are continually used without disturbing the user; this is also most useful on shared hosting where the user is not able to edit config.inc.php and usually the user only has access to one database.
    • When having access to multiple databases, if the user first enters the database containing the configuration storage tables then switches to another database, phpMyAdmin continues to use the tables from the first database; the user is not prompted to create more tables in the new database.

    Manual configuration

    Please look at your ./sql/ directory, where you should find a file called create_tables.sql. (If you are using a Windows server, pay special attention to 1.23 I’m running MySQL on a Win32 machine. Each time I create a new table the table and column names are changed to lowercase!).

    If you already had this infrastructure and:

    • upgraded to MySQL 4.1.2 or newer, please use sql/upgrade_tables_mysql_4_1_2+.sql.
    • upgraded to phpMyAdmin 4.3.0 or newer from 2.5.0 or newer (<= 4.2.x), please use sql/upgrade_column_info_4_3_0+.sql.
    • upgraded to phpMyAdmin 4.7.0 or newer from 4.3.0 or newer, please use sql/upgrade_tables_4_7_0+.sql.

    You can use your phpMyAdmin to create the tables for you. Please be aware that you may need special (administrator) privileges to create the database and tables, and that the script may need some tuning, depending on the database name.

    After having imported the sql/create_tables.sql file, you should specify the table names in your config.inc.php file. The directives used for that can be found in the .

    You will also need to have a controluser ($cfg['Servers'][$i]['controluser'] and settings) with the proper rights to those tables. For example you can create it using following statement:

    1. GRANT SELECT, INSERT, UPDATE, DELETE ON <pma_db>.* TO 'pma'@'localhost' IDENTIFIED BY 'pmapass';

    Warning

    Never extract the new version over an existing installation of phpMyAdmin, always first remove the old files keeping just the configuration.

    This way, you will not leave any old or outdated files in the directory, which can have severe security implications or can cause various breakages.

    Simply copy config.inc.php from your previous installation into the newly unpacked one. Configuration files from old versions may require some tweaking as some options have been changed or removed. For compatibility with PHP 5.3 and later, remove a set_magic_quotes_runtime(0); statement that you might find near the end of your configuration file.

    You should not copy libraries/config.default.php over config.inc.php because the default configuration file is version- specific.

    The complete upgrade can be performed in a few simple steps:

    1. Download the latest phpMyAdmin version from [https://www.phpmyadmin.net/downloads/](https://www.phpmyadmin.net/downloads/)\.
    2. Rename existing phpMyAdmin folder (for example to phpmyadmin-old).
    3. Unpack freshly downloaded phpMyAdmin to the desired location (for example phpmyadmin).
    4. Copy config.inc.php` from old location (phpmyadmin-old) to the new one (phpmyadmin).
    5. Test that everything works properly.
    6. Remove backup of a previous version (phpmyadmin-old).

    If you have upgraded your MySQL server from a version previous to 4.1.2 to version 5.x or newer and if you use the phpMyAdmin configuration storage, you should run the script found in sql/upgrade_tables_mysql_4_1_2+.sql.

    If you have upgraded your phpMyAdmin to 4.3.0 or newer from 2.5.0 or newer (<= 4.2.x) and if you use the phpMyAdmin configuration storage, you should run the SQL script found in sql/upgrade_column_info_4_3_0+.sql.

    Do not forget to clear the browser cache and to empty the old session by logging out and logging in again.

    Using authentication modes

    HTTP and cookie authentication modes are recommended in a multi-user environment where you want to give users access to their own database and don’t want them to play around with others. Nevertheless, be aware that MS Internet Explorer seems to be really buggy about cookies, at least till version 6. Even in a single-user environment, you might prefer to use or cookie mode so that your user/password pair are not in clear in the configuration file.

    HTTP and cookie authentication modes are more secure: the MySQL login information does not need to be set in the phpMyAdmin configuration file (except possibly for the ). However, keep in mind that the password travels in plain text unless you are using the HTTPS protocol. In cookie mode, the password is stored, encrypted with the AES algorithm, in a temporary cookie.

    Then each of the true users should be granted a set of privileges on a set of particular databases. Normally you shouldn’t give global privileges to an ordinary user unless you understand the impact of those privileges (for example, you are creating a superuser). For example, to grant the user real_user with all privileges on the database user_base:

    1. GRANT ALL PRIVILEGES ON user_base.* TO 'real_user'@localhost IDENTIFIED BY 'real_password';

    What the user may now do is controlled entirely by the MySQL user management system. With HTTP or cookie authentication mode, you don’t need to fill the user/password fields inside the $cfg['Servers'].

    See also

    , 1.35 Can I use HTTP authentication with Apache CGI?, , 4.2 What’s the preferred way of making phpMyAdmin secure against evil access?,

    HTTP authentication mode

    • Uses Basic authentication method and allows you to log in as any valid MySQL user.

    • Is supported with most PHP configurations. For IIS () support using CGI PHP see , for using with Apache CGI see .

    • When PHP is running under Apache’s mod_proxy_fcgi (e.g. with PHP-FPM), Authorization headers are not passed to the underlying FCGI application, such that your credentials will not reach the application. In this case, you can add the following configuration directive:

      1. SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
    • See also about not using the .htaccess mechanism along with ‘’ authentication mode.

    Note

    There is no way to do proper logout in HTTP authentication, most browsers will remember credentials until there is no different successful authentication. Because of this, this method has a limitation that you can not login with the same user after logout.

    Cookie authentication mode

    • Username and password are stored in cookies during the session and password is deleted when it ends.
    • With this mode, the user can truly log out of phpMyAdmin and log back in with the same username (this is not possible with ).
    • If you want to allow users to enter any hostname to connect (rather than only servers that are configured in config.inc.php), see the $cfg['AllowArbitraryServer'] directive.
    • As mentioned in the section, having the openssl extension will speed up access considerably, but is not required.

    Signon authentication mode

    • This mode is a convenient way of using credentials from another application to authenticate to phpMyAdmin to implement a single signon solution.
    • The other application has to store login information into session data (see and $cfg['Servers'][$i]['SignonCookieParams']) or you need to implement script to return the credentials (see ).
    • When no credentials are available, the user is being redirected to $cfg['Servers'][$i]['SignonURL'], where you should handle the login process.

    The very basic example of saving credentials in a session is available as examples/signon.php:

    1. <?php
    2. /* vim: set expandtab sw=4 ts=4 sts=4: */
    3. /**
    4. * Single signon for phpMyAdmin
    5. *
    6. * This is just example how to use session based single signon with
    7. * phpMyAdmin, it is not intended to be perfect code and look, only
    8. * shows how you can integrate this functionality in your application.
    9. *
    10. * @package PhpMyAdmin
    11. * @subpackage Example
    12. */
    13. /* Use cookies for session */
    14. ini_set('session.use_cookies', 'true');
    15. /* Change this to true if using phpMyAdmin over https */
    16. $secure_cookie = false;
    17. /* Need to have cookie visible from parent directory */
    18. session_set_cookie_params(0, '/', '', $secure_cookie, true);
    19. /* Create signon session */
    20. $session_name = 'SignonSession';
    21. session_name($session_name);
    22. // Uncomment and change the following line to match your $cfg['SessionSavePath']
    23. //session_save_path('/foobar');
    24. @session_start();
    25. /* Was data posted? */
    26. if (isset($_POST['user'])) {
    27. /* Store there credentials */
    28. $_SESSION['PMA_single_signon_user'] = $_POST['user'];
    29. $_SESSION['PMA_single_signon_password'] = $_POST['password'];
    30. $_SESSION['PMA_single_signon_host'] = $_POST['host'];
    31. $_SESSION['PMA_single_signon_port'] = $_POST['port'];
    32. /* Update another field of server configuration */
    33. $_SESSION['PMA_single_signon_cfgupdate'] = array('verbose' => 'Signon test');
    34. $id = session_id();
    35. /* Close that session */
    36. @session_write_close();
    37. /* Redirect to phpMyAdmin (should use absolute URL here!) */
    38. header('Location: ../index.php');
    39. } else {
    40. /* Show simple form */
    41. header('Content-Type: text/html; charset=utf-8');
    42. echo '<?xml version="1.0" encoding="utf-8"?>' , "\n";
    43. ?>
    44. <!DOCTYPE HTML>
    45. <html lang="en" dir="ltr">
    46. <head>
    47. <link rel="icon" href="../favicon.ico" type="image/x-icon" />
    48. <link rel="shortcut icon" href="../favicon.ico" type="image/x-icon" />
    49. <meta charset="utf-8" />
    50. <title>phpMyAdmin single signon example</title>
    51. </head>
    52. <body>
    53. <?php
    54. if (isset($_SESSION['PMA_single_signon_error_message'])) {
    55. echo '<p class="error">';
    56. echo $_SESSION['PMA_single_signon_error_message'];
    57. echo '</p>';
    58. }
    59. ?>
    60. <form action="signon.php" method="post">
    61. Username: <input type="text" name="user" /><br />
    62. Password: <input type="password" name="password" /><br />
    63. Host: (will use the one from config.inc.php by default)
    64. <input type="text" name="host" /><br />
    65. Port: (will use the one from config.inc.php by default)
    66. <input type="text" name="port" /><br />
    67. <input type="submit" />
    68. </form>
    69. </body>
    70. </html>
    71. <?php
    72. }
    73. ?>

    Alternatively, you can also use this way to integrate with OpenID as shown in examples/openid.php:

    1. <?php
    2. /* vim: set expandtab sw=4 ts=4 sts=4: */
    3. /**
    4. * Single signon for phpMyAdmin using OpenID
    5. *
    6. * This is just example how to use single signon with phpMyAdmin, it is
    7. * not intended to be perfect code and look, only shows how you can
    8. * integrate this functionality in your application.
    9. *
    10. * It uses OpenID pear package, see https://pear.php.net/package/OpenID
    11. *
    12. * User first authenticates using OpenID and based on content of $AUTH_MAP
    13. * the login information is passed to phpMyAdmin in session data.
    14. *
    15. * @package PhpMyAdmin
    16. * @subpackage Example
    17. */
    18. if (false === @include_once 'OpenID/RelyingParty.php') {
    19. exit;
    20. }
    21. /* Change this to true if using phpMyAdmin over https */
    22. $secure_cookie = false;
    23. /**
    24. * Map of authenticated users to MySQL user/password pairs.
    25. */
    26. $AUTH_MAP = array(
    27. 'https://launchpad.net/~username' => array(
    28. 'user' => 'root',
    29. 'password' => '',
    30. ),
    31. );
    32. /**
    33. * Simple function to show HTML page with given content.
    34. *
    35. * @param string $contents Content to include in page
    36. *
    37. * @return void
    38. */
    39. function Show_page($contents)
    40. {
    41. header('Content-Type: text/html; charset=utf-8');
    42. echo '<?xml version="1.0" encoding="utf-8"?>' , "\n";
    43. ?>
    44. <!DOCTYPE HTML>
    45. <html lang="en" dir="ltr">
    46. <head>
    47. <link rel="icon" href="../favicon.ico" type="image/x-icon" />
    48. <link rel="shortcut icon" href="../favicon.ico" type="image/x-icon" />
    49. <meta charset="utf-8" />
    50. <title>phpMyAdmin OpenID signon example</title>
    51. </head>
    52. <body>
    53. <?php
    54. if (isset($_SESSION) && isset($_SESSION['PMA_single_signon_error_message'])) {
    55. unset($_SESSION['PMA_single_signon_message']);
    56. }
    57. echo $contents;
    58. ?>
    59. </body>
    60. </html>
    61. <?php
    62. }
    63. /**
    64. * Display error and exit
    65. *
    66. * @param Exception $e Exception object
    67. *
    68. * @return void
    69. */
    70. function Die_error($e)
    71. {
    72. $contents = "<div class='relyingparty_results'>\n";
    73. $contents .= "<pre>" . htmlspecialchars($e->getMessage()) . "</pre>\n";
    74. $contents .= "</div class='relyingparty_results'>";
    75. Show_page($contents);
    76. exit;
    77. }
    78. /* Need to have cookie visible from parent directory */
    79. session_set_cookie_params(0, '/', '', $secure_cookie, true);
    80. /* Create signon session */
    81. $session_name = 'SignonSession';
    82. session_name($session_name);
    83. @session_start();
    84. // Determine realm and return_to
    85. $base = 'http';
    86. if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') {
    87. $base .= 's';
    88. }
    89. $base .= '://' . $_SERVER['SERVER_NAME'] . ':' . $_SERVER['SERVER_PORT'];
    90. $realm = $base . '/';
    91. $returnTo = $base . dirname($_SERVER['PHP_SELF']);
    92. if ($returnTo[strlen($returnTo) - 1] != '/') {
    93. $returnTo .= '/';
    94. }
    95. $returnTo .= 'openid.php';
    96. /* Display form */
    97. if (!count($_GET) && !count($_POST) || isset($_GET['phpMyAdmin'])) {
    98. /* Show simple form */
    99. $content = '<form action="openid.php" method="post">
    100. OpenID: <input type="text" name="identifier" /><br />
    101. <input type="submit" name="start" />
    102. </form>
    103. </body>
    104. </html>';
    105. Show_page($content);
    106. exit;
    107. }
    108. /* Grab identifier */
    109. if (isset($_POST['identifier']) && is_string($_POST['identifier'])) {
    110. $identifier = $_POST['identifier'];
    111. } elseif (isset($_SESSION['identifier']) && is_string($_SESSION['identifier'])) {
    112. $identifier = $_SESSION['identifier'];
    113. } else {
    114. $identifier = null;
    115. }
    116. /* Create OpenID object */
    117. try {
    118. $o = new OpenID_RelyingParty($returnTo, $realm, $identifier);
    119. } catch (Exception $e) {
    120. Die_error($e);
    121. }
    122. /* Redirect to OpenID provider */
    123. if (isset($_POST['start'])) {
    124. try {
    125. $authRequest = $o->prepare();
    126. } catch (Exception $e) {
    127. Die_error($e);
    128. }
    129. $url = $authRequest->getAuthorizeURL();
    130. header("Location: $url");
    131. exit;
    132. } else {
    133. /* Grab query string */
    134. if (!count($_POST)) {
    135. list(, $queryString) = explode('?', $_SERVER['REQUEST_URI']);
    136. } else {
    137. // I hate php sometimes
    138. $queryString = file_get_contents('php://input');
    139. }
    140. /* Check reply */
    141. try {
    142. $message = new OpenID_Message($queryString, OpenID_Message::FORMAT_HTTP);
    143. } catch (Exception $e) {
    144. Die_error($e);
    145. }
    146. $id = $message->get('openid.claimed_id');
    147. if (!empty($id) && isset($AUTH_MAP[$id])) {
    148. $_SESSION['PMA_single_signon_user'] = $AUTH_MAP[$id]['user'];
    149. $_SESSION['PMA_single_signon_password'] = $AUTH_MAP[$id]['password'];
    150. session_write_close();
    151. /* Redirect to phpMyAdmin (should use absolute URL here!) */
    152. header('Location: ../index.php');
    153. } else {
    154. Show_page('<p>User not allowed!</p>');
    155. exit;
    156. }
    157. }

    If you intend to pass the credentials using some other means than, you have to implement wrapper in PHP to get that data and set it to . There is a very minimal example in examples/signon-script.php:

    1. <?php
    2. /* vim: set expandtab sw=4 ts=4 sts=4: */
    3. /**
    4. * Single signon for phpMyAdmin
    5. *
    6. * This is just example how to use script based single signon with
    7. * phpMyAdmin, it is not intended to be perfect code and look, only
    8. * shows how you can integrate this functionality in your application.
    9. *
    10. * @package PhpMyAdmin
    11. * @subpackage Example
    12. */
    13. /**
    14. * This function returns username and password.
    15. *
    16. * It can optionally use configured username as parameter.
    17. *
    18. * @param string $user User name
    19. *
    20. * @return array
    21. */
    22. function get_login_credentials($user)
    23. {
    24. /* Optionally we can use passed username */
    25. if (!empty($user)) {
    26. return array($user, 'password');
    27. }
    28. /* Here we would retrieve the credentials */
    29. $credentials = array('root', '');
    30. return $credentials;
    31. }

    See also

    $cfg['Servers'][$i]['auth_type'], , $cfg['Servers'][$i]['SignonCookieParams'], , $cfg['Servers'][$i]['SignonURL'],

    Config authentication mode

    • This mode is sometimes the less secure one because it requires you to fill the and $cfg['Servers'][$i]['password'] fields (and as a result, anyone who can read your config.inc.php can discover your username and password).
    • In the section, there is an entry explaining how to protect your configuration file.
    • For additional security in this mode, you may wish to consider the Host authentication $cfg['Servers'][$i]['AllowDeny']['order'] and configuration directives.
    • Unlike cookie and http, does not require a user to log in when first loading the phpMyAdmin site. This is by design but could allow any user to access your installation. Use of some restriction method is suggested, perhaps a .htaccess file with the HTTP-AUTH directive or disallowing incoming HTTP requests at one’s router or firewall will suffice (both of which are beyond the scope of this manual but easily searchable with Google).

    Securing your phpMyAdmin installation

    The phpMyAdmin team tries hard to make the application secure, however there are always ways to make your installation more secure:

    • Follow our Security announcements and upgrade phpMyAdmin whenever new vulnerability is published.

    • Serve phpMyAdmin on HTTPS only. Preferably, you should use HSTS as well, so that you’re protected from protocol downgrade attacks.

    • Ensure your PHP setup follows recommendations for production sites, for example should be disabled.

    • Remove the test directory from phpMyAdmin, unless you are developing and need a test suite.

    • Remove the setup directory from phpMyAdmin, you will probably not use it after the initial setup.

    • Properly choose an authentication method - Cookie authentication mode is probably the best choice for shared hosting.

    • Deny access to auxiliary files in ./libraries/ or ./templates/ subfolders in your webserver configuration. Such configuration prevents from possible path exposure and cross side scripting vulnerabilities that might happen to be found in that code. For the Apache webserver, this is often accomplished with a file in those directories.

    • Deny access to temporary files, see $cfg['TempDir'] (if that is placed inside your web root, see also .

    • It is generally a good idea to protect a public phpMyAdmin installation against access by robots as they usually can not do anything good there. You can do this using robots.txt file in the root of your webserver or limit access by web server configuration, see 1.42 How can I prevent robots from accessing phpMyAdmin?.

    • In case you don’t want all MySQL users to be able to access phpMyAdmin, you can use to limit them or $cfg['Servers'][$i]['AllowRoot'] to deny root user access.

    • Enable for your account.

    • Consider hiding phpMyAdmin behind an authentication proxy, so that users need to authenticate prior to providing MySQL credentials to phpMyAdmin. You can achieve this by configuring your web server to request HTTP authentication. For example in Apache this can be done with:

      1. AuthType Basic
      2. AuthName "Restricted Access"
      3. AuthUserFile /usr/share/phpmyadmin/passwd
      4. Require valid-user

      Once you have changed the configuration, you need to create a list of users which can authenticate. This can be done using the htpasswd utility:

    • If you are afraid of automated attacks, enabling Captcha by $cfg['CaptchaLoginPublicKey'] and might be an option.

    • Failed login attemps are logged to syslog (if available, see $cfg['AuthLog']). This can allow using a tool such as fail2ban to block brute-force attempts. Note that the log file used by syslog is not the same as the Apache error or access log files.

    Using SSL for connection to database server

    It is recommended to use SSL when connecting to remote database server. There are several configuration options involved in the SSL setup:

    $cfg['Servers'][$i]['ssl']

    Defines whether to use SSL at all. If you enable only this, the connection will be encrypted, but there is not authentication of the connection - you can not verify that you are talking to the right server.

    and $cfg['Servers'][$i]['ssl_cert']

    This is used for authentication of client to the server.

    and $cfg['Servers'][$i]['ssl_ca_path']

    The certificate authorities you trust for server certificates. This is used to ensure that you are talking to a trusted server.

    This configuration disables server certificate verification. Use with caution.

    See also

    Google Cloud SQL with SSL, , $cfg['Servers'][$i]['ssl_key'], , $cfg['Servers'][$i]['ssl_ca'], , $cfg['Servers'][$i]['ssl_ciphers'],

    If a user has only column-specific privileges on some (but not all) columns in a table, “Browse” will fail with an error message.

    As a workaround, a bookmarked query with the same name as the table can be created, this will run when using the “Browse” link instead. Issue 11922.

    Trouble logging back in after logging out using ‘http’ authentication