Jump to content

Server Stats page for XpKiller's 'BF3 Chat, GUID, Stats and Mapstats Logger'


ImportBot

Recommended Posts

Originally Posted by GR101*:

 

First of all, excellent work you are doing here.

 

Could I suggest future additional functionality?

 

Top 25 Countries page.

Top 10 expandable player stats for each country, same information as on 'Top 25 Players' page but for each country.

 

Banned Players page.

Read a local server ban list. (I tend to ban players using PB Webtool and not GGC, if GGC is under DDoS attack like recently, then the website would not be available for banning players).

 

Various pages.

Check player stats at http://battlelog.battlefield.com also for reporting players to EA.

* Restored post. It could be that the author is no longer active.
Link to comment
  • Replies 487
  • Created
  • Last Reply

Originally Posted by ty_ger07*:

 

First of all, excellent work you are doing here.

 

Could I suggest future additional functionality?

 

Top 25 Countries page.

Top 10 expandable player stats for each country, same information as on 'Top 25 Players' page but for each country.

Yes, good idea.

 

Banned Players page.

Read a local server ban list. (I tend to ban players using PB Webtool and not GGC, if GGC is under DDoS attack like recently, then the website would not be available for banning players).

This is not possible unless you store the ban list in a SQL database using a different PRoCon plugin. The page can't access the banlist.txt file for the server.

 

If you do not ban players directly via GGC-Stream, it is best to just leave the GGC-Stream information empty so all the GGC-Stream content in the stats page is not displayed.

 

I have requested from GGC-Stream that they allow me to use the API which will check for global GGC-Stream bans instead of just manual bans, but I am still waiting for their approval. They are concerned that the GUIDs processed by the page could be intercepted and are thus concerned about the privacy of players associated with those GUIDs.

 

Various pages.

Check player stats at http://battlelog.battlefield.com also for reporting players to EA.

The page already has a link to bf3stats.com, but I suppose battlelog stats and reporting players could be added.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by ty_ger07*:

 

Big update! Link in first post.

 

Changes:

- Player names in dog tags list are clickable

- More external links added to player stats page

- Link to XpKiller's plugin added at bottom of page

- Page compute time added to bottom of page

- Player world distribution map added to country stats page

- Top 10 players for each country added to country stats page

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by GR101*:

 

Again, Excellent work.

 

I like the additional player links and particular the "Top 10 players for each country added to country stats page" I think that works extremely well. Thanks.

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by GR101*:

 

I have found a small error with player Dogtags or at least I think so?

 

My player "Players GR101 has killed with Melee:" and "Players who have killed GR101 with Melee:" look correct, the error is with my "victim" stats page and it doesn't show me as his killer because he doesn't have any Melee kills himself.

 

I think the page should display the "killer" under "Dogtags" section even if he has no victims.

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by GR101*:

 

Another suggestion?

 

How about "Top 5 players per weapon type" page, expandable top 5 players per weapon type, example Dogtags, Light Machine Gun Stats, Sniper Rifle Stats, Projectile Explosive Stats etc.....

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by ty_ger07*:

 

I have found a small error with player Dogtags or at least I think so?

 

My player "Players GR101 has killed with Melee:" and "Players who have killed GR101 with Melee:" look correct, the error is with my "victim" stats page and it doesn't show me as his killer because he doesn't have any Melee kills himself.

 

I think the page should display the "killer" under "Dogtags" section even if he has no victims.

New version is posted in the first post.

 

Changes:

- Dog tag stats are visible even if player has not collected any dog tags

- Borders added around HTML 5 blocks for visual enhancement

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by ty_ger07*:

 

How about "Top 5 players per weapon type" page, expandable top 5 players per weapon type, example Dogtags, Light Machine Gun Stats, Sniper Rifle Stats, Projectile Explosive Stats etc.....

I will plan to incorporate such a feature.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Athlon*:

 

His stats plugin is working nicely. All messages show when we are in game.

 

I just can't get your page to connect. Here is the code I've put in:

 

Code:

<_php
// DATABASE INFORMATION
$db['host']		='87.xxx.xxx.xxx'; // database host
$db['uname']	='xxxhiddenxxx'; // database user name
$db['pass']		='xxxhiddenxxx'; // database password
$db['name']		='procon'; // database name

