Changeset 29 for trunk/www/server.php


Ignore:
Timestamp:
Jun 13, 2009, 9:36:51 PM (15 years ago)
Author:
george
Message:
  • Upraveno: Zobrazení přihlačovacího formuláře při odhlášení, při aktivací nového účtu a obnově hesla.
  • Upraveno: Automaticky zařazení úlohy načtení nové databáze při vytvoření serveru.
  • Opraveno: Chyba generování složky map serveru.
  • Opraveno: Chyba generování haše při registraci nových herních účtů.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/server.php

    r26 r29  
    214214    $Config->ParameterList['WorldServerPort'] = $this->Server['NetworkPortWorldd'];
    215215    $Config->ParameterList['Motd'] = $this->Server['Motd'];
    216     $Config->ParameterList['DataDir'] = 'wowclient/'.$this->Server['Database']['Emulator']['ClientV']['Version'];
     216    $Config->ParameterList['DataDir'] = 'wowclient/'.$this->Server['Database']['Emulator']['Client']['Version'];
    217217    $Config->ParameterList['LogsDir'] = 'server/'.$this->Id.'/log';
    218218    $Config->ParameterList['LogLevel'] = 1;
     
    265265      else
    266266      {
     267        echo($Name.':'.strtoupper($Password));
    267268        $Password = sha1($Name.':'.strtoupper($Password));
    268269        $this->Database->query('INSERT INTO `server'.$this->Id.'_realmd`.`account` (`username`, `sha_pass_hash`, `email`, `joindate`, `expansion`) VALUES ("'.$Name.'", "'.$Password.'", "'.$Email.'", NOW(), '.$Expansion.')');
Note: See TracChangeset for help on using the changeset viewer.