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
Alles
  • Alles
  • Artikel
  • Seiten
  • Dateien
  • Forum
  • Lexikon
  • Erweiterte Suche
  1. GSManager
  2. Mitglieder
  3. net2018

Beiträge von net2018

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!
  • How do I use the GSManager API?

    • net2018
    • 10. Juni 2018 um 14:23

    ty for your help and now if i try to log i get WebSocket: failed login attempt from client 127.0.0.1:56395 here my users.json for testing is

    {

    "APIUSER": {

    "group": "ops",

    "names": [

    "APIUSER"

    ],

    "api": {

    "username": "admin",

    "password": "testestetst"

    }

    }

    }

    is correct like that or no plz

    the code is


    fixed i see i need to hash the pass ty again

  • How do I use the GSManager API?

    • net2018
    • 10. Juni 2018 um 12:34

    thx for replay and i just made i try with login to api as i understand from the document i need to Open Websocket Connection "ws://127.0.0.1:3680" then Request: apilogin

    Code
    $data = array(
    
        'username' => null,
        'password' => null,
        'token' => null
    );
    
    the Answer all time bad req any help plz
  • How do I use the GSManager API?

    • net2018
    • 8. Juni 2018 um 22:31

    Hi any chance to give more info about the api

  • getDatabaseInformation don't save ip of players to database

    • net2018
    • 21. Mai 2018 um 21:44

    Hi ty for your help now i see new problem Gets the stored informations about a player the getDatabaseInformation don't save to database the ip of players
    .. daemon\core\player.php

    after few test as all we know without pbguid you can not catch multiple acc and edited again the getDatabaseInformation 'playerPBGUID' => $this->getPBGuid(), and `playerPBGUID` varchar(36) COLLATE utf8_bin NOT NULL, to add pb guid to db but no results the same as ip NULL

    Code
    $insert_array = array(
                    'playerGUID' => $this->getGuid(),
                    'firstActivityDate' => time(),
                    'lastActivityDate' => time(),
                    'firstActivityIP' => $this->getIP(),
                    'playerIP' => $this->getIP(),
                    'connections' => 1,
                    'onlineTime' => 0,
                    'online' => 1,
                    'punishmentScore' => 0
                );
    for both no result
    
    'firstActivityIP' => $this->getIP(),
    'playerIP' => $this->getIP(),
    
    $insert_array = array(
                    'playerGUID' => $this->getGuid(),
                    'playerPBGUID' => $this->getPBGuid(),
                    'firstActivityDate' => time(),
                    'lastActivityDate' => time(),
                    'firstActivityIP' => $this->getIP(),
                    'playerIP' => $this->getIP(),
                    'connections' => 1,
                    'onlineTime' => 0,
                    'online' => 1,
                    'punishmentScore' => 0
                );
    Alles anzeigen

    any help plz

  • Fatal Error killed us

    • net2018
    • 19. Mai 2018 um 09:51

    ty for your help now i see new problem Gets the stored informations about a player the getDatabaseInformation don't save to database the ip of players

    .. daemon\core\player.php


    Code
    $insert_array = array(
                    'playerGUID' => $this->getGuid(),
                    'firstActivityDate' => time(),
                    'lastActivityDate' => time(),
                    'firstActivityIP' => $this->getIP(),
                    'playerIP' => $this->getIP(),
                    'connections' => 1,
                    'onlineTime' => 0,
                    'online' => 1,
                    'punishmentScore' => 0
                );
    for both no result
    'firstActivityIP' => $this->getIP(),
    'playerIP' => $this->getIP(),
    
    
    after few test as all we know without pbguid you can not catch multiple acc and edited again the getDatabaseInformation 'playerPBGUID' => $this->getPBGuid(), and `playerPBGUID` varchar(36) COLLATE utf8_bin NOT NULL,  to add pb guid to db but no results the same as ip NULL
    
    $insert_array = array(
                    'playerGUID' => $this->getGuid(),
                    'playerPBGUID' => $this->getPBGuid(),
                    'firstActivityDate' => time(),
                    'lastActivityDate' => time(),
                    'firstActivityIP' => $this->getIP(),
                    'playerIP' => $this->getIP(),
                    'connections' => 1,
                    'onlineTime' => 0,
                    'online' => 1,
                    'punishmentScore' => 0
                );
    Alles anzeigen
  • Fatal Error killed us

    • net2018
    • 16. Mai 2018 um 21:18

    so here the error

    GeoLite2-City.mmdb

    GeoLite2-Country.mmdb

    Both file are not on GSManager\daemon\libraries\geoip folder i downloaded from https://dev.maxmind.com/geoip/geoip2/geolite2/

    and the problem fixed ty for your help ps

    Any chance to get pbGuid of player i just made try today from Chat Log plugin and i dont got working

    i tested

    Code
    public function onPlayerSay($guid, $text, $executed) {
            $search = [
              '<TIME>',
              '<PLAYER_NAME>',
              '<PLAYER_GUID>',
                '<PLAYER_PBGUID>',
              '<PLAYER_PID>',
              '<MESSAGE>'
            ];
    //print_r($guid);
            $replace = [
              date('Y-m-d H:i:s'),
              $this->players[$guid]->getName(),
              $guid,
              $this->players[$guid]->getPID(),
              $this->mod->removecolor($text),
              $text,
            ];
    
            $logline = str_replace($search, $replace, $this->config->get('chatlog', 'string'));
            $this->loghandler->write($logline, false);
        }
    Alles anzeigen
    Code
    '<PLAYER_PBGUID>' and '<PBGUID>'
    
    result just 2 number
  • Fatal Error killed us

    • net2018
    • 16. Mai 2018 um 19:07

    all this log from cmd and at the daemon.log dont show the error

    Code
    Fatal Error killed us :-(

    and any chance to activate the debug here from the config ?? so i can see from where the error is coming

    Code
    [16.05.18 19:04:12] Info: Config loaded: basics.json
    [16.05.18 19:04:12] Info: Config loaded: plugins/antiteamkill.json
    [16.05.18 19:04:12] Info: Config loaded: plugins/automessages.json
    [16.05.18 19:04:12] Info: Config loaded: plugins/balancer.json
    [16.05.18 19:04:12] Info: Config loaded: plugins/censor.json
    [16.05.18 19:04:12] Info: Config loaded: plugins/chatlog.json
    [16.05.18 19:04:12] Info: Config loaded: plugins/customcommands.json
    [16.05.18 19:04:12] Info: Config loaded: plugins/funmessages.json
    [16.05.18 19:04:12] Info: Config loaded: plugins/highticket.json
    [16.05.18 19:04:12] Info: Config loaded: plugins/killmessages.json
    [16.05.18 19:04:12] Info: Config loaded: plugins/mapcycle.json
    [16.05.18 19:04:12] Info: Config loaded: plugins/mapsettings.json
    [16.05.18 19:04:12] Info: Config loaded: plugins/nameprotection.json
    [16.05.18 19:04:12] Info: Config loaded: plugins/nuke.json
    [16.05.18 19:04:12] Info: Config loaded: plugins/pingchecker.json
    [16.05.18 19:04:12] Info: Config loaded: plugins/randommapcycle.json
    [16.05.18 19:04:12] Info: Config loaded: plugins/reports.json
    [16.05.18 19:04:12] Info: Config loaded: plugins/reservedslots.json
    [16.05.18 19:04:12] Info: Config loaded: plugins/rules.json
    [16.05.18 19:04:12] Info: Config loaded: plugins/skillscrambler.json
    [16.05.18 19:04:12] Info: Config loaded: plugins/statistics.json
    [16.05.18 19:04:12] Info: Config loaded: plugins/streakmessages.json
    [16.05.18 19:04:12] Info: Config loaded: plugins/votings.json
    [16.05.18 19:04:12] Info: Config loaded: plugins/weaponrestrictions.json
    [16.05.18 19:04:12] Info: Config loaded: plugins/welcomemessages.json
    [16.05.18 19:04:12] Info: Config loaded: users.json
    [16.05.18 19:04:12] Info: Config loaded: groups.json
    [16.05.18 19:04:12] Info: Config loaded: reasons.json
    [16.05.18 19:04:12] Info: Config loaded: aliases.json
    [16.05.18 19:04:12] Info: All config files were parsed
    [16.05.18 19:04:12] Info: GeoIP: Database C:\xampp\htdocs\GSManager\daemon\libraries\geoip\geoip.mmdb successfully opened
    [16.05.18 19:04:12] Info: GeoIP: Initialization finished
    [16.05.18 19:04:12] Info: API successfully initialized.
    [16.05.18 19:04:12] Notice: RCON connection established (xxxxxxxx)
    [16.05.18 19:04:12] Notice: Game detected: Battlefield 4
    [16.05.18 19:04:13] Notice: Punkbuster is enabled. Finish initialisation
    [16.05.18 19:04:13] Notice: Punkbuster prefix: PunkBuster Server
    [16.05.18 19:04:13] Warning: Can't register subcommand quit -> srv. The parent command doesn't exist
    [16.05.18 19:04:13] Notice: Get Punkbuster player list
    [16.05.18 19:04:13] Info: Synced playerlist with 'status' (64 players online)
    [16.05.18 19:04:13] Info: Updated gametype: conquestlarge0
    [16.05.18 19:04:13] Info: == Loading plugins and commands ==
    [16.05.18 19:04:13] Notice:  + Loading Plugin 'Automatic Messages' (v1.0.0) by Mirko911
    [16.05.18 19:04:13] Notice:  + Loading Plugin 'Team Balancer' (v1.3.0) by Master of Little
    [16.05.18 19:04:13] Notice:  + Loading Plugin 'Censor' (v1.0.0) by Mirko911
    [16.05.18 19:04:13] Notice:  + Loading Plugin 'Chatlog' (v1.0.1) by Mirko911
    [16.05.18 19:04:13] Notice:  + Loading Plugin 'Fun Messages' (v1.0.0) by Mirko911
    [16.05.18 19:04:13] Notice:  + Loading Plugin 'High Ticket' (v1.0.0) by Master of Little
    [16.05.18 19:04:13] Notice:  + Loading Plugin 'Kill Messages' (v1.0.0) by Mirko911
    [16.05.18 19:04:13] Notice:  + Loading Plugin 'MapCycle' (v1.0.0) by Master of Little
    [16.05.18 19:04:13] Notice:  + Loading Plugin 'Map Settings' (v1.0.0) by Mirko911
    [16.05.18 19:04:13] Notice:  + Loading Plugin 'Nuke' (v1.0.0) by Mirko911
    [16.05.18 19:04:13] Notice:  + Loading Plugin 'Ping Checker' (v1.0.0) by Mirko911
    [16.05.18 19:04:13] Notice:  + Loading Plugin 'Random MapCycle' (v1.0.0) by Mirko911
    [16.05.18 19:04:13] Notice:  + Loading Plugin 'Reports' (v1.0.0) by Yenz
    [16.05.18 19:04:13] Notice:  + Loading Plugin 'Reserved Slots' (v1.0.0) by Master of Little
    [16.05.18 19:04:13] Notice:  + Loading Plugin 'Rules' (v1.0.0) by Mirko911
    [16.05.18 19:04:13] Notice:  + Loading Plugin 'Statistics' (v1.0.0) by Mirko911
    [16.05.18 19:04:13] Notice:  + Loading Plugin 'Streak Messages' (v1.0.0) by Mirko911
    [16.05.18 19:04:13] Notice:  + Loading Plugin 'Votings' (v1.0.0) by Mirko911
    [16.05.18 19:04:13] Notice:  + Loading Plugin 'Weapon Restrictions' (v1.0.0) by Master of Little
    [16.05.18 19:04:13] Notice:  + Loading Plugin 'Welcome Messages' (v1.0.0) by Mirko911
    [16.05.18 19:04:13] Info: == Finished loading plugins (20 plugins) ==
    [16.05.18 19:04:13] Info:   !! Finished initialisation
    [16.05.18 19:04:13] Info: === Start processing loglines... ===
    
    [16.05.18 19:04:19] Info: Player 'xxxxx' quit, PID: 47, GUID: xxxxx
    [16.05.18 19:04:21] Info: Player "xxxxxx" (GUID: xxxxxx, IP: , PID: 99) joined.
    
    _____
    Fatal Error killed us :-(
    Alles anzeigen
  • Fatal Error killed us

    • net2018
    • 16. Mai 2018 um 16:27

    Self hosted

  • Fatal Error killed us

    • net2018
    • 12. Mai 2018 um 22:40

    Hi all just need your help to fix this problem all start normal just every 1 min i get

    Code
    [12.05.18 22:35:59] Notice: Game detected: Battlefield 4
    [12.05.18 22:36:00] Notice: Punkbuster is enabled. Finish initialisation
    [12.05.18 22:36:00] Notice: Punkbuster prefix: PunkBuster Server
    [12.05.18 22:36:00] Warning: Can't register subcommand quit -> srv. The parent command doesn't exist
    [12.05.18 22:36:00] Notice: Get Punkbuster player list
    [12.05.18 22:36:00] Info: Synced playerlist with 'status' (64 players online)
    [12.05.18 22:36:00] Info: Updated gametype: conquestlarge0
    [12.05.18 22:36:00] Info: == Loading plugins and commands ==
    [12.05.18 22:36:00] Notice:  + Loading Plugin 'Automatic Messages' (v1.0.0) by Mirko911
    [12.05.18 22:36:00] Notice:  + Loading Plugin 'Team Balancer' (v1.3.0) by Master of Little
    [12.05.18 22:36:00] Notice:  + Loading Plugin 'Censor' (v1.0.0) by Mirko911
    [12.05.18 22:36:00] Notice:  + Loading Plugin 'Fun Messages' (v1.0.0) by Mirko911
    [12.05.18 22:36:00] Notice:  + Loading Plugin 'High Ticket' (v1.0.0) by Master of Little
    [12.05.18 22:36:00] Notice:  + Loading Plugin 'Kill Messages' (v1.0.0) by Mirko911
    [12.05.18 22:36:00] Notice:  + Loading Plugin 'MapCycle' (v1.0.0) by Master of Little
    [12.05.18 22:36:00] Notice:  + Loading Plugin 'Map Settings' (v1.0.0) by Mirko911
    [12.05.18 22:36:00] Notice:  + Loading Plugin 'Nuke' (v1.0.0) by Mirko911
    [12.05.18 22:36:00] Notice:  + Loading Plugin 'Ping Checker' (v1.0.0) by Mirko911
    [12.05.18 22:36:00] Notice:  + Loading Plugin 'Random MapCycle' (v1.0.0) by Mirko911
    [12.05.18 22:36:00] Notice:  + Loading Plugin 'Reports' (v1.0.0) by Yenz
    [12.05.18 22:36:00] Notice:  + Loading Plugin 'Reserved Slots' (v1.0.0) by Master of Little
    [12.05.18 22:36:00] Notice:  + Loading Plugin 'Rules' (v1.0.0) by Mirko911
    [12.05.18 22:36:00] Notice:  + Loading Plugin 'Statistics' (v1.0.0) by Mirko911
    [12.05.18 22:36:00] Notice:  + Loading Plugin 'Streak Messages' (v1.0.0) by Mirko911
    [12.05.18 22:36:00] Notice:  + Loading Plugin 'Votings' (v1.0.0) by Mirko911
    [12.05.18 22:36:00] Notice:  + Loading Plugin 'Weapon Restrictions' (v1.0.0) by Master of Little
    [12.05.18 22:36:00] Notice:  + Loading Plugin 'Welcome Messages' (v1.0.0) by Mirko911
    [12.05.18 22:36:00] Info: == Finished loading plugins (19 plugins) ==
    [12.05.18 22:36:00] Info:   !! Finished initialisation
    [12.05.18 22:36:00] Info: === Start processing loglines... ===
    [12.05.18 22:36:01] Notice: Cannot connect to GSManager Master Server at 'gsmanager.de/report.php' => Skip reporting!
    _____
    Fatal Error killed us 
    Alles anzeigen
  1. Mitarbeiter
  2. Datenschutzerklärung
  3. Nutzungsbedingungen
  4. Impressum
  5. Kontakt
Community-Software: WoltLab Suite™