Changeset 18


Ignore:
Timestamp:
Jun 12, 2009, 9:48:48 AM (15 years ago)
Author:
george
Message:
  • Opraveno: Cesta k načítání konfigurace mangosu pro ladící záznamy.
  • Přidáno: Odkaz na zobrazení ladících záznamů mangosu.
  • Opraveno: Chybná cesta ke mangos.gdb soubrou.
Location:
trunk/www
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/mangos_debug.php

    r17 r18  
    9898    $ServerId = $_SERVER['argv'][1];
    9999    $LogDir = '../server/'.$ServerId.'/log/';
    100     $MangosConfFile = $LogDir.'mangosd.conf';
     100    $MangosConfFile = '../server/'.$ServerId.'/etc/mangosd.conf';
    101101    $StdOutLogFile = $LogDir.'mangos-worldd.log';
    102102    $ErrOutLogFile = $LogDir.'mangos-worldd.err';
  • trunk/www/page.php

    r14 r18  
    3030      $DbResult = $this->Database->query('SELECT COUNT(*) FROM Server WHERE User='.$this->System->Modules['User']->User['Id']);
    3131      $DbRow = $DbResult->fetch_row();
    32       if($DbRow[0] > 0) $Output .= ' <a href="?Action=ServerShow">Vlastní server</a>';
    33       else $Output .= ' <a href="?Action=ServerAdd">Vytvořit vlastní server</a>';
     32      if($DbRow[0] > 0)
     33      {
     34        $Output .= ' <a href="?Action=ServerShow">Vlastní server</a>';
     35        $Output .= ' <a href="?Action=ServerDebug">Ladící záznamy</a>';
     36      } else $Output .= ' <a href="?Action=ServerAdd">Vytvořit vlastní server</a>';
    3437      $Output .= ' <a href="'.$this->System->Config['Web']['RootFolder'].'/?Action=UserOptions">Nastavení</a>';
    3538      if($this->System->Modules['User']->User['Role'] == USER_ROLE_ADMINISTRATOR)
  • trunk/www/server.php

    r17 r18  
    176176      '#!/bin/sh',
    177177      'while [ 1=1 ] ; do',
    178       'gdb emulator/'.$this->Id.'/bin/mangos-worldd -x emulator/'.$this->Id.'/bin/mangos.gdb --batch >>server/'.$this->Id.'/log/mangos-worldd.log 2>>server/'.$this->Id.'/log/mangos-worldd.err',
     178      'gdb emulator/'.$this->Id.'/bin/mangos-worldd -x server/'.$this->Id.'/bin/mangos.gdb --batch >>server/'.$this->Id.'/log/mangos-worldd.log 2>>server/'.$this->Id.'/log/mangos-worldd.err',
    179179      'cd www',
    180180      'php mangos_debug_process.php '.$this->Id.' >>server/'.$this->Id.'/log/mangos_debug.log 2>>server/'.$this->Id.'/log/mangos_debug.err',
Note: See TracChangeset for help on using the changeset viewer.