I installed Zabbix server, everything works well, but after opening up the dashboard, it shows zabbix server running Value NO. Also it the bottom of the page shows (zabbix server is running no information provided my be not current). Note: the configuration of zabbix.conf.php is as bellow:
<?php
// Zabbix GUI configuration file.
global $DB;
$DB['TYPE'] = 'MYSQL';
$DB['SERVER'] = 'localhost';
$DB['PORT'] = '0';
$DB['DATABASE'] = 'zabbix';
$DB['USER'] = 'zabbix';
$DB['PASSWORD'] = 'NA@2016berat';
// Schema name. Used for IBM DB2 and PostgreSQL.
$DB['SCHEMA'] = '';
$ZBX_SERVER = 'IP address of Server';
$ZBX_SERVER_PORT = '10051';
$ZBX_SERVER_NAME = 'Zabbix Server';
$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
Potential reasons:
In your case, if your literal config is like this:
$ZBX_SERVER = 'IP address of Server';
You should fix that to have the actual IP address of the Zabbix server.