Changeset 17 for trunk/www/index.php


Ignore:
Timestamp:
Jun 12, 2009, 9:23:36 AM (15 years ago)
Author:
george
Message:
  • Opraveno: Načítání log souborů mangosu do databáze.
  • Přidáno: Zobrazení ladících informací mangosu.
  • Opraveno: Správná cesta ke gdb souboru.
  • Opraveno: Chybně použit konfigurační soubor realmd.conf pro process mangos-worldd.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/index.php

    r15 r17  
    334334        } else $Output .= $this->SystemMessage('Překlad emulátoru', 'Nebylo zadáno Id');
    335335      } else
     336      if($_GET['Action'] == 'ServerDebug')
     337      {
     338        if($this->System->Modules['User']->User['Role'] >= USER_ROLE_USER)
     339        {       
     340          $Output = '<div>Ladící informace serveru</div>';
     341          $DbResult = $this->Database->query('SELECT Id FROM Server WHERE User='.$this->System->Modules['User']->User['Id']);
     342          $Server = $DbResult->fetch_assoc();
     343          $MangosDebug = new MangosDebug($this->Database);
     344          $Output .= $MangosDebug->Show($Server['Id']);
     345        } else $Output .= USER_BAD_ROLE;
     346      } else
    336347      if($_GET['Action'] == 'Test')
    337348      {
Note: See TracChangeset for help on using the changeset viewer.