My box running the Allstar monitor crashed – because it ran out of disk space.
I found that this was due to the error log (/var/log/httpd/error_log) filling up with a zillion messages like this one:
Line 29 of server.php has the problematical split function
$arr = split("\|", trim($line));
I replaced it with
$arr = preg_split("/\|/", trim($line));
There is also the same error for line 11 of link.php.
After making these changes, I deleted the error log – and it has not come back.
My system is running:
PHP 5.3.27
httpd-2.2.3-45.el5.centos.1
73
Ken