1. GSManager
    1. Funktionen
    2. Unterstützte Spiele
    3. Neuigkeiten
    4. Statistiken
    5. Serverliste
  2. Lexikon
  3. Filebase
  4. Entwicklung
  5. Forum
    1. Dashboard
    2. Unerledigte Themen
  6. Web-Interface
  7. Artikel
  8. Mitglieder
    1. Letzte Aktivitäten
    2. Benutzer online
    3. Team
    4. Mitgliedersuche
  • Anmelden
  • Registrieren
  • Suche
Dieses Thema
  • Alles
  • Dieses Thema
  • Dieses Forum
  • Artikel
  • Seiten
  • Dateien
  • Forum
  • Lexikon
  • Erweiterte Suche
  1. GSManager
  2. Forum
  3. Unterstützung
  4. Installation

Mysql based configuration?

  • jchamb2010
  • 25. Juli 2010 um 15:37
Das Projekt GSManager (vormals ManuAdminMod) wurde am 01.01.2020 eingestellt - diese Internetpräsenz bleibt verfügbar, die Software wird aber nicht länger gepflegt. Vielen Dank für eure Unterstützung in den mehr als zehn vergangenen Jahren!
1. offizieller Beitrag
  • jchamb2010
    Anfänger
    Punkte
    175
    Beiträge
    29
    • 25. Juli 2010 um 15:37
    • #1

    I was just going through the files in MAM, and noticed that there is a file called mod_mysql.class.php. Basically what this file looks like it's doing is getting the configuration information out of a MySQL database.

    How do I go about enabling this? This would be greatly helpful as our server is managed remotely and I could then create a PHP based front end to manage the admins, permissions, and other settings.

    Thanks,
    Jchamb2010

  • jchamb2010
    Anfänger
    Punkte
    175
    Beiträge
    29
    • 25. Juli 2010 um 15:48
    • #2

    I figured out how to enable it through the command line (i think), now I just need the SQL files to be able to populate the database :).

  • manu
    Meister
    Punkte
    10.835
    Trophäen
    3
    Beiträge
    2.113
    • 25. Juli 2010 um 17:07
    • #3

    I can only give you the mysql code for the structure. I do not have any data for it. But I think you can easily add it by yourself

    Spoiler anzeigen
    Code
    -- phpMyAdmin SQL Dump
    -- version 3.1.3
    -- http://www.phpmyadmin.net
    --
    -- Host: localhost
    -- Erstellungszeit: 25. Juli 2010 um 17:05
    -- Server Version: 5.1.32
    -- PHP-Version: 5.2.9-1
    
    
    
    
    SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
    
    
    
    
    --
    -- Datenbank: `mam`
    --
    
    
    
    
    -- --------------------------------------------------------
    
    
    
    
    --
    -- Tabellenstruktur für Tabelle `admins`
    --
    
    
    
    
    CREATE TABLE IF NOT EXISTS `admins` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `guid` varchar(32) NOT NULL,
      `group` varchar(50) NOT NULL,
      `protected` tinyint(1) NOT NULL,
      `names` varchar(255) NOT NULL,
      PRIMARY KEY (`id`),
      UNIQUE KEY `guid` (`guid`)
    ) ENGINE=InnoDB  DEFAULT CHARSET=latin1;
    
    
    
    
    -- --------------------------------------------------------
    
    
    
    
    --
    -- Tabellenstruktur für Tabelle `config`
    --
    
    
    
    
    CREATE TABLE IF NOT EXISTS `config` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `section` varchar(50) NOT NULL,
      `name` varchar(50) NOT NULL,
      `value` varchar(255) NOT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB  DEFAULT CHARSET=latin1;
    
    
    
    
    -- --------------------------------------------------------
    
    
    
    
    --
    -- Tabellenstruktur für Tabelle `groups`
    --
    
    
    
    
    CREATE TABLE IF NOT EXISTS `groups` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `group` varchar(50) NOT NULL,
      `name` varchar(50) NOT NULL,
      PRIMARY KEY (`id`),
      UNIQUE KEY `group` (`group`)
    ) ENGINE=InnoDB  DEFAULT CHARSET=latin1;
    
    
    
    
    -- --------------------------------------------------------
    
    
    
    
    --
    -- Tabellenstruktur für Tabelle `groups_commands`
    --
    
    
    
    
    CREATE TABLE IF NOT EXISTS `groups_commands` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `group` int(11) NOT NULL,
      `command` varchar(50) NOT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB  DEFAULT CHARSET=latin1;
    
    
    
    
    -- --------------------------------------------------------
    
    
    
    
    --
    -- Tabellenstruktur für Tabelle `maps`
    --
    
    
    
    
    CREATE TABLE IF NOT EXISTS `maps` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `shortname` varchar(50) NOT NULL,
      `longname` varchar(50) NOT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB  DEFAULT CHARSET=latin1;
    
    
    
    
    -- --------------------------------------------------------
    
    
    
    
    --
    -- Tabellenstruktur für Tabelle `reasons`
    --
    
    
    
    
    CREATE TABLE IF NOT EXISTS `reasons` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `name` varchar(255) NOT NULL,
      `reason` text NOT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB  DEFAULT CHARSET=latin1;
    Alles anzeigen
  • Dieses Thema enthält 13 weitere Beiträge, die nur für registrierte Benutzer sichtbar sind.
  1. Mitarbeiter
  2. Datenschutzerklärung
  3. Nutzungsbedingungen
  4. Impressum
  5. Kontakt
Community-Software: WoltLab Suite™