Jump to content

[BF4] Stats webpage for XpKiller's Stats Logger Plugin


tyger07

Recommended Posts

  • Replies 1.7k
  • Created
  • Last Reply

Originally Posted by ty_ger07*:

 

Ty_ger07 Can you say why my LEADERBOARD dont update ?

 

thx

The first page is on a 12 hour cache. If it's a brand new server, just wait a couple of days and it should start looking better.
* Restored post. It could be that the author is no longer active.
Link to comment
  • 3 weeks later...

Originally Posted by ty_ger07*:

 

Hi Ty_ger. Thaks for development.
How can i disable chat page in top menu?
In ./common/menu/navigation-menu.php delete the following lines:
Code:
    // chat column
    echo '
    <div class="menuitems';
    if($page == 'chat')
    {
        echo 'elected';
    }
    echo '" style="width: 11%">
    <a class="fill-div" href="' . $_SERVER['PHP_SELF'] . '_p=chat';
    if(!empty($ServerID))
    {
        echo '&sid=' . $ServerID;
    }
    echo '">Chat</a>
    </div>
    ';
https://github.com/tyger07/BF4-Serve...ation-menu.php

For extra credit, edit 'echo '" style="width: XX%">' for the other menu items to distribute the missing 11% so the total still adds up to 100%.
* Restored post. It could be that the author is no longer active.
Link to comment
  • 2 weeks later...

Originally Posted by 3Shadow3S*:

 

Hi,

I have a website how is based on OVH servers with a Mysql db for the forum.

And i have a Mysql db on Branzone for the bfh stats page on my site.

I have configured the config.ini with the branzone querys but when i launch the stats page, i have a connection error that tell me Error: Access denied for user 'Name Branzone'@'HOST ovh.net' (using password: YES)

Can you help me please ?

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

Originally Posted by s1ngular1ty*:

 

Do you think you could add a tab for weapon stats? It would be cool to see which weapons are used most and are most effective across all players on the server. A weapon leader board by each weapon class (i.e. assault rifle, sniper, handgun, etc.) would be really cool to see.

 

Just an idea.

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

Originally Posted by ty_ger07*:

 

Hi,

I have a website how is based on OVH servers with a Mysql db for the forum.

And i have a Mysql db on Branzone for the bfh stats page on my site.

I have configured the config.ini with the branzone querys but when i launch the stats page, i have a connection error that tell me Error: Access denied for user 'Name Branzone'@'HOST ovh.net' (using password: YES)

Can you help me please ?

It should be 'Branzone'@'ovh.net' instead of 'Name Branzone'@'HOST ovh.net'. It looks like you made a mistake when you edited config.php. But also, how can it be both on branzone's server and on ovh.net's server? I am confused what you are trying to do. Is the database username 'Branzone' and on ovh.net? The first one should be the database's username and the second one should be the database's location (url or IP address). For example 'mydatabase'@'123.456.789.0'
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by LCARSx64*:

 

It should be 'Branzone'@'ovh.net' instead of 'Name Branzone'@'HOST ovh.net'. It looks like you made a mistake when you edited config.php. But also, how can it be both on branzone's server and on ovh.net's server? I am confused what you are trying to do. Is the database named 'Branzone' and on ovh.net? The first one should be the database's name and the second one should be the database's location (url or IP address). For example 'mydatabase'@'123.456.789.0'

Also the remote IP address needs to be allowed to access the database via the MySQL host's firewall, and possibly (probably) you or your MySQL host may need to add the database's user as USERNAME@REMOTE_IP.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by 3Shadow3S*:

 

Many thanks for your answer. Database branzone is for stats page. Ovh is for my Website. I have the right name, password, host, and db name for branzone in the config.ini. But when I launch the Webpage, I have the error. I try on my homenas and I have same error but with dslam hosting. I think the define host in config.ini dont work when connect.ini is launch by the Webpage. This is the Web hosting how is retain by mistake.

 

Envoyé de mon SM-N9005 en utilisant Tapatalk

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

Originally Posted by ty_ger07*:

 

