Need help with setting up server brower
Need help with setting up server brower
Hello...
I'm having difficulty on setting up a server browser on my website (http://alphaproject.pro.tc).
I've seen server browsers like Crazy Tronners and United Tronners and even Rx's Server Browser but I'm having difficulty finding something similar to them.
Any help please?
I'm having difficulty on setting up a server browser on my website (http://alphaproject.pro.tc).
I've seen server browsers like Crazy Tronners and United Tronners and even Rx's Server Browser but I'm having difficulty finding something similar to them.
Any help please?
Re: Need help with setting up server brower
Have you already tried dlh's server browser?
Re: Need help with setting up server brower
ah yes...
I've tried that but for some reason, servers don't load for me...
I've tried that but for some reason, servers don't load for me...
Re: Need help with setting up server brower
I've tried again using dlh's server browser but it keeps telling me as attached in the picture.
Re: Need help with setting up server brower
I've given up on that cause I found out that fsockopen isn't allowed 
Hey is there a possibility that I could get a server browser like this working?
http://simamo.de/~manuel/arma-serverlist.js/

Hey is there a possibility that I could get a server browser like this working?
http://simamo.de/~manuel/arma-serverlist.js/
Re: Need help with setting up server brower
Feel free to iframe just that.
Re: Need help with setting up server brower
Oh COOL! Thanks 
Z-Man, I was in http://simamo.de/~manuel/serverlist/ folder cause I wondered what other awesome stuff there are and saw the things there and I didn't understand what they are used for.
Can you please explain about them?

Z-Man, I was in http://simamo.de/~manuel/serverlist/ folder cause I wondered what other awesome stuff there are and saw the things there and I didn't understand what they are used for.
Can you please explain about them?
Re: Need help with setting up server brower
It's just an svn checkout of
https://armagetronad.svn.sourceforge.ne ... serverlist
I don't know what the other things do or how apart from the obvious. I suppose they're used by the IRC bot.
https://armagetronad.svn.sourceforge.ne ... serverlist
I don't know what the other things do or how apart from the obvious. I suppose they're used by the IRC bot.
- kyle
- Reverse Outside Corner Grinder
- Posts: 1986
- Joined: Thu Jun 08, 2006 3:33 pm
- Location: Indiana, USA, Earth, Milky Way Galaxy, Universe, Multiverse
- Contact:
Re: Need help with setting up server brower
Correct (and some custom server commands)Z-Man wrote:I don't know what the other things do or how apart from the obvious. I suppose they're used by the IRC bot.

Re: Need help with setting up server brower
Cool!
You think that lastseen.php will work if I place it in my website?
Z-Man, I'm wondering why connect.php is missing from that link you provided.
You think that lastseen.php will work if I place it in my website?
Z-Man, I'm wondering why connect.php is missing from that link you provided.
Re: Need help with setting up server brower
Because you're supposed to create it yourself with the correct database and login data, like so:LOVER$BOY wrote:Z-Man, I'm wondering why connect.php is missing from that link you provided.
mysql_connect('server', 'user', 'password' );
mysql_select_db('database');
Re: Need help with setting up server brower
ah ok.
So it should be like this:
So I do that and connect it to the database but... when do i do
So it should be like this:
Code: Select all
<?php
$mysql_host = '';
$mysql_username = '';
$mysql_password = '';
$mysql_database= '';
$mysql_cnt = mysql_connect($mysql_host, $mysql_username, $mysql_password);
mysql_select_db($mysql_database);
?>
Code: Select all
mysql_close($mysql_cnt);
Re: Need help with setting up server brower
I'm no PHP expert, but wouldn't that happen automatically when the script exits and all sockets get closed?