MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides  
Homepage Register FAQ Members Mark Forums Read Advertise Marketplace FPSowned


Go Back   MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides > Programming > Server side > PHP
Reload this Page Realm Status
PHP Discussions about PHP

Reply
 
LinkBack Thread Tools
Realm Status
(#1)
Old
volitle's Avatar
volitle is Offline
Contributor
Rep Power: 2
Reputation: 127
volitle will become famous soon enoughvolitle will become famous soon enough
 
Posts: 900
Join Date: Nov 2007
Location: Kagnus WoW
Realm Status - 08-15-2008

Hey just wondering if anyone had a realm status script handy that doesn't require the stats.xml file, great help if you do


I am 58% addicted to World of Warcraft

Reply With Quote

Donate to remove ads.
(#2)
Old
mjmorrell3's Avatar
mjmorrell3 is Online
Sergeant
Rep Power: 1
Reputation: 24
mjmorrell3 is on a distinguished road
 
Posts: 58
Join Date: Jan 2008
08-15-2008

$ch = curl_init();
$useragent="Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.8.1.11) Gecko/20071127 Firefox/2.0.0.11";
curl_setopt ($ch, CURLOPT_URL, "http://www.worldofwarcraft.com/realmstatus/status.xml");
curl_setopt($ch, CURLOPT_USERAGENT, $useragent);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
$source = curl_exec($ch);
curl_close($ch);
$xml = new SimpleXMLElement($source);
foreach ($xml->r as $server){
echo $server['n'] . " - ";
if ($server['s'] == "1") {
echo "<font color=green><b>Online</b></font>";
} else {
echo "<font color=red><b>Offline</b></font>";

}
echo "<br>";
}


Coded by me about a month or 2 ago, requires cUrl installed on the server. Not sure if it still works
Reply With Quote
(#3)
Old
banviktor's Avatar
banviktor is Offline
Master Sergeant
Rep Power: 1
Reputation: 71
banviktor will become famous soon enough
 
Posts: 116
Join Date: Mar 2008
Location: Hungary
08-16-2008

Quote:
Originally Posted by volitle View Post
Hey just wondering if anyone had a realm status script handy that doesn't require the stats.xml file, great help if you do
for ascent?


hdbits.org; bit-hdtv.com; torrentleech.org
i need invitations to the pages listed above
i would really appreciate that (details in PM)
Reply With Quote
(#4)
Old
Vladinator's Avatar
Vladinator is Offline
Contributor
Rep Power: 3
Reputation: 241
Vladinator has a spectacular aura aboutVladinator has a spectacular aura aboutVladinator has a spectacular aura about
 
Posts: 481
Join Date: Feb 2007
08-17-2008

About officials, well the realm status page is just bullshit.. talking about the EU one. It is never up and working, just garbage just like their costumer support. Might sound outrageous but if I were able to get explosives from any Asian country I would buy it and plant some at Blizzards HQ in Paris -would feel extraordinary pleasant (revenge).


Reply With Quote
(#5)
Old
insanesk8123's Avatar
insanesk8123 is Offline
Contributor
Rep Power: 3
Reputation: 257
insanesk8123 is a jewel in the roughinsanesk8123 is a jewel in the roughinsanesk8123 is a jewel in the rough
 
Posts: 585
Join Date: Feb 2007
Location: main(String[] args)
08-17-2008

i can give ya some php that will see how many players are online and if the server is online


By Jerbab
Reply With Quote
(#6)
Old
volitle's Avatar
volitle is Offline
Contributor
Rep Power: 2
Reputation: 127
volitle will become famous soon enoughvolitle will become famous soon enough
 
Posts: 900
Join Date: Nov 2007
Location: Kagnus WoW
08-18-2008

yeh that what i need insanesk8123 for ascent not mangos


I am 58% addicted to World of Warcraft

Reply With Quote
(#7)
Old
Dark Soul's Avatar
Dark Soul is Offline
Contributor
Rep Power: 1
Reputation: 117
Dark Soul will become famous soon enoughDark Soul will become famous soon enough
 
Posts: 766
Join Date: Dec 2007
Location: AscentOS Dev PC
08-21-2008

(Credits go to PHP.net, even though I could of done this myself...) Here:
<?php
$fp = fsockopen("localhost", 80);
if (!$fp) {
echo "Down";
} else {
echo "Up";
fclose($fp);
}
?>



PHP Coder, Contact me via PMs if you need a Script made

Last edited by Dark Soul; 08-21-2008 at 12:27 AM..
Reply With Quote
(#8)
Old
volitle's Avatar
volitle is Offline
Contributor
Rep Power: 2
Reputation: 127
volitle will become famous soon enoughvolitle will become famous soon enough
 
Posts: 900
Join Date: Nov 2007
Location: Kagnus WoW
08-24-2008

Quote:
Originally Posted by Dark Soul View Post
(Credits go to PHP.net, even though I could of done this myself...) Here:
<?php
= fsockopen("localhost", 80);
if (!) {
echo "Down";
} else {
echo "Up";
fclose();
}
?>
cheers man really appreciated but im hosting the website and she is hosting the server so what do i do there


I am 58% addicted to World of Warcraft

Reply With Quote
(#9)
Old
Blackboy0's Avatar
Blackboy0 is Offline
Knight
Rep Power: 1
Reputation: 22
Blackboy0 is on a distinguished road
 
Posts: 209
Join Date: Nov 2007
Location: Alterac Valley
08-27-2008

Code:
<?php
//Server Config
 = "127.0.0.1";
 = 8129; 

if(realm_status(, ) === false)
{
echo                      "<font color=red>Offline</font>";

}
elseif(realm_status(, ) === true)
{
echo "<font color=green>Online</font>";
}
else
{
echo "<font color=yellow>Unavailable</font>";
}

function realm_status(, )
{
error_reporting(0);
 = fsockopen(,,,,3);
if(!)
{
return false;
}
else
{
return true;
}
}
?>
Alright, put in "127.0.0.1" the IP of the Server (External IP, I believe) and then the Port into the Port slot (8129 by default) and then it should update everytime she launches/shutdown Server



Last edited by Blackboy0; 09-23-2008 at 10:29 PM..
Reply With Quote
(#10)
Old
volitle's Avatar
volitle is Offline
Contributor
Rep Power: 2
Reputation: 127
volitle will become famous soon enoughvolitle will become famous soon enough
 
Posts: 900
Join Date: Nov 2007
Location: Kagnus WoW
08-29-2008

cheers man +rep i couldnt get the other one to work


I am 58% addicted to World of Warcraft

Reply With Quote
(#11)
Old
Blackboy0's Avatar
Blackboy0 is Offline
Knight
Rep Power: 1
Reputation: 22
Blackboy0 is on a distinguished road
 
Posts: 209
Join Date: Nov 2007
Location: Alterac Valley
08-30-2008

No problem mate My pleasure!


Reply With Quote
(#12)
Old
Warlockian's Avatar
Warlockian is Offline
Knight
Rep Power: 1
Reputation: 32
Warlockian is on a distinguished road
 
Posts: 199
Join Date: Aug 2008
Location: ....Behind you.
09-05-2008

Quote:
Originally Posted by Blackboy0 View Post
No problem mate My pleasure!
I tried using that one and when I went to the website, all that showed was..

Code:
//Server Config = "127.0.0.1"; = 8129; if(realm_status(, ) === false) { echo "Offline"; } elseif(realm_status(, ) === true) { echo "Online"; } else { echo "Unavailable"; } function realm_status(, ) { error_reporting(0); = fsockopen(,,,,3); if(!) { return false; } else { return true; } }


Reply With Quote
(#13)
Old
parrworg's Avatar
parrworg is Offline
Contributor
Rep Power: 2
Reputation: 82
parrworg will become famous soon enough
 
Posts: 165
Join Date: Mar 2007
09-08-2008

Quote:
Originally Posted by Warlockian View Post
I tried using that one and when I went to the website, all that showed was..

Code:
//Server Config = "127.0.0.1"; = 8129; if(realm_status(, ) === false) { echo "Offline"; } elseif(realm_status(, ) === true) { echo "Online"; } else { echo "Unavailable"; } function realm_status(, ) { error_reporting(0); = fsockopen(,,,,3); if(!) { return false; } else { return true; } }
Heh, you're missing the <?PHP and ?> tags around the code there.
Reply With Quote
(#14)
Old
Blackboy0's Avatar
Blackboy0 is Offline
Knight
Rep Power: 1
Reputation: 22
Blackboy0 is on a distinguished road
 
Posts: 209
Join Date: Nov 2007
Location: Alterac Valley
09-23-2008

Alright, my Post is updated with the PHP Tags


Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are On



Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
vBulletin Skin developed by: vBStyles.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361