Skip to content

TrinityCore/minimanager

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

minimanager

TrinityCore Web management tool

Installation

Ensure you have ext-gmp and ext-mysqli extensions included and enabled on your installation of PHP.

The minimum required version of PHP is currently PHP 7.4. However, as support for 7.4 EOL'd in November 2022 , you should upgrade to PHP 8.0 as soon as possible.

A docker compose configuration has been provided for convenience. Note that you do not need to apply the mmfpm.sql when using the docker configuration - an init script does this during build.

docker-compose -f ./.docker/docker-compose.yml up -d

Configuration

  • Ensure you have an mmfpm MySQL database created

  • Apply mmfpm.sql to your newly created database

    • mysql -u trinity -p mmfpm < SQL/mmfpm.sql
  • Extract 333a_dbc.zip, and apply the SQL file to the mmfpm database

  • Make a copy of the configuration file, and make changes as necessary

cp scripts/config.dist.php scripts/config.php
  • Ensure you have an account created in your TrinityCore installation
  • Check to make sure you have the necessary GM level set in auth.account_access

Updates to existing minimanager installations

For older installations, a change was made to improve the security of the application (though in its current state, more work must be done). Ensure your config.php includes the following lines, preferably near the bottom:

if (!defined('HEADER_LOADED')) {
  header('Location: /');
}

This is to ensure direct navigation to the configuration file is not permitted.

Releases

No releases published

Packages

No packages published

Languages

  • PHP 97.2%
  • CSS 2.0%
  • Other 0.8%