Changeset 67


Ignore:
Timestamp:
Aug 8, 2009, 3:34:54 PM (15 years ago)
Author:
george
Message:
  • Opraveno: Zpracování informací o selhání serveru a uložení do datanáze.
  • Opraveno: Generování čísla světů do databáze realmlistu a konfiguračních souborů realmů.
Location:
trunk/www/model
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/model/mangos_debug.php

    r62 r67  
    1111  }
    1212 
    13   function ProcessLog()
     13  function ProcessLog($RealmId)
    1414  {
    1515    global $Config;
     
    1717    $Output = '';
    1818    // Read server Id from first parameter
    19     $RealmId = $_SERVER['argv'][1];
    2019    $Realm = new Realm($this->Database, $RealmId);
    2120   
  • trunk/www/model/realm.php

    r66 r67  
    219219    $EmulatorConfig = new MangosConfigurationFile($this->Database);
    220220    $EmulatorConfig->Load($RealmEtcDir.'mangosd.conf');
     221    $EmulatorConfig->ParameterList['RealmID'] = $this->Data['Id'];
    221222    $EmulatorConfig->ParameterList['LoginDatabaseInfo'] = 'localhost;3306;server'.$this->Data['Server'].';server'.$this->Data['Server'].';server'.$this->Data['Server'].'_realmd';
    222223    $EmulatorConfig->ParameterList['WorldDatabaseInfo'] = 'localhost;3306;server'.$this->Data['Server'].';server'.$this->Data['Server'].';realm'.$this->Id.'_mangos';
  • trunk/www/model/server.php

    r65 r67  
    101101    while($Realm = $DbResult->fetch_assoc())
    102102    {
    103       $this->Database->insert('server'.$this->Id.'_realmd`.`realmlist', array('name' => addslashes($Realm['Name']), 'address' => $Config['Web']['Host'], 'port' => $Realm['NetworkPortWorldd'], 'icon' => 0, 'timezone' => 1, 'color' => 0));
     103      $this->Database->insert('server'.$this->Id.'_realmd`.`realmlist', array('id' => $Realm['Id'], 'name' => addslashes($Realm['Name']), 'address' => $Config['Web']['Host'], 'port' => $Realm['NetworkPortWorldd'], 'icon' => 0, 'timezone' => 1, 'color' => 0));
    104104    }
    105105  }
Note: See TracChangeset for help on using the changeset viewer.