» Download Warhammer Online Server Status 0.1 (.zip 1kb)
Latest Version Released on September 14th, 2008
Licensed under BSD, Copyright © 2012

WAAAGH! Wot be me Server Status? Here be em' PHP script fer parsing dem nasty status pages.
This script will parse Mythic's Warhammer Online server status page and output a text status to your Guild's website.
During peak hours, Mythic's server status page may not be available. This script solves that problem by caching the data and only checking for updates at definable intervals.
This was made very quickly for the WAR community to have access to this information. Later features to be added will be akin to my WoW Server Status Script.
To include the script from within a PHP file, use
include_once();andwar_ss();to invoke the function. Thewar_ss();function accepts only a single variable,$server. For example:<?php include_once('war_ss.php'); $status = war_ss('Ironclaw'); echo 'Ironclaw Server is '. ucfirst($status); ?>Once you include the script, you can invoke the
war_ss();function as many times as you like.You can also call this script by-itself for a simple "offline" or "online" response.
Version History
0.1 (08/09/13) - Simple PHP function with caching





I get the error:
Warning: fopen(war_ss.cache) [function.fopen]: failed to open stream: Permission denied in /test/war-server-status-01/war_ss.php on line 41
Warning: fwrite(): supplied argument is not a valid stream resource in /test/war-server-status-01/war_ss.php on line 42
Warning: fclose(): supplied argument is not a valid stream resource in /test/war-server-status-01/war_ss.php on line 43
Setting the permissions of the folder containing the script to
0755should fix this issue. The script is trying to write its cache file. A future update will alleviate this problem.is there a way to modify the script so that we can have the red/green image as the active state and format the text with css?
Any sort of timeline on this project?
Many thanks for this. You seem to be the only person that I can find who offers this. Any chance of sending me an email when you update this?
I guess I am not getting it. I am using Joomla. Uploaded the war_ss.php to my root (as well as others), then use Jumi or Mod PHP to include php into module position.
So far the only thing I got was "Ironfist Server Is" which is what I put in as the echo (from your example above).
What do I need to do here??
Hi and thanks for the code it works great ! Just to know is it possible to modify this script to get the data from EU server (GOA) ? I have look at the european website and found nothing like the server status page or herald.
Any plans to continue working on this? Like making it look more like your WoW script?
I can confirm this works with the EU status page. The relevant page is
http://realmwar.war-europe.com/realmwar/ServerStatus.war
Thanks for the base code. :)