• TibiaFace

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

    .
    demo menumenu

    Afiliados



    Votar:

    [Ayuda] Error Death List Znote AAC 1.5

    Compartir:

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

    1Resuelto [Ayuda] Error Death List Znote AAC 1.5 Miér Dic 09, 2015 2:24 pm

    Kenji

    Kenji
    Miembro
    Miembro
    Saludos, yo por aqui de nuevo necesitando apoyo


    TFS VERSION: TFS_02
    DISTRO: Globaltibiaface 7.60
    Znote AAC 1.5

    Error en lista de muerte de los characters: NO MUESTRA LAS MUERTES Y SALE EL SIGUIENTE ERROR

    Código:
    Death List:
    string(84) "SELECT * FROM `player_deaths` WHERE `player_id`='6' order by `time` DESC LIMIT 0, 10"
    (query - SQL error)
    Type: select_multi (select multiple rows from database)

    Unknown column 'time' in 'order clause'

    2 participantes
    https://facebook.com

    2Resuelto Re: [Ayuda] Error Death List Znote AAC 1.5 Miér Dic 09, 2015 3:58 pm

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    utiliza esta remplaza el contenido de killers.php

    Código:
    <?php require_once 'engine/init.php'; include 'layout/overall/header.php';
    if ($config['TFSVersion'] == 'TFS_02' || $config['TFSVersion'] == 'TFS_10') {
    $cache = new Cache('engine/cache/killers');
    if ($cache->hasExpired()) {
       $killers = fetchMurders();
       
       $cache->setContent($killers);
       $cache->save();
    } else {
       $killers = $cache->load();
    }
    $cache = new Cache('engine/cache/victims');
    if ($cache->hasExpired()) {
       $victims = fetchLoosers();
       
       $cache->setContent($victims);
       $cache->save();
    } else {
       $victims = $cache->load();
    }
    $cache = new Cache('engine/cache/lastkillers');
    if ($cache->hasExpired()) {
       $latests = mysql_select_multi("SELECT `p`.`name` AS `victim`, `d`.`killed_by` as `killed_by`, `d`.`time` as `time` FROM `player_deaths` as `d` INNER JOIN `players` as `p` ON d.player_id = p.id WHERE d.`is_player`='1' LIMIT 20;");
       if ($latests !== false) {
          $cache->setContent($latests);
          $cache->save();
       }
    } else {
       $latests = $cache->load();
    }
    if ($killers) {
    ?>
    <h1>Biggest Murders</h1>
    <table id="killersTable" class="table table-striped">
       <tr class="yellow">
          <th>Name</th>
          <th>Kills</th>
       </tr>
       <?php foreach ($killers as $killer) {
          echo '<tr>';
          echo "<td width='70%'><a href='characterprofile.php?name=". $killer['killed_by'] ."'>". $killer['killed_by'] ."</a></td>";
          echo "<td width='30%'>". $killer['kills'] ."</td>";
          echo '</tr>';
       } ?>
    </table>
    <?php
    } else echo 'No player kills exist.';

    if ($victims) {
    ?>
    <h1>Biggest Victims</h1>
    <table id="victimsTable" class="table table-striped">
       <tr class="yellow">
          <th>Name</th>
          <th>Deaths</th>
       </tr>
       <?php foreach ($victims as $victim) {
          echo '<tr>';
          echo "<td width='70%'><a href='characterprofile.php?name=". $victim['name'] ."'>". $victim['name'] ."</a></td>";
          echo "<td width='30%'>". $victim['Deaths'] ."</td>";
          echo '</tr>';
       } ?>
    </table>
    <?php
    } else echo 'No player kills exist.';

    if ($latests) {
    ?>
    <h1>Latest kills</h1>
    <table id="killersTable" class="table table-striped">
       <tr class="yellow">
          <th>Killer</th>
          <th>Time</th>
          <th>Victim</th>
       </tr>
       <?php foreach ($latests as $last) {
          echo '<tr>';
          echo "<td width='35%'><a href='characterprofile.php?name=". $last['killed_by'] ."'>". $last['killed_by'] ."</a></td>";
          echo "<td width='30%'>". getClock($last['time'], true) ."</td>";
          echo "<td width='35%'><a href='characterprofile.php?name=". $last['victim'] ."'>". $last['victim'] ."</a></td>";
          echo '</tr>';
       } ?>
    </table>
    <?php
    } else echo 'No player kills exist.';

    } else if ($config['TFSVersion'] == 'TFS_03') {
       /////////
       $cache = new Cache('engine/cache/killers');
       if ($cache->hasExpired()) {
          $deaths = fetchLatestDeaths_03(30, true);
          $cache->setContent($deaths);
          $cache->save();
       } else {
          $deaths = $cache->load();
       }
       ?>

       <h1>Latest Killers</h1>
       <table id="deathsTable" class="table table-striped">
          <tr class="yellow">
             <th>Killer</th>
             <th>Time</th>
             <th>Victim</th>
          </tr>
          <?php foreach ($deaths as $death) {
             echo '<tr>';
             echo "<td><a href='characterprofile.php?name=". $death['killed_by'] ."'>". $death['killed_by'] ."</a></td>";
             echo "<td>". getClock($death['time'], true) ."</td>";
             echo "<td>At level ". $death['level'] .": <a href='characterprofile.php?name=". $death['victim'] ."'>". $death['victim'] ."</a></td>";
             echo '</tr>';
          } ?>
       </table>

       <?php
       /////////
    }
    include 'layout/overall/footer.php'; ?>



    [Ayuda] Error Death List Znote AAC 1.5 YNU5B25
    2 participantes
    http://www.tibiaface.com

    Kenji

    Kenji
    Miembro
    Miembro
    sorry por tardar tanto en responder he estado trabajando en otras cosas, probe el codigo q me pasaste y nada sigue apareciendo el error

    2 participantes
    https://facebook.com

    4Resuelto Re: [Ayuda] Error Death List Znote AAC 1.5 Mar Dic 15, 2015 10:21 am

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    ejecute esta tabla en sus mysql:

    Código:
     ALTER TABLE `player_deaths` ADD `time` bigint(20) unsigned NOT NULL DEFAULT '0'; 



    [Ayuda] Error Death List Znote AAC 1.5 YNU5B25
    2 participantes
    http://www.tibiaface.com

    Kenji

    Kenji
    Miembro
    Miembro
    ahora me sale este error

    Notice: Undefined index: is_player in C:\xampp\htdocs\layout\sub\characterprofile.php on line 167

    Notice: Undefined index: killed_by in C:\xampp\htdocs\layout\sub\characterprofile.php on line 170
    [01 January 1970 (01:00)] Killed at level 143 by monster: .

    Address: [Tienes que estar registrado y conectado para ver este vínculo] Marriam

    2 participantes
    https://facebook.com

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    Kenji escribió:ahora me sale este error

       Notice: Undefined index: is_player in C:\xampp\htdocs\layout\sub\characterprofile.php on line 167

       Notice: Undefined index: killed_by in C:\xampp\htdocs\layout\sub\characterprofile.php on line 170
       [01 January 1970 (01:00)] Killed at level 143 by monster: .

    Address: [Tienes que estar registrado y conectado para ver este vínculo] Marriam


    cambie su znote por otra



    [Ayuda] Error Death List Znote AAC 1.5 YNU5B25
    2 participantes
    http://www.tibiaface.com

    Kenji

    Kenji
    Miembro
    Miembro
    tengo la version 1.5, me dices q lo unico q puedo hacer es un downgrade ?? Sad

    2 participantes
    https://facebook.com

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    Kenji escribió:tengo la version 1.5, me dices q lo unico q puedo hacer es un downgrade ?? Sad


    sii porque veo el problema en tu layout que no es compatible con tu znote



    [Ayuda] Error Death List Znote AAC 1.5 YNU5B25
    2 participantes
    http://www.tibiaface.com

    9Resuelto Re: [Ayuda] Error Death List Znote AAC 1.5 Jue Dic 17, 2015 10:12 pm

    Kenji

    Kenji
    Miembro
    Miembro
    Por fin pude solucionar! al final de tanto romperme la cabeza buscando el problema era una tonteria.

    tenia la version TFS no soportada en mi config.php la cambie de:

    $config['TFSVersion'] = 'TFS_02';

    a

    $config['TFSVersion'] = 'TFS_03';

    Y problema resuelto ya me aparecen las muertes con los nombres de monster o player

    2 participantes
    https://facebook.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).