Does this
page have this code
PHP Code:
function getAPI($command) {
$er = error_reporting(0);
$result = file_get_contents("http://147.202.66.3:8085/?api.".$command);
error_reporting($er);
return $result;
}
echo "Number of users: ".getAPI("UserCount")."<br/>";
echo "Rooms available: ".getAPI("RoomList");
If it does, check to makesure your ip is allowed to access this
page because it is not showing 0 or anything for me after Number of Users and Rooms available. This IP needs to be the IP address of your webserver.