MyMineMin makes it possible to view chat logs, user activity and other data in an easy to understand format via your web browser. Designed to enable server admins to better understand what’s going on in their server.
The system exports log data from one or more servers to a central database. From there a web based user interface displays the data in a human readable format. The system can exist on one server or across multiple servers.
Demo (v0.2)
Extract the files from the zip. There are 2 programs to install, the exporter script, and the web UI (User Interface).
These instructions assume you know how to run php scripts, upload files to servers, manage mysql databases.
Database
If you are running the exporter and UI on different servers, make sure that those servers can access the database, you may need to add their IP to the list of IPs that can access the database remotely.
Uploading
Single Server
If your web server and minecraft server are on the same server then copy all files across. Remove the install folder.
Multiple Servers
For web servers, remove the exporter and install folders.
Exporter
The script for exporting the data to the database is exporter/cron.php
For servers exporting data you will need to configure config/servers.php. This file contains the list of individual minecraft server installs to export. This does not need to be configured on the UI as details are read from the database.
UI (User Interface)
View the folder through a web browser after the export has run at least once.
Can not access/can not read errors
Either $cfg['directory_minecraft'] is pointing to the wrong directory or the exporter doesn't have read access to the files. For Apache you can either add www-data to your minecraft user group, or allow the files in the minecraft server directory to be read by all users (0775)
It's really slow!!!
Speed depends on the size of the log files and the speed of your web server. Because we are parsing log files every line of the file must be read, so it can take a while with large files.
Where's the Auth?
Currently use a password protected directory which most web servers have. Windows web servers IIS password protect directory and Apache .htaccess. Auth integration is in the works.