• The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Resolved change phpmyadmin direct access URL

Unfortunately you cannot do it, cause phpmyadmin url is hard encoded into the source somewhere.
 
Sure you can:
How to enable direct access to phpMyAdmin in order to skip login to Plesk stage?

  1. Connect to the server via SSH;
  2. Check if /usr/local/psa/admin/conf/panel.ini file exists:
    # ls -l /usr/local/psa/admin/conf/panel.ini

    2.1 If it exists, open it in any text editor for editing, for example, using vi:
    # vi /usr/local/psa/admin/conf/panel.ini

    2.2 If this file does not exist, copy it's configuration from a sample file using this command:
    # cp /usr/local/psa/admin/conf/panel.ini.sample /usr/local/psa/admin/conf/panel.ini

    Then open it with any text editor, for example, vi:
    # vi /usr/local/psa/admin/conf/panel.ini

  3. Add the following lines to it (in any part of the file):
    [databaseManagement]
    features.phpMyAdmin.loginForm.enabled = on

    This makes it possible to access phpMyAdmin by browsing the following URL:

    https://<host-name-or-IP>:8443/phpmyadmin
For Plesk for Windows:

  1. Connect to the server via RDP
  2. Check if file C:\Program Files (x86)\Parallels\Plesk\admin\conf\panel.ini exists.
    2.1 If it exists, open it in any text editor;
    2.2 If it does not exist, copy sample configuration file %plesk_dir%admin\conf\panel.ini.sample to %plesk_dir%admin\conf\panel.ini and open it in any text editor;
  3. Add the following lines to it (in any part of the file):
    [databaseManagement]
    features.phpMyAdmin.loginForm.enabled = on

    This makes it possible to access phpMyAdmin by browsing the following URL:

    https://<host-name-or-IP>:8443/phpmyadmin
 
Back
Top