• TibiaFace

    Tibiaface | Una comunidad Open Tibia donde encontras : mapas, scripts, Otserver, npc y amigos etc ...

    .
    demo menumenu

    Afiliados



    Votar:

    Ayuda Gesior 2012

    Compartir:

    Ver el tema anterior Ver el tema siguiente Ir abajo  Mensaje (Página 1 de 1.)

    1Ayuda Gesior 2012 Empty Ayuda Gesior 2012 Lun Ene 01, 2018 7:39 pm

    makarroN

    makarroN
    Nuevo Miembro
    Nuevo Miembro
    Hola buenas quisiera que me ayudaran porfavor tengo un problema al crear una cuenta en gesior 2012 me sale lo siguiente...:

    The Following Errors Have Occurred:
    Please select a game world for your character!

    y para seleccionar el world me sale:

    Suggested world:
    [change game world]
    Please select a game world for your character!

    no se como agregar un world

    Ayuda Gesior 2012 QdXcx9V

    2 participantes

    2Ayuda Gesior 2012 Empty Re: Ayuda Gesior 2012 Mar Ene 02, 2018 2:37 pm

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    le puedes agregar desde tu config.php en tu carpeta htdocs



    Ayuda Gesior 2012 YNU5B25
    2 participantes
    http://www.tibiaface.com

    3Ayuda Gesior 2012 Empty Re: Ayuda Gesior 2012 Mar Ene 02, 2018 3:10 pm

    makarroN

    makarroN
    Nuevo Miembro
    Nuevo Miembro
    No me deja seleccionar algun mundo te Dejo el codigo de createaccount.php? si puedes hecharle un vistazo porfavor?

    2 participantes

    4Ayuda Gesior 2012 Empty Re: Ayuda Gesior 2012 Mar Ene 02, 2018 3:21 pm

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    makarroN escribió:No me deja seleccionar algun mundo te Dejo el codigo de createaccount.php? si puedes hecharle un vistazo porfavor?


    si colocalo



    Ayuda Gesior 2012 YNU5B25
    2 participantes
    http://www.tibiaface.com

    5Ayuda Gesior 2012 Empty Re: Ayuda Gesior 2012 Mar Ene 02, 2018 3:23 pm

    makarroN

    makarroN
    Nuevo Miembro
    Nuevo Miembro
    config.php:


    createaccount.php:

    2 participantes

    6Ayuda Gesior 2012 Empty Re: Ayuda Gesior 2012 Mar Ene 02, 2018 3:47 pm

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    Código:
    <b>
    <?php
    $location = array(
       'GER' =>'Europe',
    //   'USA' =>'North America'
    );
    $default = 'all';

    $worlds = array();
    $worlds[0] = array('GER', 'open');
    /*
    $worlds[1] = array('GER', 'optional');
    $worlds[2] = array('GER', 'hardcore');
    $worlds[3] = array('USA', 'open');
    $worlds[4] = array('USA', 'optional');
    $worlds[5] = array('USA', 'hardcore');
    */

    $voc = array(); // if empty, Rook Sample will be used
    $voc[1] = 'Sorcerer';
    $voc[2] = 'Druid';
    $voc[3] = 'Paladin';
    $voc[4] = 'Knight';

    $suggestname = NULL; // not available
    $version = '860'; // for download link

    foreach($worlds as $k =>$v) // remove invalid worlds
       if(!isset($location[$v[0]]) || !isset($config['site']['worlds'][$k]))
          unset($worlds[$k]);

    $tmp = array();
    foreach($location as $k =>$v) // remove invalid/unused locations
       foreach($worlds as $i =>$j)
          if($j[0] == $k) {
             $tmp[$k] = $v;
             break;
          }
    $location = $tmp; unset($tmp);

    if(isset($_POST['step']) && $_POST['step'] == 'docreate') {
       $e = array();
       $s = isset($_POST['accountname']) ? $_POST['accountname'] : '';
       if($s == '')
          $e['acc'] = 'Please enter an account name!';
       elseif(strlen($s) < 6)
          $e['acc'] = 'This account name is too short!';
       elseif(strlen($s) > 10)
          $e['acc'] = 'This account name is too long!';
       else {
          $s = strtoupper($s);

          if(!ctype_alnum($s))
             $e['acc'] = 'This account name has an invalid format. Your account name may only consist of numbers 0-9 and letters A-Z!';
          elseif(!preg_match('/[A-Z0-9]/', $s))
             $e['acc'] = 'Your account name must include at least one letter A-Z!';
          else {
             $con = mysql_pconnect($config['server']['sqlHost'], $config['server']['sqlUser'], $config['server']['sqlPass']) or die('MySQL connection error.');
             mysql_select_db($config['server']['sqlDatabase']);

             if(mysql_num_rows(mysql_query('SELECT id FROM accounts WHERE name=\''.mysql_escape_string($s).'\' LIMIT 1')) != 0)
                $e['acc'] = 'This account name is already used. Please select another one!';
          }
       }
       
       $s = isset($_POST['name']) ? trim($_POST['name']) : '';

       if(empty($s))
          $e['name'] = 'Please enter a name for your character!';
       elseif(strlen($s) < 2 || strlen($s) > 29)
          $e['name'] = 'A name must have at least 2 but no more than 29 letters!';
       elseif(preg_match('/[^a-zA-Z ]/', $s))
          $e['name'] = 'This name contains invalid letters. Please use only A-Z, a-z and space!';
       elseif(!ctype_upper($s[0]))
          $e['name'] = 'The first letter of a name has to be a capital letter!';
       elseif(strpos($s, '  ') !== false)
          $e['name'] = 'This name contains more than one space between words. Please use only one space between words!';
       else {
          foreach(explode(' ', $s) as $k =>$v) {
             $words[$k] = str_split($v);
             $len = strlen($v);
             if($len == 1) {
                $e['name'] = 'This name contains a word with only one letter. Please use more than one letter for each word!';
                break;
             }
             elseif($len > 14) {
                $e['name'] = 'This name contains a word that is too long. Please use no more than 14 letters for each word!';
                break;
             }
          }
          if(!isset($e['name'])) {
             $total=0;
             foreach($words as $k =>$p) {
                if(isset($e['name']))
                   break;
                $total++;
                if($total > 3) {
                   $e['name'] = 'This name contains more than 3 words. Please choose another name!';
                   break;
                }
                $len=0;
                foreach($p as $i =>$j) {
                   $len++;
                   if($i != 0 && ctype_upper($j)) {
                      $e['name'] = 'In names capital letters are only allowed at the beginning of a word!';
                      break;
                   }
                   elseif($i == $len-1) {
                      $ff=null;
                      for($h=0;$h<strlen($v); $h++) {
                         if(in_array(strtolower($v[$h]), array('a','e','i','o','u')) !== false) {
                            $ff=true;
                            break;
                         }
                      }
                      if(!$ff) {
                         $e['name'] = 'This name contains a word without vowels. Please choose another name!';
                         break;
                      }
                   }
                }
             }
             if(!isset($e['name'])) {
                $s = strtolower($s);
                for($i = 0; $i < strlen($s); $i++)
                   if($s[$i] == $s[($i+1)] && $s[$i] == $s[($i+2)]) {
                      $e['name'] = 'This character name is already used. Please select another one!';
                      break;
                   }
                if(!isset($e['name'])) {
                   foreach(array('aa ', 'ee', 'ii', 'oo', 'uu', 'gm','cm', 'aff ', 'god ', 'abc', 'tutor', 'game', 'admin', 'the ','dragon lord','medusa','amazon','valkyrie','carrion worm','rotworm','rotworm queen','cockroach','kongra','merlkin','sibang','crystal spider','giant spider','poison spider','scorpion','spider','tarantula','achad','axeitus headbanger','bloodpaw','bovinus','colerian the barbarian','cursed gladiator','frostfur','orcus the cruel','rocky','the hairy one','avalanche','drasilla','grimgor guteater','kreebosh the exile','slim','spirit of earth','spirit of fire','spirit of water','the dark dancer','the hag','darakan the executioner','deathbringer','fallen mooh','tah master ghar','gnorre chyllson','norgle glacierbeard','svoren the mad','the masked marauder','the obliverator','the pit lord','webster','barbarian bloodwalker','barbarian brutetamer','barbarian headsplitter','barbarian skullhunter','bear','panda','polar bear','braindeath','beholder','elder beholder','gazer','chicken','dire penguin','flamingo','parrot','penguin','seagull','terror bird','bazir','infernatil','thul','munster','son of verminor','xenia','zoralurk','big boss trolliver','foreman kneebiter','mad technomancer','man in the cave','lord of the elements','the count','the plasmother','dracola','the abomination','the handmaiden','mr. punish','the countess sorrow','the imperor','massacre','apocalypse','brutus bloodbeard','deadeye devious','demodras','dharalion','fernfang','ferumbras','general murius','ghazbaran','grorlam','lethal lissy','morgaroth','necropharus','orshabaal','ron the ripper','the evil eye','the horned fox','the old widow','tiquandas revenge','apprentice sheng','dog','hellhound','war wolf','winter wolf','wolf','chakoya toolshaper','chakoya tribewarden','chakoya windcaller','blood crab','crab','frost giant','frost giantess','ice golem','yeti','acolyte of the cult','adept of the cult','enlightened of the cult','novice of the cult','ungreez','dark torturer','demon','destroyer','diabolic imp','fire devil','fury','hand of cursed fate','juggernaut','nightmare','plaguesmith','blue djinn','efreet','green djinn','marid','frost dragon','wyrm','sea serpent','dragon lord','dragon','hydra','dragon hatchling','dragon lord hatchling','frost dragon hatchling','dwarf geomancer','dwarf guard','dwarf soldier','dwarf','dworc fleshhunter','dworc venomsniper','dworc voodoomaster','elephant','mammoth','elf arcanist','elf scout','elf','charged energy elemental','energy elemental','massive energy elemental','overcharged energy elemental','energy overlord','cat','lion','tiger','azure frog','coral frog','crimson frog','green frog','orchid frog','toad','jagged earth elemental','muddy earth elemental','earth elemental','massive earth elemental','earth overlord','gargoyle','stone golem','ghost','phantasm','phantasm','pirate ghost','spectre','cyclops smith','cyclops drone','behemoth','cyclops','slick water elemental','roaring water elemental','ice overlord','water elemental','massive water elemental','ancient scarab','butterfly','bug','centipede','exp bug','larva','scarab','wasp','lizard sentinel','lizard snakecharmer','lizard templar','minotaur archer','minotaur guard','minotaur mage','minotaur','squirrel','goblin demon','badger','bat','deer','the halloween hare','hyaena','pig','rabbit','silver rabbit','skunk','wisp','dark monk','monk','tha exp carrier','necromancer','priestess','orc berserker','orc leader','orc rider','orc shaman','orc spearman','orc warlord','orc warrior','orc','goblin leader','goblin scavenger','goblin','goblin assassin','assasin','bandit','black knight','hero','hunter','nomad','smuggler','stalker','poacher','wild warrior','ashmunrah','dipthrah','mahrdis','morguthis','omruc','rahemos','thalas','vashresamun','pirate buccaneer','pirate corsair','pirate cutthroat','pirate marauder','carniphila','spit nettle','fire overlord','massive fire elemental','blistering fire elemental','blazing fire elemental','fire elemental','hellfire fighter','quara constrictor scout','quara hydromancer scout','quara mantassin scout','quara pincher scout','quara predator scout','quara constrictor','quara hydromancer','quara mantassin','quara pincher','quara predator','cave rat','rat','cobra','crocodile','serpent spawn','snake','wyvern','black sheep','sheep','mimic','betrayed wraith','bonebeast','demon skeleton','lost soul','pirate skeleton','skeleton','skeleton warrior','undead dragon','defiler','slime2','slime','bog raider','ice witch','warlock','witch','bones','fluffy','grynch clan goblin','hacker','minishabaal','primitive','tibia bug','undead minion','annihilon','hellgorak','latrivan','madareth','zugurosh','ushuriel','golgordan','thornback tortoise','tortoise','eye of the seven','deathslicer','flamethrower','magicthrower','plaguethrower','poisonthrower','shredderthrower','troll champion','frost troll','island troll','swamp troll','troll','banshee','blightwalker','crypt shambler','ghoul','lich','mummy','vampire','grim reaper','trainer','forest dragon','knight','paladin','druid','sorcerer','guard','mercenary','thief','toxiros','pyramo','lazarus','zathroth','goshnar','durin','demora','orc champion','lumenia','dracula','alezzo','prince almirith','elf warlord','random noob','magebomb') as $v)
                      if($v == substr($s, 0, strlen($v))) {
                         $e['name'] = 'This character name is already used. Please select another one!';
                         break;
                      }
                   if(!isset($e['name'])) {
                      foreach(array('game', 'customer', 'support', 'fuck', 'haha', 'sux', ' abc', 'suck', 'noob', 'tutor', 'admin', 'account', 'gay', 'password', 'manager') as $v)
                         if(strpos($s, $v) !== false) {
                            $e['name'] = 'This character name is already used. Please select another one!';
                            break;
                         }
                      if(!isset($e['name'])) {
                         if(!isset($con)) {
                            $con = mysql_pconnect($config['server']['sqlHost'], $config['server']['sqlUser'], $config['server']['sqlPass']) or die('MySQL connection error.');
                            mysql_select_db($config['server']['sqlDatabase']);
                         }
                         if(mysql_num_rows(mysql_query('SELECT id FROM players WHERE name=\''.mysql_escape_string($s).'\' LIMIT 1')) != 0)
                            $e['name'] = 'This character name is already used. Please select another one!';
                      }
                   }
                }
             }
          }
       }

       if(!isset($_POST['world']) || empty($_POST['world']))
          $e['world'] = 'Please select a game world for your character!';

       if(!isset($_POST['sex']) || ($_POST['sex'] != 'male' && $_POST['sex'] != 'female'))
          $e['sex'] = 'Please select the sex for your character!';

       if(count($voc) != 0 && (!isset($_POST['vocation']) || !is_numeric($_POST['vocation']) || !isset($voc[$_POST['vocation']])))
          $e['vocation'] = 'Please select the vocation for your character!';

       $s = isset($_POST['email']) ? $_POST['email'] : '';

       if($s == '')
          $e['email'] = 'Please enter your email address!';
       elseif(strlen($s) > 49)
          $e['email'] = 'Your email address is too long!';
       elseif(!filter_var($s, FILTER_VALIDATE_EMAIL))
          $e['email'] = 'This email address has an invalid format. Please enter a correct email address!';
       else {
          if(!isset($con)) {
             $con = mysql_pconnect($config['server']['sqlHost'], $config['server']['sqlUser'], $config['server']['sqlPass']) or die('MySQL connection error.');
             mysql_select_db($config['server']['sqlDatabase']);
          }
          if(mysql_num_rows(mysql_query('SELECT id FROM accounts WHERE email=\''.mysql_escape_string($s).'\' LIMIT 1')) != 0)
             $e['email'] = 'This email address is already used. Please enter another email address!';
       }

       $s1 = isset($_POST['password1']) ? $_POST['password1'] : '';
       $s2 = isset($_POST['password2']) ? $_POST['password2'] : '';

       if(empty($s2))
          $e['pass'] = 'Please enter the password again!';
       elseif($s1 != $s2)
          $e['pass'] = 'The two passwords do not match!';
       else {
          $err = array();
          if(strlen($s1) < 5 || strlen($s1) > 29)
             $err[] = 'The password must have at least 8 and less than 30 letters!';
          if(!ctype_alnum($s1))
             $err[] = 'The password contains invalid letters!';

          if(count($err) != 0) {
             $e['pass'] = '';
             for($i=0; $i < count($err); $i++)
                $e['pass'] .= ($i == 0 ? '' : '<br/>').$err[$i];
          }
       }

       if(!isset($_POST['agreerules']) || empty($_POST['agreerules']))
          $e['rules'] = 'You have to agree to the Tibia Rules in order to create an account!';

       if(count($e) == 0) {
          $worldid = NULL;
          foreach($config['site']['worlds'] as $id =>$name)
             if($worlds[$id] && $name == $_POST['world']) {
                $worldid = $id;
                break;
             }
          if($worldid === FALSE)
             $e['world'] = 'Please select a valid game world.';
       }

       if(count($e) != 0) {
          $main_content = '<div class="SmallBox"><div class="MessageContainer"><div class="BoxFrameHorizontal" style="background-image:url('.$layout_name.'/images/content/box-frame-horizontal.gif)"/></div><div class="BoxFrameEdgeLeftTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"/></div><div class="BoxFrameEdgeRightTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"/></div><div class="ErrorMessage"><div class="BoxFrameVerticalLeft" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif)"/></div><div class="BoxFrameVerticalRight" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif)"/></div><div class="AttentionSign" style="background-image:url('.$layout_name.'/images/content/attentionsign.gif)"/></div><b>The Following Errors Have Occurred:</b><br/>';
          foreach($e as $error) $main_content .= $error.'<br/>';
          $main_content .= '</div><div class="BoxFrameHorizontal" style="background-image:url('.$layout_name.'/images/content/box-frame-horizontal.gif)"/></div><div class="BoxFrameEdgeRightBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"/></div><div class="BoxFrameEdgeLeftBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"/></div></div></div><br/>';
       }
       else {
          $random = rand(1, 9999999);
          $n = $random;
          $cur = array();

          $q = mysql_query('SELECT id FROM accounts');
          while ($r = mysql_fetch_array($q, MYSQL_NUM))
             $cur[] = $r[0];

          while(true)
          {
             if(!in_array($n, $cur))
                break;

             $n++;

             if($n > 9999999)
                $n = 1;

             if($n == $random)
                die('Failed to create account.');
          }

          if(mysql_query("INSERT INTO accounts (id,name,password,email,created) VALUES($n,'".$_POST['accountname']."','".($config['server']['encryptionType'] == 'plain' ? $_POST['password1'] : hash($config['server']['encryptionType'], $_POST['password1']))."','".$_POST['email']."',".time().")") === true) {
             $sample = (count($voc) == 0 ? 'Rook' : $voc[$_POST['vocation']]).' Sample';
             $q = mysql_query("SELECT id,vocation,town_id,experience,level,maglevel,health,healthmax,mana,manamax,soul,lookbody,lookfeet,lookhead,looklegs,lookaddons,cap,save,posx,posy,posz FROM players WHERE name='$sample' LIMIT 1");
             if(mysql_num_rows($q) != 1)
                die('Missing sample character ('.$sample.')');

             $q = mysql_fetch_array($q);
             mysql_query('INSERT INTO players (name,world_id,account_id,level,vocation,health,healthmax,experience,lookbody,lookfeet,lookhead,looklegs,looktype,lookaddons,maglevel,mana,manamax,soul,town_id,posx,posy,posz,cap,sex,created) VALUES(\''.$_POST['name'].'\','.$worldid.','.$n.','.$q['level'].','.$q['vocation'].','.$q['health'].','.$q['healthmax'].','.$q['experience'].','.$q['lookbody'].','.$q['lookfeet'].','.$q['lookhead'].','.$q['looklegs'].','.($_POST['sex'] == 'female' ? 136 : 128).','.$q['lookaddons'].','.$q['maglevel'].','.$q['mana'].','.$q['manamax'].','.$q['soul'].','.$q['town_id'].','.$q['posx'].','.$q['posy'].','.$q['posz'].','.$q['cap'].','.($_POST['sex'] == 'female' ? 0 : 1).','.time().')');
          }
          else die('Failed to create account.');
          $main_content = '<div class="SmallBox"><div class="MessageContainer"><div class="BoxFrameHorizontal" style="background-image:url('.$layout_name.'/images/content/box-frame-horizontal.gif)"/></div><div class="BoxFrameEdgeLeftTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"/></div><div class="BoxFrameEdgeRightTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"/></div><div class="Message"><div class="BoxFrameVerticalLeft" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif)"/></div><div class="BoxFrameVerticalRight" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif)"/></div><table><tr><td class="LabelV">Note:</td><td style="width:100%"><p>Your account and character have been created successfully.</p></td></tr></table></div><div class="BoxFrameHorizontal" style="background-image:url('.$layout_name.'/images/content/box-frame-horizontal.gif)"/></div><div class="BoxFrameEdgeRightBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"/></div><div class="BoxFrameEdgeLeftBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"/></div></div></div><div class="BoxFrameHorizontal" style="background-image:url('.$layout_name.'/images/content/box-frame-horizontal.gif)"></div><div class="BoxFrameEdgeRightBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></div><div class="BoxFrameEdgeLeftBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></div><br/><div class="TableContainer"><table class="Table4" cellpadding="0" cellspacing="0"><div class="CaptionContainer"><div class="CaptionInnerContainer"><span class="CaptionEdgeLeftTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"/></span><span class="CaptionEdgeRightTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"/></span><span class="CaptionBorderTop" style="background-image:url('.$layout_name.'/images/content/table-headline-border.gif)"></span><span class="CaptionVerticalLeft" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif)"/></span><div class="Text">Download Client</div><span class="CaptionVerticalRight" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif)"/></span><span class="CaptionBorderBottom" style="background-image:url('.$layout_name.'/images/content/table-headline-border.gif)"></span><span class="CaptionEdgeLeftBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"/></span><span class="CaptionEdgeRightBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"/></span></div></div><tr><td><div class="InnerTableContainer"><table style="width:100%"><tr><td><table width="100%" cellpadding=0 cellspacing=0><tr><td style="vertical-align:top"><div class="TableShadowContainerRightTop"><div class="TableShadowRightTop" style="background-image:url('.$layout_name.'/images/content/table-shadow-rt.gif)"></div></div><div class="TableContentAndRightShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-rm.gif)"><div class="TableContentContainer"><table class="TableContent" width="100%"><tr><td><table style="width:100%;text-align:center"><tr><td><a href="http://tibiaclient.com/files/tibia'.$version.'.exe" type="application/octet-stream" target="_top"><img style="width:180px;height:180px;border:0px" src="account/download_windows.png"/></a></td><td><a href="http://tibiaclient.com/files/tibia'.$version.'.tar" type="application/octet-stream" target="_top"><img style="width:180px;height:180px;border:0px" src="account/download_linux.png"/><br/></a></td></tr><tr><td valign="top"><a href="http://tibiaclient.com/files/tibia'.$version.'.exe" type="application/octet-stream" target="_top">Windows Tibia Client '.(sprintf('%01.2f', $version / 100)).'</a></td><td valign="top"><a href="http://tibiaclient.com/files/tibia'.$version.'.tar" type="application/octet-stream" target="_top">Linux Tibia Client '.(sprintf('%01.2f', $version / 100)).'</a></td></tr><tr><td colspan="2">[<span class="HelpLink" onClick="window.open(\'http://www.tibia.com/support/content/help.php?subtopic=requirementes\', \'Help\', \'width=380px, height=310px, scrollbars=yes\')"><a>system requirements</a></span>]</td></tr></table></td></tr></table></div></div><div class="TableShadowContainer"><div class="TableBottomShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-bm.gif)"><div class="TableBottomLeftShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-bl.gif)"></div><div class="TableBottomRightShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-br.gif)"></div></div></div></td><td style="vertical-align:top"><div class="TableShadowContainerRightTop"><div class="TableShadowRightTop" style="background-image:url('.$layout_name.'/images/content/table-shadow-rt.gif)"></div></div><div class="TableContentAndRightShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-rm.gif)"><div class="TableContentContainer"><table class="TableContent" width="100%"><tr><td style="text-align:center"><img style="width:254px;height:218px;margin:7px" src="account/successful_download.jpg"/></td></tr></table></div></div><div class="TableShadowContainer"><div class="TableBottomShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-bm.gif)"><div class="TableBottomLeftShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-bl.gif)"></div><div class="TableBottomRightShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-br.gif)"></div></div></div></td></tr></table><tr><td><div class="TableShadowContainerRightTop"><div class="TableShadowRightTop" style="background-image:url('.$layout_name.'/images/content/table-shadow-rt.gif)"></div></div><div class="TableContentAndRightShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-rm.gif)"><div class="TableContentContainer"><table class="TableContent" width="100%"><tr><td class="LabelV">Disclaimer</td></tr><tr><td>The software and any related documentation is provided "as is" without warranty of any kind. The entire risk arising out of use of the software remains with you. In no event shall CipSoft GmbH be liable for any damages to your computer or loss of data.</td></tr></table></div></div><div class="TableShadowContainer"><div class="TableBottomShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-bm.gif)"><div class="TableBottomLeftShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-bl.gif)"></div><div class="TableBottomRightShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-br.gif)"></div></div></div></td></tr></table></div></table></div></td></tr>';
          return;
       }
    } else $_POST['step'] = '';

    $main_content .= '<script type="text/javascript" src="account/jquery.js"></script>
    <script type="text/javascript" src="account/create_character.js"></script>
    <script type="text/javascript">var PreselectServerLocation="'.$default.'";var g_FormName="CreateAccountAndCharacter";var g_FieldName="accountname";document.getElementById("ActiveSubmenuItemIcon_createaccount").style.visibility = "visible";';
    foreach($worlds as $k =>$v) // create dynamic server list
       $main_content .= 'ServerList.push(new Array(\''.$config['site']['worlds'][$k].'\', \''.$v[0].'\', \''.$v[1].'\'));';
    $main_content .= '</script><div style="position:relative;top:0px;left:0px"><form action="?subtopic=createaccount" method=post name="CreateAccountAndCharacter"><div class="TableContainer"><table class="Table5" cellpadding="0" cellspacing="0"><div class="CaptionContainer"><div class="CaptionInnerContainer"><span class="CaptionEdgeLeftTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></span><span class="CaptionEdgeRightTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></span><span class="CaptionBorderTop" style="background-image:url('.$layout_name.'/images/content/table-headline-border.gif)"></span><span class="CaptionVerticalLeft" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif)"></span><div class="Text">Create New Account</div><span class="CaptionVerticalRight" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif)"></span><span class="CaptionBorderBottom" style="background-image:url('.$layout_name.'/images/content/table-headline-border.gif)"></span><span class="CaptionEdgeLeftBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></span><span class="CaptionEdgeRightBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></span></div></div><tr><td><div class="InnerTableContainer"><table style="width:100%"><tr><td><div class="TableShadowContainerRightTop"><div class="TableShadowRightTop" style="background-image:url('.$layout_name.'/images/content/table-shadow-rt.gif)"></div></div><div class="TableContentAndRightShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-rm.gif)"><div class="TableContentContainer"><table class="TableContent" width="100%"><tr><td class="LabelV150"><span id="accountname_label"'.(isset($e['acc']) ? ' class="red"' : '').'>Account Name:</span></td><td><input id="accountname" name="accountname" class="CipAjaxInput" style="width:206px;float:left" value="'.(isset($_POST['accountname']) ? htmlspecialchars(substr($_POST['accountname'], 0, 30)) : '').'" size="30" maxlength="30" onBlur="SendAjaxCip({DataType: \'Container\'}, {Href: \'account/ajax_accountname.php\',PostData: \'a_AccountName=\'+this.value,Method: \'POST\'})"/><div id="accountname_indicator" class="InputIndicator" style="background-image:url(account/'.($_POST['step'] != 'docreate' || isset($e['acc']) ? 'n' : '').'ok.gif)"></div></td></tr><tr><td></td><td><span id="accountname_errormessage" class="FormFieldError">'.(isset($e['acc']) ? $e['acc'] : '').'</span></td></tr><tr><td class="LabelV150"><span id="email_label"'.(isset($e['email']) ? ' class="red"' : '').'>Email Address:</span></td><td><input id="email" name="email" class="CipAjaxInput" style="width:206px;float:left" value="'.(isset($_POST['email']) ? htmlspecialchars(substr($_POST['email'], 0, 50)) : '').'" autocomplete="off" size="30" maxlength="50" onBlur="SendAjaxCip({DataType: \'Container\'}, {Href: \'account/ajax_email.php\',PostData: \'a_EMail=\'+this.value,Method: \'POST\'})"/><div id="email_indicator" class="InputIndicator" style="background-image:url(account/'.($_POST['step'] != 'docreate' || isset($e['email']) ? 'n' : '').'ok.gif)"></div></td></tr><tr><td></td><td><span id="email_errormessage" class="FormFieldError">'.(isset($e['email']) ? $e['email'] : '').'</span></td></tr><tr><td class="LabelV150"><span id="password1_label"'.(isset($e['pass']) ? ' class="red"' : '').'>Password:</span></td><td><input id="password1" type="password" autocomplete="off" name="password1" style="width:206px;float:left" value="'.(isset($_POST['password1']) ? htmlspecialchars(substr($_POST['password1'], 0, 30)) : '').'" size="30" maxlength="30" onBlur="SendAjaxCip({DataType: \'Container\'}, {Href: \'account/ajax_password.php\',PostData: \'a_Password1=\'+getElementById(\'password1\').value+\'&a_Password2=\'+getElementById(\'password2\').value,Method: \'POST\'})"/><div id="password1_indicator" class="InputIndicator" style="background-image:url(account/'.($_POST['step'] != 'docreate' || isset($e['pass']) ? 'n' : '').'ok.gif)"></div></td></tr><tr><td class="LabelV150"><span id="password2_label"'.(isset($e['pass']) ? ' class="red"' : '').'>Password Again:</span></td><td><input id="password2" type="password" name="password2" style="width:206px;float:left" value="'.(isset($_POST['password2']) ? htmlspecialchars(substr($_POST['password2'], 0, 30)) : '').'" size="30" maxlength="30" onBlur="SendAjaxCip({DataType: \'Container\'}, {Href: \'account/ajax_password.php\',PostData: \'a_Password1=\'+getElementById(\'password1\').value+\'&a_Password2=\'+getElementById(\'password2\').value,Method: \'POST\'})"/><div id="password2_indicator" class="InputIndicator" style="background-image:url(account/'.($_POST['step'] != 'docreate' || isset($e['pass']) ? 'n' : '').'ok.gif)"></div></td></tr><tr><td></td><td><span id="password_errormessage" class="FormFieldError">'.(isset($e['pass']) ? $e['pass'] : '').'</span></td></tr></table></div></div><div class="TableShadowContainer"><div class="TableBottomShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-bm.gif)"><div class="TableBottomLeftShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-bl.gif)"></div><div class="TableBottomRightShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-br.gif)"></div></div></div></td></tr><tr><td><div class="TableShadowContainerRightTop"><div class="TableShadowRightTop" style="background-image:url('.$layout_name.'/images/content/table-shadow-rt.gif)"></div></div><div class="TableContentAndRightShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-rm.gif)"><div class="TableContentContainer"><table class="TableContent" width="100%"><tr><td class="LabelV150"><span id="charactername_label"'.(isset($e['name']) ? ' class="red"' : '').'>Character Name:</span></td><td><input id="charactername" name="name" class="CipAjaxInput" style="width:206px;float:left;position:relative" style="float:left" value="'.(isset($_POST['name']) ? htmlspecialchars(str_replace('+', ' ', substr(trim($_POST['name']), 0, 30))) : '').'" size="30" maxlength="30" onBlur="SendAjaxCip({DataType: \'Container\'}, {Href: \'account/ajax_charactername.php\',PostData: \'a_CharacterName=\'+this.value,Method: \'POST\'})"/><div id="charactername_indicator" class="InputIndicator" style="background-image:url(account/'.($_POST['step'] != 'docreate' || isset($e['name']) ? 'n' : '').'ok.gif)"></div>';
    if($suggestname)
       $main_content .= '<br/><small>[<a class="CipAjaxLink" href="https://secure.tibia.com/account/content/ajax_suggestname.php" ajaxcip="true" ajaxcip_datatype="Container">suggest name</a>]</small>';
    $main_content .= '</td></tr><tr><td></td><td><span id="charactername_errormessage" class="FormFieldError">'.(isset($e['name']) ? $e['name'] : '').'</span></td></tr><tr><td class="LabelV150"><span'.(isset($e['sex']) ? ' class="red"' : '').'>Sex:</span></td><td><table width="100%"><tr><td><span style="margin-right:75px" class="OptionContainer"><label for="sex_male"><span class="OptionContainer"><input id="sex_male" type="radio" name="sex" value="male"'.(($_POST['sex'] == 'male' || $_POST['step'] != 'docreate') ? ' checked="checked"' : '').'/><label for="sex_male">male</label></span></label></span><span class="OptionContainer"><label for="sex_female"><span class="OptionContainer"><input id="sex_female" type="radio" name="sex" value="female"'.($_POST['sex'] == 'female' ? ' checked="checked"' : '').'/><label for="sex_female">female</label></span></label></span></td><td></td></tr></table></td></tr>'.(isset($e['sex']) ? '<tr><td></td><td><span class="FormFieldError">'.$e['sex'].'</span></td></tr>' : '');
    if(count($voc) != 0) {
       $main_content .= '<tr><td class="LabelV150"><span'.(isset($e['vocation']) ? ' class="red"' : '').'>Vocation:</span></td><td><table width="100%"><tr><td>';
       foreach($voc as $k => $v)
          $main_content .= '<span style="margin-right:15px" class="OptionContainer"><label for="vocation_'.$k.'">
       <span class="OptionContainer"><input id="vocation_'.$k.'" type="radio" name="vocation" value="'.$k.'"'.($_POST['vocation'] == $k ? ' checked="checked"' : '').'/><label for="vocation_'.$k.'">'.$v.'</label></span></label></span>';
       $main_content .= '</td><td></td></tr></table></td></tr>'.(isset($e['vocation']) ? '<tr><td></td><td><span class="FormFieldError">'.$e['vocation'].'</span></td></tr>' : '');
    }
    $main_content .= '</table></div></div><div class="TableShadowContainer"><div class="TableBottomShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-bm.gif)"><div class="TableBottomLeftShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-bl.gif)"></div><div class="TableBottomRightShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-br.gif)"></div></div></div></td></tr><tr><td><div class="TableShadowContainerRightTop"><div class="TableShadowRightTop" style="background-image:url('.$layout_name.'/images/content/table-shadow-rt.gif)"></div></div><div class="TableContentAndRightShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-rm.gif)"><div class="TableContentContainer"><table class="TableContent" width="100%">';
    if(count($location)>1) { // show server location filter
       $main_content .= '<tr id="filterbox_location"><td class="LabelV150"><span'.(isset($e['world']) ? ' class="red"' : '').'>World Location:</span></td><td><table width="100%"><tr><td width="33%" valign="top"><script>CreateFilterOption(\'server_location\', \'all\', \'all\')</script>&nbsp;&nbsp;</td>';
       $i=0;
       foreach($location as $k =>$v) {
          $i++;
          $main_content .= '<td '.($i == count($location) ? '' : 'width="33%" ').'valign="top"><script>CreateFilterOption(\'server_location\', \''.$k.'\', \''.$v.'\')</script>&nbsp;&nbsp;</td>';
       }
       $main_content .= '</tr></table></td></tr>';
    }
    $main_content .= '<tr id="filterbox_pvp"><td class="LabelV150"><span'.(isset($e['world']) ? ' class="red"' : '').'>World Type:</span></td><td><div>';

    $optional=true; $open=true; $hardcore=true;

    foreach($worlds as $k =>$v) { // remove selection if there's no valid worlds
       if($optional && $v[1] == 'optional')
          unset($optional);
       elseif($open && $v[1] == 'open')
          unset($open);
       elseif($hardcore && $v[1] == 'hardcore')
          unset($hardcore);
       elseif(!$optional && !$open && !$hardcore)
          break;
    }

    $n = 0;
    foreach(array($optional, $open, $hardcore) as $k)
       if(!$k)
          $n++;
    $main_content .= '<table width="'.round(33.33 *  $n).'%"><tr>';
    if(!$optional)
       $main_content .= '<td width="'.(100 / $n).'%" align="center" valign="top"><b><script>CreateFilterOption(\'server_pvp_type\', \'optional\', \'Optional PvP\')</script></b>&nbsp;&nbsp;Only if both sides agree, characters can be fought<br/><br/></td>';
    if(!$open)
       $main_content .= '<td width="'.(100 / $n).'%" align="center" valign="top"><b><script>CreateFilterOption(\'server_pvp_type\', \'open\', \'Open PvP\')</script></b>&nbsp;&nbsp;Killing other characters is possible, but restricted<br/><br/></td>';
    if(!$hardcore)
       $main_content .= '<td align="center" valign="top"><b><script>CreateFilterOption(\'server_pvp_type\', \'hardcore\', \'Hardcore PvP\')</script></b>&nbsp;&nbsp;Killing other characters is not restricted at all<br/><br/></td>';

    $main_content .= '</tr></table></div></td></tr><tr><td class="LabelV150"><span'.(isset($e['world']) ? ' class="red"' : '').'>World Name:</span></td><td><div id="js_world_box" style="display:none"><table width="100%"><tr id="world_list_tr" style="text-align:left"></tr></table><span onClick="ToggleVisibility(\'js_world_box\', \'suggested_world_box\'); UpdateServerList(); "><small>[<a style="cursor:pointer">suggest game world</a>]</small></span></div><div id="suggested_world_box">Suggested world: <span id="suggested_world_div"></span><br/><span onClick="ToggleVisibility(\'suggested_world_box\', \'js_world_box\'); "><small>[<a style="cursor:pointer">change game world</a></span>]</small></div></td></tr><tr><td><table id="js_world_box" width="100%"><tr id="world_list_tr"></tr></table><table id="plain_world_box" width="100%"><tr><td>';
    foreach($worlds as $k =>$v)
       $main_content .= '<input id="server_static_'.$config['site']['worlds'][$k].'" type="radio" name="world" value="'.$config['site']['worlds'][$k].'"'.($config['site']['worlds'][$k] == $_POST['world'] ? ' checked="checked"' : '').'><label for="server_static_'.$config['site']['worlds'][$k].'">'.$config['site']['worlds'][$k].'</label><br/>';
    $main_content .= '</td></tr></table></td></tr>'.(isset($e['world']) ? '<tr><td></td><td><span class="FormFieldError">'.$e['world'].'</span></td></tr>' : '').'</table></div></div><div class="TableShadowContainer"><div class="TableBottomShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-bm.gif)"><div class="TableBottomLeftShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-bl.gif)"></div><div class="TableBottomRightShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-br.gif)"></div></div></div></td></tr><tr><td><div class="TableShadowContainerRightTop"><div class="TableShadowRightTop" style="background-image:url('.$layout_name.'/images/content/table-shadow-rt.gif)"></div></div><div class="TableContentAndRightShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-rm.gif)"><div class="TableContentContainer"><table class="TableContent" width="100%"><tr><td><b>Please select all of the following check boxes:</b></td></tr><tr><td><input type="checkbox" name="agreerules" value="true"  onClick="if(this.checked == true) {  document.getElementById(\'agreerules_errormessage\').innerHTML = \'\';} else {  document.getElementById(\'agreerules_errormessage\').innerHTML = \'You have to agree to the Tibia Rules in order to create an account!\';}"'.($_POST['step'] == 'docreate' && !isset($e['rules']) ? ' checked="checked"' : '').'/>I agree to the <a href="?subtopic=legaldocuments&page=rules" target="_blank">Tibia Rules</a>.</td></tr><tr><td><span id="agreeprivacy_errormessage" class="FormFieldError">'.(isset($e['privacy']) ? $e['privacy'] : '').'</span></td></tr></table></div></div><div class="TableShadowContainer"><div class="TableBottomShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-bm.gif)"><div class="TableBottomLeftShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-bl.gif)"></div><div class="TableBottomRightShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-br.gif)"></div></div></div></td></tr><script type="text/javascript">PreselectWorld="';
    if(isset($_POST['world']) && !empty($_POST['world']))
       foreach($config['site']['worlds'] as $id =>$name)
          if($worlds[$id] && $name == $_POST['world']) {
             $main_content .= $name;
             break;
          }
    $main_content .= '";InitializeCharacterCreator(PreselectServerLocation, \''.(!$optional ? 'optional' : (!$open ? 'open' : 'hardcore')).'\')</script></table></div></table></div></td></tr><br/></div><center><table border="0" cellspacing="0" cellpadding="0"><tr><td style="border:0px"><input type="hidden" name=step value=docreate><input type="hidden" name=noframe value=""><div class="BigButton" style="background-image:url('.$layout_name.'/images/buttons/sbutton.gif)"><div onMouseOver="MouseOverBigButton(this)" onMouseOut="MouseOutBigButton(this)"><div class="BigButtonOver" style="background-image:url('.$layout_name.'/images/buttons/sbutton_over.gif)"></div><input class="ButtonText" type="image" name="Submit" alt="Submit" src="'.$layout_name.'/images/buttons/_sbutton_submit.gif"></div></div></td><tr></form></table></center><script type="text/javascript" language="javascript">document.forms[\'CreateAccountAndCharacter\'].elements[\'accountname\'].focus();</script><script type="text/javascript" src="account/generic.js"></script><script type="text/javascript" src="account/ajaxcip.js"></script>';


    listo a ver prueba



    Ayuda Gesior 2012 YNU5B25
    2 participantes
    http://www.tibiaface.com

    7Ayuda Gesior 2012 Empty Re: Ayuda Gesior 2012 Mar Ene 02, 2018 4:04 pm

    makarroN

    makarroN
    Nuevo Miembro
    Nuevo Miembro
    Código:
    <?php
    if(!defined('INITIALIZED'))
     exit;

    //CREATE ACCOUNT FORM PAGE
    if($action == "")
    {
     $main_content .= '<script type="text/javascript">

    var accountHttp;

    function checkAccount()
    {
     if(document.getElementById("account_name").value=="")
     {
     document.getElementById("acc_name_check").innerHTML = \'<b><font color="red">Please enter account name.</font></b>\';
     return;
     }
     accountHttp=GetXmlHttpObject();
     if (accountHttp==null)
     {
     return;
     }
     var account = document.getElementById("account_name").value;
     var url="?subtopic=ajax_check_account&account=" + account + "&uid="+Math.random();
     accountHttp.onreadystatechange=AccountStateChanged;
     accountHttp.open("GET",url,true);
     accountHttp.send(null);
    }

    function AccountStateChanged()
    {
     if (accountHttp.readyState==4)
     {
     document.getElementById("acc_name_check").innerHTML=accountHttp.responseText;
     }
    }

    var emailHttp;

    //sprawdza czy dane konto istnieje czy nie
    function checkEmail()
    {
     if(document.getElementById("email").value=="")
     {
     document.getElementById("email_check").innerHTML = \'<b><font color="red">Please enter e-mail.</font></b>\';
     return;
     }
     emailHttp=GetXmlHttpObject();
     if (emailHttp==null)
     {
     return;
     }
     var email = document.getElementById("email").value;
     var url="?subtopic=ajax_check_email&email=" + email + "&uid="+Math.random();
     emailHttp.onreadystatechange=EmailStateChanged;
     emailHttp.open("GET",url,true);
     emailHttp.send(null);
    }

    function EmailStateChanged()
    {
     if (emailHttp.readyState==4)
     {
     document.getElementById("email_check").innerHTML=emailHttp.responseText;
     }
    }

     function validate_required(field,alerttxt)
     {
     with (field)
     {
     if (value==null||value==""||value==" ")
     {
     alert(alerttxt);
     return false;
     }
     else
     {
     return true;
     }
     }
     }

     function validate_email(field,alerttxt)
     {
     with (field)
     {
     apos=value.indexOf("@");
     dotpos=value.lastIndexOf(".");
     if (apos<1||dotpos-apos<2)
     {
     alert(alerttxt);
     return false;
     }
     else
     {
     return true;
     }
     }
     }

     function validate_form(thisform)
     {
     with (thisform)
     {
     if(validate_required(account_name,"Please enter name of new account!")==false)
     {
     account_name.focus();
     return false;
     }
     if(validate_required(email,"Please enter your e-mail!")==false)
     {
     email.focus();
     return false;
     }
     if(validate_email(email,"Invalid e-mail format!")==false)
     {
     email.focus();
     return false;
     }
     if(verifpass==1)
     {
     if(validate_required(passor,"Please enter password!")==false)
     {
     passor.focus();
     return false;
     }
     if (validate_required(passor2,"Please repeat password!")==false)
     {
     passor2.focus();
     return false;
     }
     if(passor2.value!=passor.value)
     {
     alert(\'Repeated password is not equal to password!\');
     return false;
     }
     }
     if(verifya==1)
     {
     if (validate_required(verify,"Please enter verification code!")==false)
     {
     verify.focus();return false;
     }
     }
     if(rules.checked==false)
     {
     alert(\'To create account you must accept server rules!\');
     return false;
     }
     }
     }
     </script>';
     $main_content .= 'To play on '.htmlspecialchars($config['server']['serverName']).' you need an account.
     All you have to do to create your new account is to enter your email address, password to new account, verification code from picture and to agree to the terms presented below.
     If you have done so, your account name, password and e-mail address will be shown on the following page and your account and password will be sent
     to your email address along with further instructions.<BR><BR>
     <FORM ACTION="?subtopic=createaccount&action=saveaccount" onsubmit="return validate_form(this)" METHOD=post>
     <TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=4>
     <TR><TD BGCOLOR="'.$config['site']['vdarkborder'].'" CLASS=white><B>Create an '.htmlspecialchars($config['server']['serverName']).' Account</B></TD></TR>
     <TR><TD BGCOLOR="'.$config['site']['darkborder'].'"><TABLE BORDER=0 CELLSPACING=8 CELLPADDING=0>
      <TR><TD>
        <TABLE BORDER=0 CELLSPACING=5 CELLPADDING=0>';
     $main_content .= '<TR><TD width="150" valign="top"><B>Account name: </B></TD><TD colspan="2"><INPUT id="account_name" NAME="reg_name" onkeyup="checkAccount();" VALUE="" SIZE=30 MAXLENGTH=50><BR><font size="1" face="verdana,arial,helvetica">(Please enter your new account name)</font></TD></TR>
      <TR><TD width="150"><b>Name status:</b></TD><TD colspan="2"><b><div id="acc_name_check">Please enter your account name.</div></b></TD></TR>
     <TR><TD width="150" valign="top"><B>Email address: </B></TD><TD colspan="2"><INPUT id="email" NAME="reg_email" onkeyup="checkEmail();" VALUE="" SIZE=30 MAXLENGTH=50><BR><font size="1" face="verdana,arial,helvetica">(Your email address is required to recovery an '.htmlspecialchars($config['server']['serverName']).' account)</font></TD></TR>
      <TR><TD width="150"><b>Email status:</b></TD><TD colspan="2"><b><div id="email_check">Please enter your e-mail.</div></b></TD></TR>';
     if(!$config['site']['create_account_verify_mail'])
     $main_content .= '<script type="text/javascript">var verifpass=1;</script>
     <TR><TD width="150" valign="top"><B>Password: </B></TD><TD colspan="2"><INPUT TYPE="password" id="passor" NAME="reg_password" VALUE="" SIZE=30 MAXLENGTH=50><BR><font size="1" face="verdana,arial,helvetica">(Here write your password to new account on '.htmlspecialchars($config['server']['serverName']).')</font></TD></TR>
      <TR><TD width="150" valign="top"><B>Repeat password: </B></TD><TD colspan="2"><INPUT TYPE="password" id="passor2" NAME="reg_password2" VALUE="" SIZE=30 MAXLENGTH=50><BR><font size="1" face="verdana,arial,helvetica">(Repeat your password)</font></TD></TR>';
     else
     $main_content .= '<script type="text/javascript">var verifpass=0;</script>';
     if($config['site']['verify_code'])
     $main_content .= '<script type="text/javascript">var verifya=1;</script><TR><TD width="150"><B>Code: </B></TD><TD colspan="2"><img src="?subtopic=imagebuilder&image_refresher='.mt_rand(1,99999).'" border="0" alt="Image Verification is missing, please contact the administrator"></TD></TR>
      <TR><TD width="150" valign="top"><B>Verification Code: </B></TD><TD colspan="2"><INPUT id="verify" NAME="reg_code" VALUE="" SIZE=30 MAXLENGTH=50><BR><font size="1" face="verdana,arial,helvetica">(Here write verification code from picture)</font></TD></TR>';
     else
     $main_content .= '<script type="text/javascript">var verifya=0;</script>';
     $main_content .= '</TABLE>
      </TD></TR>
      <TR><TD>
        <TABLE BORDER=0 CELLSPACING=5 CELLPADDING=0><TR><TD>
           Please review the following terms and state your agreement below.
        </TD></TR>
        <TR><TD>
          <B>'.htmlspecialchars($config['server']['serverName']).' Rules</B><BR>
          <TEXTAREA ROWS="16" WRAP="physical" COLS="75" READONLY="true">';
     //load server rules from file
     include("pages/tibiarules.php");
     $main_content .= '</TEXTAREA>
        </TD></TR></TABLE>
      </TD></TR>
      <TR><TD>
        <TABLE BORDER=0 CELLSPACING=5 CELLPADDING=0>
        <TR><TD>
          <INPUT TYPE="checkbox" NAME="rules" id="rules" value="true" /><label for="rules"><u> I agree to the '.htmlspecialchars($config['server']['serverName']).' Rules.</u></lable><BR>
        </TD></TR>
        <TR><TD>
          If you fully agree to these terms, click on the "I Agree" button in order to create an '.htmlspecialchars($config['server']['serverName']).' account.<BR>
          If you do not agree to these terms or do not want to create an '.htmlspecialchars($config['server']['serverName']).' account, please click on the "Cancel" button.
        </TD></TR></TABLE>
      </TD></TR>
     </TABLE></TD></TR>
     </TABLE>
     <BR>
     <TABLE BORDER=0 WIDTH=100%>
      <TR><TD ALIGN=center>
        <IMG SRC="'.$layout_name.'/images/blank.gif" WIDTH=120 HEIGHT=1 BORDER=0><BR>
      </TD><TD ALIGN=center VALIGN=top>
        <INPUT TYPE=image NAME="I Agree" SRC="'.$layout_name.'/images/buttons/sbutton_iagree.gif" BORDER=0 WIDTH=120 HEIGHT=18>
        </FORM>
      </TD><TD ALIGN=center>
        <FORM  ACTION="?subtopic=latestnews" METHOD=post>
        <INPUT TYPE=image NAME="Cancel" SRC="'.$layout_name.'/images/buttons/sbutton_cancel.gif" BORDER=0 WIDTH=120 HEIGHT=18>
        </FORM>
      </TD><TD ALIGN=center>
        <IMG SRC="/images/blank.gif" WIDTH=120 HEIGHT=1 BORDER=0><BR>
      </TD></TR>
     </TABLE>
     </TD>
     <TD><IMG SRC="'.$layout_name.'/images/blank.gif" WIDTH=10 HEIGHT=1 BORDER=0></TD>
     </TR>
     </TABLE>';
    }
    //CREATE ACCOUNT PAGE (save account in database)
    if($action == "saveaccount")
    {
     $reg_name = strtoupper(trim($_POST['reg_name']));
     $reg_email = trim($_POST['reg_email']);
     $reg_password = trim($_POST['reg_password']);
     $reg_code = trim($_POST['reg_code']);
     //FIRST check
     //check e-mail
     if(empty($reg_name))
     $reg_form_errors[] = "Please enter account name.";
     elseif(!check_account_name($reg_name))
     $reg_form_errors[] = "Invalid account name format. Use only A-Z and numbers 0-9.";
     if(empty($reg_email))
     $reg_form_errors[] = "Please enter your email address.";
     else
     {
     if(!check_mail($reg_email))
     $reg_form_errors[] = "E-mail address is not correct.";
     }
     if($config['site']['verify_code'])
     {
     //check verification code
     $string = strtoupper($_SESSION['string']);
     $userstring = strtoupper($reg_code);
     session_destroy();
     if(empty($string))
     $reg_form_errors[] = "Information about verification code in session is empty.";
     else
     {
     if(empty($userstring))
     $reg_form_errors[] = "Please enter verification code.";
     else
     {
     if($string != $userstring)
     $reg_form_errors[] = "Verification code is incorrect.";
     }
     }
     }
     //check password
     if(empty($reg_password) && !$config['site']['create_account_verify_mail'])
     $reg_form_errors[] = "Please enter password to your new account.";
     elseif(!$config['site']['create_account_verify_mail'])
     {
     if(!check_password($reg_password))
     $reg_form_errors[] = "Password contains illegal chars (a-z, A-Z and 0-9 only!) or lenght.";
     }
     //SECOND check
     //check e-mail address in database
     if(empty($reg_form_errors))
     {
     if($config['site']['one_email'])
     {
     $test_email_account = new Account();
     //load account with this e-mail
     $test_email_account->findByEmail($reg_email);
     if($test_email_account->isLoaded())
     $reg_form_errors[] = "Account with this e-mail address already exist in database.";
     }
     $account_db = new Account();
     $account_db->find($reg_name);
     if($account_db->isLoaded())
     $reg_form_errors[] = 'Account with this name already exist.';
     }
     // ----------creates account-------------(save in database)
     if(empty($reg_form_errors))
     {
     //create object 'account' and generate new acc. number
     if($config['site']['create_account_verify_mail'])
     {
     $reg_password = '';
     for ($i = 1; $i <= 6; $i++)
     $reg_password .= mt_rand(0,9);
     }
     $reg_account = new Account();
     // saves account information in database
     $reg_account->setName($reg_name);
     $reg_account->setPassword($reg_password);
     $reg_account->setEMail($reg_email);
     $reg_account->setGroupID(1);
     $reg_account->setCreateDate(time());
     $reg_account->setCreateIP(Visitor::getIP());
     $reg_account->setFlag(Website::getCountryCode(long2ip(Visitor::getIP())));
     if(isset($config['site']['newaccount_premdays']) && $config['site']['newaccount_premdays'] > 0)
     {
     $reg_account->set("premdays", $config['site']['newaccount_premdays']);
     $reg_account->set("lastday", time());
     }
     $reg_account->save();
     //show information about registration
     if($config['site']['send_emails'] && $config['site']['create_account_verify_mail'])
     {
     $mailBody = '<html>
     <body>
     <h3>Your account name and password!</h3>
     <p>You or someone else registred on server <a href="'.$config['server']['url'].'"><b>'.htmlspecialchars($config['server']['serverName']).'</b></a> with this e-mail.</p>
     <p>Account name: <b>'.htmlspecialchars($reg_name).'</b></p>
     <p>Password: <b>'.htmlspecialchars(trim($reg_password)).'</b></p>
     <br />
     <p>After login you can:</p>
     <li>Create new characters
     <li>Change your current password
     <li>Change your current e-mail
     </body>
     </html>';
     $mail = new PHPMailer();
     if ($config['site']['smtp_enabled'])
     {
     $mail->IsSMTP();
     $mail->Host = $config['site']['smtp_host'];
     $mail->Port = (int)$config['site']['smtp_port'];
     $mail->SMTPAuth = $config['site']['smtp_auth'];
     $mail->Username = $config['site']['smtp_user'];
     $mail->Password = $config['site']['smtp_pass'];
     }
     else
     $mail->IsMail();
     $mail->IsHTML(true);
     $mail->From = $config['site']['mail_address'];
     $mail->AddAddress($reg_email);
     $mail->Subject = $config['server']['serverName']." - Registration";
     $mail->Body = $mailBody;
     if($mail->Send())
     {
     $main_content .= 'Your account has been created. Check your e-mail. See you in Tibia!<BR><BR>';
     $main_content .= '<TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=4>
     <TR><TD BGCOLOR="'.$config['site']['vdarkborder'].'" CLASS=white><B>Account Created</B></TD></TR>
     <TR><TD BGCOLOR="'.$config['site']['darkborder'].'">
      <TABLE BORDER=0 CELLPADDING=1><TR><TD>
        <BR>Your account name is <b>'.$reg_name.'</b>.
     <BR><b><i>You will receive e-mail (<b>'.htmlspecialchars($reg_email).'</b>) with your password.</b></i><br>';
     $main_content .= 'You will need the account name and your password to play on '.htmlspecialchars($config['server']['serverName']).'.
        Please keep your account name and password in a safe place and
        never give your account name or password to anybody.<BR><BR>';
     $main_content .= '<br /><small>These informations were send on email address <b>'.htmlspecialchars($reg_email).'</b>. Please check your inbox/spam folder.';
     }
     else
     {
     $main_content .= '<br /><small>An error occorred while sending email! Account not created. Try again.</small>';
     $reg_account->delete();
     }
     }
     else
     {
     $main_content .= 'Your account has been created. Now you can login and create your first character. See you in Tibia!<BR><BR>';
     $main_content .= '<TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=4>
     <TR><TD BGCOLOR="'.$config['site']['vdarkborder'].'" CLASS=white><B>Account Created</B></TD></TR>
     <TR><TD BGCOLOR="'.$config['site']['darkborder'].'">
      <TABLE BORDER=0 CELLPADDING=1><TR><TD>
        <BR>Your account name is <b>'.htmlspecialchars($reg_name).'</b><br>You will need the account name and your password to play on '.htmlspecialchars($config['server']['serverName']).'.
        Please keep your account name and password in a safe place and
        never give your account name or password to anybody.<BR><BR>';
     if($config['site']['send_emails'] && $config['site']['send_register_email'])
     {
     $mailBody = '<html>
     <body>
     <h3>Your account name and password!</h3>
     <p>You or someone else registred on server <a href="'.$config['server']['url'].'"><b>'.htmlspecialchars($config['server']['serverName']).'</b></a> with this e-mail.</p>
     <p>Account name: <b>'.htmlspecialchars($reg_name).'</b></p>
     <p>Password: <b>'.htmlspecialchars(trim($reg_password)).'</b></p>
     <br />
     <p>After login you can:</p>
     <li>Create new characters
     <li>Change your current password
     <li>Change your current e-mail
     </body>
     </html>';
     $mail = new PHPMailer();
     if ($config['site']['smtp_enabled'])
     {
     $mail->IsSMTP();
     $mail->Host = $config['site']['smtp_host'];
     $mail->Port = (int)$config['site']['smtp_port'];
     $mail->SMTPAuth = $config['site']['smtp_auth'];
     $mail->Username = $config['site']['smtp_user'];
     $mail->Password = $config['site']['smtp_pass'];
     }
     else
     $mail->IsMail();
     $mail->IsHTML(true);
     $mail->From = $config['site']['mail_address'];
     $mail->AddAddress($reg_email);
     $mail->Subject = $config['server']['serverName']." - Registration";
     $mail->Body = $mailBody;
     if($mail->Send())
     $main_content .= '<br /><small>These informations were send on email address <b>'.htmlspecialchars($reg_email).'</b>.';
     else
     $main_content .= '<br /><small>An error occorred while sending email (<b>'.htmlspecialchars($reg_email).'</b>)!</small>';
     }
     }
     $main_content .= '</TD></TR></TABLE></TD></TR></TABLE><BR><BR>';
     }
     else
     {
     //SHOW ERRORs if data from form is wrong
     $main_content .= '<div class="SmallBox" >  <div class="MessageContainer" >    <div class="BoxFrameHorizontal" style="background-image:url('.$layout_name.'/images/content/box-frame-horizontal.gif);" /></div>    <div class="BoxFrameEdgeLeftTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></div>    <div class="BoxFrameEdgeRightTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></div>    <div class="ErrorMessage" >      <div class="BoxFrameVerticalLeft" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif);" /></div>      <div class="BoxFrameVerticalRight" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif);" /></div>      <div class="AttentionSign" style="background-image:url('.$layout_name.'/images/content/attentionsign.gif);" /></div><b>The Following Errors Have Occurred:</b><br/>';
     foreach($reg_form_errors as $show_msg)
     {
     $main_content .= '<li>'.$show_msg.'</li>';
     }
     $main_content .= '</div>    <div class="BoxFrameHorizontal" style="background-image:url('.$layout_name.'/images/content/box-frame-horizontal.gif);" /></div>    <div class="BoxFrameEdgeRightBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></div>    <div class="BoxFrameEdgeLeftBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></div>  </div></div><br/>
     <BR>
     <CENTER>
     <TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0><FORM ACTION=?subtopic=createaccount METHOD=post><TR><TD>
     <INPUT TYPE=hidden NAME=email VALUE="">

     <INPUT TYPE=image NAME="Back" ALT="Back" SRC="'.$layout_name.'/images/buttons/sbutton_back.gif" BORDER=0 WIDTH=120 HEIGHT=18>
     </TD></TR></FORM></TABLE>
     </CENTER>';
     }
    }

    Ayuda Gesior 2012 D54L53K

    2 participantes

    8Ayuda Gesior 2012 Empty Re: Ayuda Gesior 2012 Mar Ene 02, 2018 4:10 pm

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    listo prueba

    Código:
    <?php
    if(!defined('INITIALIZED'))
     exit;

    //CREATE ACCOUNT FORM PAGE
    if($action == "")
    {
     $main_content .= '<script type="text/javascript">

    var accountHttp;

    function checkAccount()
    {
     if(document.getElementById("account_name").value=="")
     {
     document.getElementById("acc_name_check").innerHTML = \'<b><font color="red">Please enter account name.</font></b>\';
     return;
     }
     accountHttp=GetXmlHttpObject();
     if (accountHttp==null)
     {
     return;
     }
     var account = document.getElementById("account_name").value;
     var url="?subtopic=ajax_check_account&account=" + account + "&uid="+Math.random();
     accountHttp.onreadystatechange=AccountStateChanged;
     accountHttp.open("GET",url,true);
     accountHttp.send(null);
    }

    function AccountStateChanged()
    {
     if (accountHttp.readyState==4)
     {
     document.getElementById("acc_name_check").innerHTML=accountHttp.responseText;
     }
    }

    var emailHttp;

    //sprawdza czy dane konto istnieje czy nie
    function checkEmail()
    {
     if(document.getElementById("email").value=="")
     {
     document.getElementById("email_check").innerHTML = \'<b><font color="red">Please enter e-mail.</font></b>\';
     return;
     }
     emailHttp=GetXmlHttpObject();
     if (emailHttp==null)
     {
     return;
     }
     var email = document.getElementById("email").value;
     var url="?subtopic=ajax_check_email&email=" + email + "&uid="+Math.random();
     emailHttp.onreadystatechange=EmailStateChanged;
     emailHttp.open("GET",url,true);
     emailHttp.send(null);
    }

    function EmailStateChanged()
    {
     if (emailHttp.readyState==4)
     {
     document.getElementById("email_check").innerHTML=emailHttp.responseText;
     }
    }

     function validate_required(field,alerttxt)
     {
     with (field)
     {
     if (value==null||value==""||value==" ")
     {
     alert(alerttxt);
     return false;
     }
     else
     {
     return true;
     }
     }
     }

     function validate_email(field,alerttxt)
     {
     with (field)
     {
     apos=value.indexOf("@");
     dotpos=value.lastIndexOf(".");
     if (apos<1||dotpos-apos<2)
     {
     alert(alerttxt);
     return false;
     }
     else
     {
     return true;
     }
     }
     }

     function validate_form(thisform)
     {
     with (thisform)
     {
     if(validate_required(account_name,"Please enter name of new account!")==false)
     {
     account_name.focus();
     return false;
     }
     if(validate_required(email,"Please enter your e-mail!")==false)
     {
     email.focus();
     return false;
     }
     if(validate_email(email,"Invalid e-mail format!")==false)
     {
     email.focus();
     return false;
     }
     if(verifpass==1)
     {
     if(validate_required(passor,"Please enter password!")==false)
     {
     passor.focus();
     return false;
     }
     if (validate_required(passor2,"Please repeat password!")==false)
     {
     passor2.focus();
     return false;
     }
     if(passor2.value!=passor.value)
     {
     alert(\'Repeated password is not equal to password!\');
     return false;
     }
     }
     if(verifya==1)
     {
     if (validate_required(verify,"Please enter verification code!")==false)
     {
     verify.focus();return false;
     }
     }
     if(rules.checked==false)
     {
     alert(\'To create account you must accept server rules!\');
     return false;
     }
     }
     }
     </script>';
     $main_content .= 'To play on '.htmlspecialchars($config['server']['serverName']).' you need an account.
     All you have to do to create your new account is to enter your email address, password to new account, verification code from picture and to agree to the terms presented below.
     If you have done so, your account name, password and e-mail address will be shown on the following page and your account and password will be sent
     to your email address along with further instructions.<BR><BR>
     <FORM ACTION="?subtopic=createaccount&action=saveaccount" onsubmit="return validate_form(this)" METHOD=post>
     <TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=4>
     <TR><TD BGCOLOR="'.$config['site']['vdarkborder'].'" CLASS=white><B>Create an '.htmlspecialchars($config['server']['serverName']).' Account</B></TD></TR>
     <TR><TD BGCOLOR="'.$config['site']['darkborder'].'"><TABLE BORDER=0 CELLSPACING=8 CELLPADDING=0>
      <TR><TD>
        <TABLE BORDER=0 CELLSPACING=5 CELLPADDING=0>';
     $main_content .= '<TR><TD width="150" valign="top"><B>Account name: </B></TD><TD colspan="2"><INPUT id="account_name" NAME="reg_name" onkeyup="checkAccount();" VALUE="" SIZE=30 MAXLENGTH=50><BR><font size="1" face="verdana,arial,helvetica">(Please enter your new account name)</font></TD></TR>
      <TR><TD width="150"><b>Name status:</b></TD><TD colspan="2"><b><div id="acc_name_check">Please enter your account name.</div></b></TD></TR>
     <TR><TD width="150" valign="top"><B>Email address: </B></TD><TD colspan="2"><INPUT id="email" NAME="reg_email" onkeyup="checkEmail();" VALUE="" SIZE=30 MAXLENGTH=50><BR><font size="1" face="verdana,arial,helvetica">(Your email address is required to recovery an '.htmlspecialchars($config['server']['serverName']).' account)</font></TD></TR>
      <TR><TD width="150"><b>Email status:</b></TD><TD colspan="2"><b><div id="email_check">Please enter your e-mail.</div></b></TD></TR>';
     if(!$config['site']['create_account_verify_mail'])
     $main_content .= '<script type="text/javascript">var verifpass=1;</script>
     <TR><TD width="150" valign="top"><B>Password: </B></TD><TD colspan="2"><INPUT TYPE="password" id="passor" NAME="reg_password" VALUE="" SIZE=30 MAXLENGTH=50><BR><font size="1" face="verdana,arial,helvetica">(Here write your password to new account on '.htmlspecialchars($config['server']['serverName']).')</font></TD></TR>
      <TR><TD width="150" valign="top"><B>Repeat password: </B></TD><TD colspan="2"><INPUT TYPE="password" id="passor2" NAME="reg_password2" VALUE="" SIZE=30 MAXLENGTH=50><BR><font size="1" face="verdana,arial,helvetica">(Repeat your password)</font></TD></TR>';
     else
     $main_content .= '<script type="text/javascript">var verifpass=0;</script>';
     if($config['site']['verify_code'])
     $main_content .= '<script type="text/javascript">var verifya=1;</script><TR><TD width="150"><B>Code: </B></TD><TD colspan="2"><img src="?subtopic=imagebuilder&image_refresher='.mt_rand(1,99999).'" border="0" alt="Image Verification is missing, please contact the administrator"></TD></TR>
      <TR><TD width="150" valign="top"><B>Verification Code: </B></TD><TD colspan="2"><INPUT id="verify" NAME="reg_code" VALUE="" SIZE=30 MAXLENGTH=50><BR><font size="1" face="verdana,arial,helvetica">(Here write verification code from picture)</font></TD></TR>';
     else
     $main_content .= '<script type="text/javascript">var verifya=0;</script>';
     $main_content .= '</TABLE>
      </TD></TR>
     
      <TR><TD>
        <TABLE BORDER=0 CELLSPACING=5 CELLPADDING=0>
        <TR><TD>
          <INPUT TYPE="checkbox" NAME="rules" id="rules" value="true" /><label for="rules"><u> I agree to the '.htmlspecialchars($config['server']['serverName']).' Rules.</u></lable><BR>
        </TD></TR>
        <TR><TD>
          If you fully agree to these terms, click on the "I Agree" button in order to create an '.htmlspecialchars($config['server']['serverName']).' account.<BR>
          If you do not agree to these terms or do not want to create an '.htmlspecialchars($config['server']['serverName']).' account, please click on the "Cancel" button.
        </TD></TR></TABLE>
      </TD></TR>
     </TABLE></TD></TR>
     </TABLE>
     <BR>
     <TABLE BORDER=0 WIDTH=100%>
      <TR><TD ALIGN=center>
        <IMG SRC="'.$layout_name.'/images/blank.gif" WIDTH=120 HEIGHT=1 BORDER=0><BR>
      </TD><TD ALIGN=center VALIGN=top>
        <INPUT TYPE=image NAME="I Agree" SRC="'.$layout_name.'/images/buttons/sbutton_iagree.gif" BORDER=0 WIDTH=120 HEIGHT=18>
        </FORM>
      </TD><TD ALIGN=center>
        <FORM  ACTION="?subtopic=latestnews" METHOD=post>
        <INPUT TYPE=image NAME="Cancel" SRC="'.$layout_name.'/images/buttons/sbutton_cancel.gif" BORDER=0 WIDTH=120 HEIGHT=18>
        </FORM>
      </TD><TD ALIGN=center>
        <IMG SRC="/images/blank.gif" WIDTH=120 HEIGHT=1 BORDER=0><BR>
      </TD></TR>
     </TABLE>
     </TD>
     <TD><IMG SRC="'.$layout_name.'/images/blank.gif" WIDTH=10 HEIGHT=1 BORDER=0></TD>
     </TR>
     </TABLE>';
    }
    //CREATE ACCOUNT PAGE (save account in database)
    if($action == "saveaccount")
    {
     $reg_name = strtoupper(trim($_POST['reg_name']));
     $reg_email = trim($_POST['reg_email']);
     $reg_password = trim($_POST['reg_password']);
     $reg_code = trim($_POST['reg_code']);
     //FIRST check
     //check e-mail
     if(empty($reg_name))
     $reg_form_errors[] = "Please enter account name.";
     elseif(!check_account_name($reg_name))
     $reg_form_errors[] = "Invalid account name format. Use only A-Z and numbers 0-9.";
     if(empty($reg_email))
     $reg_form_errors[] = "Please enter your email address.";
     else
     {
     if(!check_mail($reg_email))
     $reg_form_errors[] = "E-mail address is not correct.";
     }
     if($config['site']['verify_code'])
     {
     //check verification code
     $string = strtoupper($_SESSION['string']);
     $userstring = strtoupper($reg_code);
     session_destroy();
     if(empty($string))
     $reg_form_errors[] = "Information about verification code in session is empty.";
     else
     {
     if(empty($userstring))
     $reg_form_errors[] = "Please enter verification code.";
     else
     {
     if($string != $userstring)
     $reg_form_errors[] = "Verification code is incorrect.";
     }
     }
     }
     //check password
     if(empty($reg_password) && !$config['site']['create_account_verify_mail'])
     $reg_form_errors[] = "Please enter password to your new account.";
     elseif(!$config['site']['create_account_verify_mail'])
     {
     if(!check_password($reg_password))
     $reg_form_errors[] = "Password contains illegal chars (a-z, A-Z and 0-9 only!) or lenght.";
     }
     //SECOND check
     //check e-mail address in database
     if(empty($reg_form_errors))
     {
     if($config['site']['one_email'])
     {
     $test_email_account = new Account();
     //load account with this e-mail
     $test_email_account->findByEmail($reg_email);
     if($test_email_account->isLoaded())
     $reg_form_errors[] = "Account with this e-mail address already exist in database.";
     }
     $account_db = new Account();
     $account_db->find($reg_name);
     if($account_db->isLoaded())
     $reg_form_errors[] = 'Account with this name already exist.';
     }
     // ----------creates account-------------(save in database)
     if(empty($reg_form_errors))
     {
     //create object 'account' and generate new acc. number
     if($config['site']['create_account_verify_mail'])
     {
     $reg_password = '';
     for ($i = 1; $i <= 6; $i++)
     $reg_password .= mt_rand(0,9);
     }
     $reg_account = new Account();
     // saves account information in database
     $reg_account->setName($reg_name);
     $reg_account->setPassword($reg_password);
     $reg_account->setEMail($reg_email);
     $reg_account->setGroupID(1);
     $reg_account->setCreateDate(time());
     $reg_account->setCreateIP(Visitor::getIP());
     $reg_account->setFlag(Website::getCountryCode(long2ip(Visitor::getIP())));
     if(isset($config['site']['newaccount_premdays']) && $config['site']['newaccount_premdays'] > 0)
     {
     $reg_account->set("premdays", $config['site']['newaccount_premdays']);
     $reg_account->set("lastday", time());
     }
     $reg_account->save();
     //show information about registration
     if($config['site']['send_emails'] && $config['site']['create_account_verify_mail'])
     {
     $mailBody = '<html>
     <body>
     <h3>Your account name and password!</h3>
     <p>You or someone else registred on server <a href="'.$config['server']['url'].'"><b>'.htmlspecialchars($config['server']['serverName']).'</b></a> with this e-mail.</p>
     <p>Account name: <b>'.htmlspecialchars($reg_name).'</b></p>
     <p>Password: <b>'.htmlspecialchars(trim($reg_password)).'</b></p>
     <br />
     <p>After login you can:</p>
     <li>Create new characters
     <li>Change your current password
     <li>Change your current e-mail
     </body>
     </html>';
     $mail = new PHPMailer();
     if ($config['site']['smtp_enabled'])
     {
     $mail->IsSMTP();
     $mail->Host = $config['site']['smtp_host'];
     $mail->Port = (int)$config['site']['smtp_port'];
     $mail->SMTPAuth = $config['site']['smtp_auth'];
     $mail->Username = $config['site']['smtp_user'];
     $mail->Password = $config['site']['smtp_pass'];
     }
     else
     $mail->IsMail();
     $mail->IsHTML(true);
     $mail->From = $config['site']['mail_address'];
     $mail->AddAddress($reg_email);
     $mail->Subject = $config['server']['serverName']." - Registration";
     $mail->Body = $mailBody;
     if($mail->Send())
     {
     $main_content .= 'Your account has been created. Check your e-mail. See you in Tibia!<BR><BR>';
     $main_content .= '<TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=4>
     <TR><TD BGCOLOR="'.$config['site']['vdarkborder'].'" CLASS=white><B>Account Created</B></TD></TR>
     <TR><TD BGCOLOR="'.$config['site']['darkborder'].'">
      <TABLE BORDER=0 CELLPADDING=1><TR><TD>
        <BR>Your account name is <b>'.$reg_name.'</b>.
     <BR><b><i>You will receive e-mail (<b>'.htmlspecialchars($reg_email).'</b>) with your password.</b></i><br>';
     $main_content .= 'You will need the account name and your password to play on '.htmlspecialchars($config['server']['serverName']).'.
        Please keep your account name and password in a safe place and
        never give your account name or password to anybody.<BR><BR>';
     $main_content .= '<br /><small>These informations were send on email address <b>'.htmlspecialchars($reg_email).'</b>. Please check your inbox/spam folder.';
     }
     else
     {
     $main_content .= '<br /><small>An error occorred while sending email! Account not created. Try again.</small>';
     $reg_account->delete();
     }
     }
     else
     {
     $main_content .= 'Your account has been created. Now you can login and create your first character. See you in Tibia!<BR><BR>';
     $main_content .= '<TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=4>
     <TR><TD BGCOLOR="'.$config['site']['vdarkborder'].'" CLASS=white><B>Account Created</B></TD></TR>
     <TR><TD BGCOLOR="'.$config['site']['darkborder'].'">
      <TABLE BORDER=0 CELLPADDING=1><TR><TD>
        <BR>Your account name is <b>'.htmlspecialchars($reg_name).'</b><br>You will need the account name and your password to play on '.htmlspecialchars($config['server']['serverName']).'.
        Please keep your account name and password in a safe place and
        never give your account name or password to anybody.<BR><BR>';
     if($config['site']['send_emails'] && $config['site']['send_register_email'])
     {
     $mailBody = '<html>
     <body>
     <h3>Your account name and password!</h3>
     <p>You or someone else registred on server <a href="'.$config['server']['url'].'"><b>'.htmlspecialchars($config['server']['serverName']).'</b></a> with this e-mail.</p>
     <p>Account name: <b>'.htmlspecialchars($reg_name).'</b></p>
     <p>Password: <b>'.htmlspecialchars(trim($reg_password)).'</b></p>
     <br />
     <p>After login you can:</p>
     <li>Create new characters
     <li>Change your current password
     <li>Change your current e-mail
     </body>
     </html>';
     $mail = new PHPMailer();
     if ($config['site']['smtp_enabled'])
     {
     $mail->IsSMTP();
     $mail->Host = $config['site']['smtp_host'];
     $mail->Port = (int)$config['site']['smtp_port'];
     $mail->SMTPAuth = $config['site']['smtp_auth'];
     $mail->Username = $config['site']['smtp_user'];
     $mail->Password = $config['site']['smtp_pass'];
     }
     else
     $mail->IsMail();
     $mail->IsHTML(true);
     $mail->From = $config['site']['mail_address'];
     $mail->AddAddress($reg_email);
     $mail->Subject = $config['server']['serverName']." - Registration";
     $mail->Body = $mailBody;
     if($mail->Send())
     $main_content .= '<br /><small>These informations were send on email address <b>'.htmlspecialchars($reg_email).'</b>.';
     else
     $main_content .= '<br /><small>An error occorred while sending email (<b>'.htmlspecialchars($reg_email).'</b>)!</small>';
     }
     }
     $main_content .= '</TD></TR></TABLE></TD></TR></TABLE><BR><BR>';
     }
     else
     {
     //SHOW ERRORs if data from form is wrong
     $main_content .= '<div class="SmallBox" >  <div class="MessageContainer" >    <div class="BoxFrameHorizontal" style="background-image:url('.$layout_name.'/images/content/box-frame-horizontal.gif);" /></div>    <div class="BoxFrameEdgeLeftTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></div>    <div class="BoxFrameEdgeRightTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></div>    <div class="ErrorMessage" >      <div class="BoxFrameVerticalLeft" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif);" /></div>      <div class="BoxFrameVerticalRight" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif);" /></div>      <div class="AttentionSign" style="background-image:url('.$layout_name.'/images/content/attentionsign.gif);" /></div><b>The Following Errors Have Occurred:</b><br/>';
     foreach($reg_form_errors as $show_msg)
     {
     $main_content .= '<li>'.$show_msg.'</li>';
     }
     $main_content .= '</div>    <div class="BoxFrameHorizontal" style="background-image:url('.$layout_name.'/images/content/box-frame-horizontal.gif);" /></div>    <div class="BoxFrameEdgeRightBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></div>    <div class="BoxFrameEdgeLeftBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></div>  </div></div><br/>
     <BR>
     <CENTER>
     <TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0><FORM ACTION=?subtopic=createaccount METHOD=post><TR><TD>
     <INPUT TYPE=hidden NAME=email VALUE="">

     <INPUT TYPE=image NAME="Back" ALT="Back" SRC="'.$layout_name.'/images/buttons/sbutton_back.gif" BORDER=0 WIDTH=120 HEIGHT=18>
     </TD></TR></FORM></TABLE>
     </CENTER>';
     }
    }



    Ayuda Gesior 2012 YNU5B25
    2 participantes
    http://www.tibiaface.com

    Contenido patrocinado


    2 participantes

    Ver el tema anterior Ver el tema siguiente Volver arriba  Mensaje (Página 1 de 1.)

    Permisos de este foro:
    No puedes responder a temas en este foro.

     

    BienvenidosTibiaFace es una comunidad de Open Tibia. Para participar debes estar registrado (click para Regístrate).