Skip to content

Choomai/Minecraft-RCON

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Minecraft-RCON

Simple Minecraft RCON Web Console with account system (using PHP, MySQL and Javascript)

Inspired by Minecraft-RCON-Console and using PHP-Minecraft-Rcon.

Configuration

  1. Edit your Minecraft server server.properties configuration file in order to enable RCON:
enable-rcon=true
rcon.port=25575
rcon.password=xtMJsVtmx0XypuId7jIb
  1. Restart your Minecraft server.
  2. Download/Clone the Minecraft RCON Web Console files and create the auth/credentials.php file. 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");
?>

About

Minecraft RCON Web (using PHP) Console

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • PHP 52.6%
  • CSS 30.6%
  • JavaScript 16.8%