after update 5.7.1, it's look like character set or encode is different between some web page
it has some display problem at Chinese language.
refer to my pictures might make you understand what I mean is
about character set (ver 5.7.1)
about character set (ver 5.7.1)
You do not have the required permissions to view the files attached to this post.
Re: about character set (ver 5.7.1)
I was able to recreate the issue in house, and filed an internal bug report (task_id=15177). I expect the issue to be fixed in the next release of Nagios XI. Thanks for reporting the bug!
Be sure to check out our Knowledgebase for helpful articles and solutions!
Re: about character set (ver 5.7.1)
Hello,
Can you please replace the latin1 line in /usr/local/nagiosxi/html/config.inc.php:
with utf8, instead of latin1, like so:
This issue should be fixed in future versions.
Can you please replace the latin1 line in /usr/local/nagiosxi/html/config.inc.php:
Code: Select all
"ndoutils" => array(
"dbtype" => 'mysql',
"dbserver" => 'localhost',
"user" => 'ndoutils',
"pwd" => 'n@gweb',
"db" => 'nagios',
"charset" => "latin1",
Code: Select all
"ndoutils" => array(
"dbtype" => 'mysql',
"dbserver" => 'localhost',
"user" => 'ndoutils',
"pwd" => 'n@gweb',
"db" => 'nagios',
"charset" => "utf8",
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
Re: about character set (ver 5.7.1)
problem is resolved, thanks for your help.
-
scottwilkerson
- DevOps Engineer
- Posts: 19396
- Joined: Tue Nov 15, 2011 3:11 pm
- Location: Nagios Enterprises
- Contact:
Re: about character set (ver 5.7.1)
Great!winsonlee wrote:problem is resolved, thanks for your help.
Locking thread