Hey everybody!
I am trying to rebrand our zabbix server according to the documentation available (https://www.zabbix.com/documentation...ace/rebranding) and
I have created three images as per the specification given in .png file format. (114x31, 91x24, 24x24)
If I test the path for the files, they are located correctly, but I only get an image file icon like Zabbix cannot find or load the files.
Anyone experienced the same problem?
Here is my config (brand.conf.php)
I am trying to rebrand our zabbix server according to the documentation available (https://www.zabbix.com/documentation...ace/rebranding) and
I have created three images as per the specification given in .png file format. (114x31, 91x24, 24x24)
If I test the path for the files, they are located correctly, but I only get an image file icon like Zabbix cannot find or load the files.
Anyone experienced the same problem?
Code:
zafe@fw-fortigate-monitoring:~$ cd /home/zafe/Pictures zafe@fw-fortigate-monitoring:~/Pictures$ ls custom_logo.png custom_logo_sidebar_compact.png custom_logo_sidebar.png
Here is my config (brand.conf.php)
Code:
<?php
return [
'BRAND_LOGO' => '/home/zafe//Pictures/custom_logo.png',
'BRAND_LOGO_SIDEBAR' => '/home/zafe/Pictures/custom_logo_sidebar.png',
'BRAND_LOGO_SIDEBAR_COMPACT' => '/home/zafe/Pictures/custom_logo_sidebar_compact.png',
'BRAND_FOOTER' => '© Zafe Care Systems',
'BRAND_HELP_URL' => 'https://www.zafe.se/support'
];
Comment