This repository was archived by the owner on May 9, 2018. It is now read-only.

Description
I get this error on the top players page
These are users with current top rankings on the server.

Table 'mc_stats.stats_player' doesn't exist
plugin mysql
# Only use this file if you've set "storage" to "mysql" in config.yml
# Otherwise this file will be ignored.
host: localhost
port: 3306
user: mc_stats
pass: *****
database: mc_stats
prefix: stats_
webweite conf
<?php
/**
* Copyright (c) AccountProductions and Sybren Gjaltema, 2014. All rights reserved.
*/
/**
* MySQL
*/
$mysql_host = "localhost";
$mysql_database = "mc_stats";
$mysql_port = "3306";
$mysql_user = "mc_stats";
$mysql_pwd = "*****";
$mysql_table_prefix = "stats_";
Edited by @ZacharyDuBois to be properly formatted in markdown.