User panel stuff on forum
  2 posts on 1 page  1
Server Talk
2015-06-29, 04:30
Member
8 posts

Registered:
Jun 2015
Hey guys,

I've started a little summer project trying to host a Quake 1 (epsilon build) coop server on a Raspberry Pi 2. What I was wondering is if there is a way to push the server status to a website. I've got al little web server as kind of a portal to all the servers I'm hosting at the moment and would love to be able to display my Quake 1 server status on it. Is this possible? How do I do it?
2015-06-29, 11:29
Member
7 posts

Registered:
May 2015
Good day!
Im not that good on this things but you can install qstat and use that like this!


Create a file called server.php or something and add this:

<?php
$output = `/path_to_qstat -P -qws localhost:27500`;
echo '<pre>';
echo nl2br($output);
?>
  2 posts on 1 page  1