changing Nagios XI window tab title
-
kendallchenoweth
- Posts: 195
- Joined: Fri Sep 13, 2013 10:43 am
changing Nagios XI window tab title
How can I configure to title on the Nagios XI tab (html page) to be something specifically identifying that Nagios XI instance vs another one?
Re: changing Nagios XI window tab title
That would not be a setting in the web interface, but rather the PHP itself. I would have to do some digging or ask a dev about that.
Former Nagios employee
-
kendallchenoweth
- Posts: 195
- Joined: Fri Sep 13, 2013 10:43 am
Re: changing Nagios XI window tab title
Is this something you can look into? I'm curious 1) how to make this change and 2) if this change would persist through an upgrade?
Thanks!
Thanks!
Re: changing Nagios XI window tab title
You can modify the following line (about line 21) in the "/usr/local/nagiosxi/html/includes/pageparts.inc.php" from this:
to this:
Note: We do not recommend making these changes. You can do this at your own risk. Also, most probably, an upgrade would wipe out the mods you made (I haven't tested this so I cannot say so sure).
Code: Select all
$pagetitle=get_product_name();Code: Select all
// $pagetitle=get_product_name();
$pagetitle=whatever;Be sure to check out our Knowledgebase for helpful articles and solutions!
- Box293
- Too Basu
- Posts: 5126
- Joined: Sun Feb 07, 2010 10:55 pm
- Location: Deniliquin, Australia
- Contact:
Re: changing Nagios XI window tab title
Make sure "whatever" is enclosed in quotes.
Code: Select all
$pagetitle="whatever";As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.