Customizing Plesk Title Bar Text

To create custom Plesk title bar text:

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

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

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

To change custom Plesk title bar text:

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

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

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

To delete custom Plesk title bar text:

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

    delete from misc where param='custom_title'