Changeset 17 for trunk/www/server.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/server.php

    r16 r17  
    1717  {
    1818    $this->Database = $Database;
    19     $this->Task = new Task(&$Database);
     19    $this->Task = new Task($Database);
    2020    $this->Id = $Id;
    2121    $DbResult = $this->Database->query('SELECT * FROM `Server` WHERE `Id`='.$Id);
     
    162162    $Content = array
    163163    (
    164       'run -c server/'.$this->Id.'/etc/realmd.conf',
     164      'run -c server/'.$this->Id.'/etc/mangosd.conf',
    165165      'info thread',
    166166    );
     
    176176      '#!/bin/sh',
    177177      'while [ 1=1 ] ; do',
    178       'gdb emulator/'.$this->Id.'/bin/mangos-worldd -x 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 emulator/'.$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',
     
    217217    $Config->ParameterList['DataDir'] = 'wowclient/'.$this->Server['Database']['Emulator']['ClientVersion']['Version'];
    218218    $Config->ParameterList['LogsDir'] = 'server/'.$this->Id.'/log';
     219    $Config->ParameterList['LogLevel'] = 1;
     220    $Config->ParameterList['LogSQL'] = 0;
    219221    $ServerTypes = array(0 => 0, 1 => 1, 2 => 6, 3 => 8);
    220222    $Config->ParameterList['GameType'] = $ServerTypes[$this->Server['Type']];
Note: See TracChangeset for help on using the changeset viewer.