index : archweb32 | |
Archlinux32 website | gitolite user |
summaryrefslogtreecommitdiff |
author | Erich Eckner <git@eckner.net> | 2018-06-22 13:32:13 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-06-22 13:48:27 +0200 |
commit | 857d7d193c454ff18c4c15089bc465178415a5a8 (patch) | |
tree | f5ed8d15da3e0fcbb8438358c187affc33f0fb52 /lib | |
parent | d581dfe75d5b4add6dad2af67588f44edae257b9 (diff) |
-rw-r--r-- | lib/mysql.php | 13 |
diff --git a/lib/mysql.php b/lib/mysql.php index 60bfa3a..6d575ad 100644 --- a/lib/mysql.php +++ b/lib/mysql.php @@ -20,9 +20,18 @@ function mysql_run_query($query) { } function show_warning_on_offline_slave() { - $result = mysql_run_query("SHOW STATUS LIKE \"Slave_running\""); + $result = mysql_run_query( + "SHOW STATUS LIKE \"Slave_running\"" + ); if (($result -> num_rows == 0) || ($result -> fetch_assoc() ["Value"] != "ON")) { - print "<div><font color=\"ff0000\">The replication slave is currently not running. The database might be outdated.</font></div>\n"; + $result = mysql_run_query( + "SELECT 1 FROM `ssh_log`" . + " WHERE ADDTIME(`ssh_log`.`date`,\"1:00\")>NOW()" . + " LIMIT 1" + ); + if ($result -> num_rows == 0) { + print "<div><font color=\"ff0000\">The replication slave is currently not running. The database might be outdated.</font></div>\n"; + } } } |