Jump to content

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


ImportBot

Recommended Posts

Originally Posted by MorpheusX(AUT)*:

 

Well, the best guess is:

Code:

Access denied for user 'wayne_hawes'@'109.70.148.109' (using password: YES)
Seems like the user doesn't have appropriate privileges.

 

@ronald32: well, then there's your problem. The connection/distance are probably too slow to allow quick loading of the webpage. Is there any real reason for keeping them at a homeserver and not moving the database to a dedicated provider?

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

Originally Posted by ronin*:

 

Hi ive attached 2 pics one of all the priv and the mysql ver ect so im not sure whats going on .

 

mver.jpgpriv.jpg

 

Thanks Wayne

 

EDIT

 

Ah think i just found out why . Is it becuase my hosting is with hostgator and there still using the old auth ver ? if so if the old odbc ver of the plugin is used it should work yes ? .

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

Originally Posted by Hutchew*:

 

Branzone offers a tinyhost server for $4.00 a month, unlimited DB's and remote connections accepted.

 

It's what we use and is blazing fast on our webadmin and stats pages.

 

FYI

 

 

Hutchew

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

Originally Posted by cc*:

 

Does anyone know of a webpage addon for this plugin that would show all these collected stats in a SINGLE leaderboard? Our server has changed IP so many times, that the stats are a mess now, they are listed as 4 servers instead of 1, so our web based leaderboard shows 4 servers too, all though the in game stats are correct, that correctly combines the stats, but it would be nice if I could show the combined stats at our website too.

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

Originally Posted by ty_ger07*:

 

Does anyone know of a webpage addon for this plugin that would show all these collected stats in a SINGLE leaderboard? Our server has changed IP so many times, that the stats are a mess now, they are listed as 4 servers instead of 1, so our web based leaderboard shows 4 servers too, all though the in game stats are correct, that correctly combines the stats, but it would be nice if I could show the combined stats at our website too.

Since I have no way of testing this (my database doesn't have multiple server IDs for the same server due to moving the server around), I will have to ask XpKiller how this should be properly handled.

 

I believe that it is a simple task of modifying the query if necessary to not take into account server IDs.

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

Originally Posted by cc*:

 

Since I have no way of testing this (my database doesn't have multiple server IDs for the same server due to moving the server around), I will have to ask XpKiller how this should be properly handled.

 

I believe that it is a simple task of modifying the query if necessary to not take into account server IDs.

I can give you access to our database if you need.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by ty_ger07*:

 

I have asked XpKiller. I am awaiting his response. All I need to do is verify how his plugin combines the server stats in the game and then do the same for the web stats page. It should be an easy task; I just want his verification so that I do it correctly.

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

Originally Posted by XpKiller*:

 

It seems that i overseen it:

 

Code:

SELECT tpr.rankScore, tpd.PlayerID , tpd.Soldiername,  SUM(tps.Score) AS Totalscore,  SUM(tps.Kills) AS Totalkills, SUM(tps.Headshots) AS Totalheadshots, SUM(tps.Deaths) AS Totaldeaths
FROM tbl_server ts  
INNER JOIN tbl_server_player tsp ON tsp.ServerID = ts.ServerID
INNER JOIN tbl_playerstats tps  ON  tsp.StatsID = tps.StatsID
INNER JOIN tbl_playerdata tpd ON tsp.PlayerID = tpd.PlayerID
INNER JOIN tbl_Playerrank tpr ON tpd.PlayerID = tpr.PlayerID 
WHERE ts.ServerGroup = 0 AND tpr.ServerGroup =  ts.ServerGroup AND tpr.rankScore BETWEEN 1 AND 20
GROUP BY tsp.PlayerID 
ORDER BY tpr.rankScore ASC;
Basically Select the ServerGroup and Group BY PlayerID

 

myrcon.net/.../advanced-in-game-admin-and-ban-enforcer-adkats

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

Originally Posted by ty_ger07*:

 

Yes, sorry, I posted the request in an old abandoned thread.

 

Speaking of abandoned...

 

I am abandoning a lot of stuff and moving on. On the chopping block is support of this code.

 

If someone is interested, they should feel free to use my base work and adapt it as necessary.

 

:smile:

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

Originally Posted by ty_ger07*:

 

Code linked to in first post updated!

 

Changes:

- Added new End Game maps

- Added new End Game modes

 

As stated though, support is being abandoned so don't expect many more updates to this code from me.

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

Originally Posted by ty_ger07*:

 

No chance for the merged leaderboard option then?

People are free to take my code and edit it. It should be pretty easy to incorporate.

 

I have been supporting this for over a year and it is time to move on.

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

Originally Posted by ty_ger07*:

 

No chance for the merged leaderboard option then?

I am simply taking a break from this sort of thing and focusing more on other things in my life. There are a lot of things I am distancing myself from.

 

My code is well structured and well commented. It should not be hard for anyone with a PHP background to continue developing this code from where I left off.

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

Originally Posted by ozplanet*:

 

I modified the base code so it can be used as a WordPress Plugin. If I find there is enough interest I might package it up for download.

 

Let me know if your interested...The site is not currently live I am still developing our new clan site.

 

Here are some screenshots.

 

Server List

List.jpg

 

Country Stats

Country.png

 

Map Stats also broken down by Day of Week

MapStats.jpg

 

The WordPress theme we are using is inFocus.

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

Originally Posted by alexrayden*:

 

I modified the base code so it can be used as a WordPress Plugin. If I find there is enough interest I might package it up for download.

 

Let me know if your interested...The site is not currently live I am still developing our new clan site.

 

Here are some screenshots.

 

Server List

List.jpg

 

Country Stats

Country.png

 

Map Stats also broken down by Day of Week

MapStats.jpg

 

The WordPress theme we are using is inFocus.

I might be interested but for joomla :P
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by lesmoky*:

 

hello,

 

Thanks for this very nice script and your hard work!!!!

It works fine and looks good.

 

i have edit the "player_stats.css" and change 2 pictures for a "dark-yellow-theme".

You can see our statspage and download the "theme-files" in my signatur or >>>here

 

 

greet LE-Sm0ky

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

Originally Posted by ty_ger07*:

 

Hello I have a problem with "Suspicios" and "Banned" pages.

What's the problem?

Thank you

The CURL extension ext/curl is not installed or enabled in your PHP installation. Check the WAMP manual for information on how to install or enable CURL on your system.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by diabolik73*:

 

The CURL extension ext/curl is not installed or enabled in your PHP installation. Check the WAMP manual for information on how to install or enable CURL on your system.

Great you are the best. I fix the problem, wamp have a bug in php_curl

Fix in this thread http://forum.wampserver.com/read.php_2,85716

Thank you very much and good job

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

Originally Posted by p19blo*:

 

hello i have the page installed fine. but it isnt actually showing any stats from either of my servers.

 

the db options in player_stats_main.php what should they be ? my web host db or my server db s they are both hosted by seperate partys.

 

http://www.battlefieldsquad.com/bftw...stats_main.php

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

Originally Posted by Flaxe*:

 

I'm using the latest version of the webpage, all the data is being stored correctly in the MySQL database, but when I look at one of my server statpages and try to see the stats for a specific player, it don't show any stats.

 

I have tried to download the webpage files again and do it all from beginning, and also deleted the database and created a new one, but it still don't work.

It's only the first server that it don't work on. Second server work good and they are in the same database.

http://mullers-mk.se/bf3/server1.php

* 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.