// DATABASE TABLE SUFFIX
$table_suffix	=''; // if you use a table suffix, enter it there

// DATABASE SERVER ID
$server_ID		='1'; // default server ID is 1.  If using more than one server in the same database without table suffixes, you can select a server other than the first one.

// GGC-STREAM INFORMATION
$serverId		= ''; // server ID
$key			= ''; // API Key

// SERVER NAME
$server_name	= '=WH= Warhawks Clan 32 Slot Server'; // server name to display

// CLAN NAME
$clan_name		= '=WH= Warhawks'; // your gaming clan or organization name
Of course I've hidden stuff with x's. I've triple checked and they are all correct however.

 

It just will not connect and populate the page. Here is the address of the page:

 

http://www.warhawksclan.com/player_stats.php

 

There must be something I must do on the computer running our Procon Master? Both Procon & Mysql run 24/7 on that box. Our web site is not on that box.

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by leibhold*:

 

test for SQL open on your box where SQL live

 

telnet 87.xxx.xxx.xxx 3306

 

You should get some garbage on the screen - hitting enter or waiting should get a diconnected after a while or more garbage.

 

Thats assuming you can do that from the webserver.

 

IF not create a simpe test page test.php

 

Put this in it.

<_php>

$link = mysql_connect('IP ADDRESS','dbuser','dbpassword');

if (!$link) { die('Could not connect to MySQL: ' . mysql_error());

} echo 'Connection OK'; mysql_close($link);

_>

 

Edit IPADDRESS dbuser and dbpassword to suit

 

If that doesnt come back with ok then you have issues with firewall, sql access etc.

 

check www.phogue.net/forumvb/showth...ighlight=mysql*

 

Oh also try http://www.yougetsignal.com/tools/open-ports/

to see if port 3306 is open on your host box for sql.

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Athlon*:

 

Thank you for your help! It looks like 3306 is closed. (I used yougetsignal).

 

I'll get the member who lives with that box to open the port and I'll go from there.

 

I'll report back here in case someone else reads this down the line. Great info here!

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Athlon*:

 

test for SQL open on your box where SQL live

 

telnet 87.xxx.xxx.xxx 3306

 

You should get some garbage on the screen - hitting enter or waiting should get a diconnected after a while or more garbage.

 

Thats assuming you can do that from the webserver.

 

IF not create a simpe test page test.php

 

Put this in it.

<_php>

$link = mysql_connect('IP ADDRESS','dbuser','dbpassword');

if (!$link) { die('Could not connect to MySQL: ' . mysql_error());

} echo 'Connection OK'; mysql_close($link);

_>

 

Edit IPADDRESS dbuser and dbpassword to suit

 

If that doesnt come back with ok then you have issues with firewall, sql access etc.

 

check www.phogue.net/forumvb/showth...ighlight=mysql*

 

Oh also try http://www.yougetsignal.com/tools/open-ports/

to see if port 3306 is open on your host box for sql.

Here's what I've been able to do so far.

 

1) Using 'yougetsignal.com' to test, I finally got the port to show open! :smile:

2) Trying Putty, it disconnects immediately when telneting in.

3) Your code yields:

Code:

Could not connect to MySQL: Can't connect to MySQL server on '87.xxx.xxx.xxx' (4)
I know it's set up correctly, because it's working just fine on our server. I'm going to keep poking around to see what could be blocking it now.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Athlon*:

 

I've been trying all day to get our box to allow your code to work.

 

<_php>

$link = mysql_connect('IP ADDRESS','dbuser','dbpassword');

if (!$link) { die('Could not connect to MySQL: ' . mysql_error());

} echo 'Connection OK'; mysql_close($link);

_>

 

(I put our ip, username & pw in there - and did the same thing with the full web page.)

 

I've been all over the 'net with Google and have tried entering many different settings in the command box.

 

The only progress I made today was to unblock the port. There must be a setting I'm missing. I even tried turning off the firewall and it made no difference, but of course the port is already open.

 

Is there a setting to allow warhawksclan.com to read the db?

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by leibhold*:

 

1)Using 'yougetsignal.com' to test, I finally got the port to show open!

Good start.

 

2) Trying Putty, it disconnects immediately when telneting in.

Cant use putty really - need to use telnet

How to enable

http://www.itdoescompute.com/2009/10...t-in-windows-7

 

