Customizing Plesk Title Bar Text

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

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

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

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

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

  1. Connect to the Plesk 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 Plesk custom title bar text you want to set.

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

  1. Connect to the Plesk 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 Plesk database. For information about using the dbclient.exe utility, consult Plesk for Windows Command Line Interface Reference.