Customizing Parallels Plesk Panel Title Bar Text

To create custom Parallels Plesk Panel title bar text, follow these steps:

  1. Connect to the Parallels Plesk Panel database (psa).
  2. Run the following query:

    insert into misc(param, val) values('custom_title', 'My Custom Title')

    Where 'My Custom Title' is the Parallels Plesk Panel custom title bar text you want to set.

To change custom Parallels Plesk Panel title bar text, follow these steps:

  1. Connect to the Parallels Plesk Panel database (psa).
  2. Run the following query:

    update misc set val = 'New My Custom Title' where param='custom_title'

    Where 'My Custom Title' is the Parallels Plesk Panel custom title bar text you want to set.

To delete custom Parallels Plesk Panel title bar text, follow these steps:

  1. Connect to the Parallels Plesk Panel database (psa).
  2. Run the following query:

    delete from misc where param='custom_title'

Note: You can use the dbclient.exe utility to add the information to the Parallels Plesk Panel database. For information about using the dbclient.exe utility, consult Parallels Plesk Panel for Windows Command Line Interface Reference.