Simple Minecraft RCON Web Console with account system (using PHP, MySQL and Javascript)
Inspired by Minecraft-RCON-Console and using PHP-Minecraft-Rcon.
- Edit your Minecraft server
server.propertiesconfiguration file in order to enable RCON:
enable-rcon=true
rcon.port=25575
rcon.password=xtMJsVtmx0XypuId7jIb
- Restart your Minecraft server.
- Download/Clone the Minecraft RCON Web Console files and create the
auth/credentials.phpfile. Provide your MySQL Database credentials there:
<?php
define("DB_HOST", "localhost");
define("DB_USERNAME", "mc_rcon");
define("DB_PASSWORD", "69");
define("DB_NAME", "minecraft_rcon");
define("DB_PORT", 3306);
define("DB_SOCKET", "/run/mysqld/mysqld.sock");
?>