Ma n'y tanks for your answer. Data base bran zone is for stats page. Ovh is for m'y Web site. I have the right name, password, host, and db name for bran zone in the config.ini. But when I launch the Web page, I have the error. I try on my home nas and I have same error but with dslam hosting. I think the define host in config.ini dont work when connect.ini is launch by thé Web page. This is the Web hosting how is retain by mistake.

 

Envoyé de mon SM-N9005 en utilisant Tapatalk

There are no .ini files.

config.php

connect.php

 

Can you paste an example of your config.php file with a fake password so I can see exactly what you altered?

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

Originally Posted by 3Shadow3S*:

 

This is what i write in the file config.php (not .ini, sorry ^^)

<_php>

// server stats common config page by Ty_ger07 at http://open-web-community.com/

// THE FOLLOWING INFORMATION NEEDS TO BE FILLED IN

 

// DATABASE INFORMATION

DEFINE('HOST', 'proton.branzone.com'); // database host address

DEFINE('PORT', '3306'); // database port - default is 3306

DEFINE('NAME', 'teampfro_Stats'); // database name

DEFINE('USER', 'teampfro_3Shadow'); // database user name - sometimes the same as the database name

DEFINE('PASS', 'password'); // database password

 

// CLAN NAME

$clan_name = 'Pfr'; // your gaming clan or organization name

 

// PAGE BANNER

$banner_image = './common/images/hardline logo.png'; // your desired page header banner, image shouldn't exceed 98px in height and you can adjust the width accordingly

 

// BANNER LINK

$banner_url = 'http://battlelog.battlefield.com/bfh/fr/platoons/view/5275919832936626901/'; // where clicking the banner will take you

_>

 

And the result:

http://www.teampfr.fr/Page_stats/index.php

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

Originally Posted by ty_ger07*:

 

Error: Access denied for user 'teampfro_3Shadow'@'gw-cluster015.ovh.net' (using password: YES)

Ok, good, that looks like a more normal error message.

 

The database is configured to allow external access? If branzone doesn't allow external access to the database, you will get an access denied message.

 

ovh.net is configured to allow external connections to Branzone?

 

Ask ovh.net if the connection to branzone is being firewalled and ask branzone if the database is configured to allow external connections and is not firewalled.

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

Originally Posted by ty_ger07*:

 

I have just installed the page on my server, but for some reason all I can see is the background.

 

Any suggestions as to why this might be happening?

 

http://supremacygaming.com.au/stats/index.php

I have no idea. My stats page should be displaying an error message if something is wrong, but it isn't. It looks like a server setup issue to me.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Level*:

 

Here are the Summer Patch changes, Including constants.php and XP5_Night_01.png

 

http://www.file-upload.net/download-...patch.rar.html

 

 

LG level

Here are the all changes (Patch 27.10.2015), Including constants.php and the Map "Operation Outbreak" XP6_CMP.png

 

 

http://www.file-upload.net/download-...Patch.rar.html

 

LG Level

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

Originally Posted by ty_ger07*:

 

plz tell how to disable the cache on the home page in top players? Because time of 12 hours is too long

It has been asked and answered numerous times already.

 

In /common/functions.php

https://github.com/tyger07/BF4-Serve.functions.php

 

For each cache function, on lines which state:

Code:

$old = $now_timestamp - 43200;
reduce the number of seconds from 43200 seconds (12 hours) to the number of seconds you desire.

 

You will find multiple locations to modify in that file.

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

Originally Posted by Level*:

 

I have adapted the picture again as it was too big :ohmy: Thx on LEVEL :smile:

 

Bf4 Webstats HerbstPatch Update*

For me it is not too large? Do you have a link to your StatsPage?

 

This is my page:

 

http://rank.rnr-funclan.bplaced.net/...p_p=maps&sid=1

 

LG Level

 

PS: Here are the Summer Patch changes

 

myrcon.net/...stats-webpage-for-xpkillers-stats-logger-plugin#entry48270

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

Originally Posted by Bergi*:

 

Sometimes i got the error:

Unable to access stats database. Please notify this website's administrator.

 

If you are the administrator, please seek assistance here.

 

Error: Can't connect to MySQL server on '176.57.191.232' (111)/QUOTE]

 

http://www.kampfgruppe42.de/leaderboard/

 

I use the Database from ProCon and the gameserver, where the PlugIn is installed. Should i use a own database on my webspace?

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