getRows($db->q("SELECT status, count(*) as cnt FROM beathaven.queue GROUP BY status")); $info = array_fill(0, 3, 0); foreach ($rows as $row) { $info[$row['status']] = $row['cnt']; } $pid = @file_get_contents('/www/parser_data/pid'); $tmp = exec("ps ". $pid); $running = (strpos($tmp, '/opt/local/bin/php') !== false) ? 1 : 0; ?>
|