Putty isnt a good test because you dont see what happens.

 

 

3) Your code yields:

Could not connect to MySQL: Can't connect to MySQL server on '87.xxx.xxx.xxx' (4)

 

Kind of suggests that is cant get to the sql. This is a really basic test. It also assumes that you are using the standard 3306 sql port - can you confirm this - by checking the settings on the host ?

 

If you want - pm the IP and I can test from here.

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Athlon*:

 

1)Using 'yougetsignal.com' to test, I finally got the port to show open!

Good start.

 

2) Trying Putty, it disconnects immediately when telneting in.

Cant use putty really - need to use telnet

How to enable

http://www.itdoescompute.com/2009/10...t-in-windows-7

 

Putty isnt a good test because you dont see what happens.

 

 

3) Your code yields:

Could not connect to MySQL: Can't connect to MySQL server on '87.xxx.xxx.xxx' (4)

 

Kind of suggests that is cant get to the sql. This is a really basic test. It also assumes that you are using the standard 3306 sql port - can you confirm this - by checking the settings on the host ?

 

If you want - pm the IP and I can test from here.

3306 is it. and it's what I have in the plugin in Procon - which is working great.

 

PM on it's way.

 

Thanks man.

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by leibhold*:

 

Ok the issue is with your webserver NOT the SQL

I can connect ok to SQL and I get a "Connection OK" in webpage on my web server for the test page.

 

Suggests that your webserver is blocking traffic on port 3306.

Check with your hoster to see why.

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Athlon*:

 

Ok the issue is with your webserver NOT the SQL

I can connect ok to SQL and I get a "Connection OK" in webpage on my web server for the test page.

 

Suggests that your webserver is blocking traffic on port 3306.

Check with your hoster to see why.

Thanks.

 

It's a computer owned by one of our members just for this purpose. 3306 is open according to that test web site.

 

You think it's blocking traffic from our Web site? Strange it's working for you.

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by leibhold*:

 

The website is being blocked either by

 

1. The computer which houses the sql - this would have to be a block on the firewall for your web server address

2. The webserver is blocking incomming sql traffic or traffic from the sql host.

 

As I can get to the SQL, then the SQL server should be fine - very unusual for a host to block one IP address (eg your webserver)

 

I would look at the webserver setup myself, is it hosted with commerical ?

 

Ok so the web site is comercial with dfghosting - You have to check with them if sql is allowed though the firewall there.

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Athlon*:

 

The website is being blocked either by

 

1. The computer which houses the sql - this would have to be a block on the firewall for your web server address

2. The webserver is blocking incomming sql traffic or traffic from the sql host.

 

As I can get to the SQL, then the SQL server should be fine - very unusual for a host to block one IP address (eg your webserver)

 

I would look at the webserver setup myself, is it hosted with commerical ?

 

Ok so the web site is comercial with dfghosting - You have to check with them if sql is allowed though the firewall there.

I'll check w/them - never thought of that! Thanks. I know those guys over there.

 

 

you can define allowed hosts in the mysql server too.

Did that - He can get to it, I can't. It must be DFG. I'll let you know.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Athlon*:

 

Got it going. DFG does not allow as you said. I never would have thought of that. I just figured I made a mistake somewhere and could not see it. Thank you for your help!

 

I'm hosting the pages (we have two servers) on the 'back' of another web site I own which is not w/DFG. I'm linking to them from our clan site seamlessly.

 

Now all I have to do is customize them to the look and feel of our site.

 

32 Slot Server Player Stats

18 Slot Server Player Stats

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by GR101*:

 

Sorry, back again with other suggestions / refinements?

 

1. Configurable footer section on each page to display Game Tracker server banner. (Not visible if blank).

 

2. Join Server button or URL, link back to server Battlelog page, displayed on each page and located under the main banner. (Not visible if blank).

 

3. In-built multi server menu system. (Not visible if you have 1 server).

 

Thanks for all the excellent work you are doing here.

* Restored post. It could be that the author is no longer active.
Link to comment

Archived

This topic is now archived and is closed to further replies.




  • Our picks

    • Game Server Hosting:

      We're happy to announce that EZRCON will branch out into the game server provider scene. This is a big step for us so please having patience if something doesn't go right in this area. Now, what makes us different compared to other providers? Well, we're going with the idea of having a scaleable server hosting and providing more control in how you set up your server. For example, in Minecraft, you have the ability to control how many CPU cores you wish your server to have access to, how much RAM you want to use, how much disk space you want to use. This type of control can't be offered in a single service package so you're able to configure a custom package the way you want it.

      You can see all the available games here. Currently, we have the following games available.

      Valheim (From $1.50 USD)


      Rust (From $3.20 USD)


      Minecraft (Basic) (From $4.00 USD)


      Call of Duty 4X (From $7.00 USD)


      OpenTTD (From $4.00 USD)


      Squad (From $9.00 USD)


      Insurgency: Sandstorm (From $6.40 USD)


      Changes to US-East:

      Starting in January 2022, we will be moving to a different provider that has better support, better infrastructure, and better connectivity. We've noticed that the connection/routes to this location are not ideal and it's been hard getting support to correct this. Our contract for our two servers ends in March/April respectively. If you currently have servers in this location you will be migrated over to the new provider. We'll have more details when the time comes closer to January. The new location for this change will be based out of Atlanta, GA. If you have any questions/concerns please open a ticket and we'll do our best to answer them.
      • 5 replies
    • Hello All,

      I wanted to give an update to how EZRCON is doing. As of today we have 56 active customers using the services offered. I'm glad its doing so well and it hasn't been 1 year yet. To those that have services with EZRCON, I hope the service is doing well and if not please let us know so that we can improve it where possible. We've done quite a few changes behind the scenes to improve the performance hopefully. 

      We'll be launching a new location for hosting procon layers in either Los Angeles, USA or Chicago, IL. Still being decided on where the placement should be but these two locations are not set in stone yet. We would like to get feedback on where we should have a new location for hosting the Procon Layers, which you can do by replying to this topic. A poll will be created where people can vote on which location they would like to see.

      We're also looking for some suggestions on what else you would like to see for hosting provider options. So please let us know your thoughts on this matter.
      • 4 replies
    • Added ability to disable the new API check for player country info


      Updated GeoIP database file


      Removed usage sending stats


      Added EZRCON ad banner



      If you are upgrading then you may need to add these two lines to your existing installation in the file procon.cfg. To enable these options just change False to True.

      procon.private.options.UseGeoIpFileOnly False
      procon.private.options.BlockRssFeedNews False



       
      • 2 replies
    • I wanted I let you know that I am starting to build out the foundation for the hosting services that I talked about here. The pricing model I was originally going for wasn't going to be suitable for how I want to build it. So instead I decided to offer each service as it's own product instead of a package deal. In the future, hopefully, I will be able to do this and offer discounts to those that choose it.

      Here is how the pricing is laid out for each service as well as information about each. This is as of 7/12/2020.

      Single MySQL database (up to 30 GB) is $10 USD per month.



      If you go over the 30 GB usage for the database then each additional gigabyte is charged at $0.10 USD each billing cycle. If you're under 30GB you don't need to worry about this.


      Databases are replicated across 3 zones (regions) for redundancy. One (1) on the east coast of the USA, One (1) in Frankfurt, and One (1) in Singapore. Depending on the demand, this would grow to more regions.


      Databases will also be backed up daily and retained for 7 days.




      Procon Layer will be $2 USD per month.


      Each layer will only allow one (1) game server connection. The reason behind this is for performance.


      Each layer will also come with all available plugins installed by default. This is to help facilitate faster deployments and get you up and running quickly.


      Each layer will automatically restart if Procon crashes. 


      Each layer will also automatically restart daily at midnight to make sure it stays in tip-top shape.


      Custom plugins can be installed by submitting a support ticket.




      Battlefield Admin Control Panel (BFACP) will be $5 USD per month


      As I am still working on building version 3 of the software, I will be installing the last version I did. Once I complete version 3 it will automatically be upgraded for you.





      All these services will be managed by me so you don't have to worry about the technical side of things to get up and going.

      If you would like to see how much it would cost for the services, I made a calculator that you can use. It can be found here https://ezrcon.com/calculator.html

       
      • 11 replies
    • I have pushed out a new minor release which updates the geodata pull (flags in the playerlisting). This should be way more accurate now. As always, please let me know if any problems show up.

       
      • 9 replies
×
×
  • Create New...

Important Information

Please review our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.