• TibiaFace

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

    .
    demo menumenu

    Afiliados



    Votar:

    [Tutorial] Solucion al problema de red skull de la global tibiaface 7.76/7.72

    Compartir:

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

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    Hola usuarios de tibiaface



    Bueno hoy dia encontramos la solucion al problema de la red skull y la verdad es que la gesior para la 0.3.7 y 0.4.0 no es compatible del todo ya que ella reproduce un bug de red skull en los personajes bueno hoy con znote no pasara lo mismo el cual da solucion al problema de red skull.

    sin mas preangulo aqui la znote ya configurada para la global tibiaface 7.76/7.72:

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


    editar el archivo config.php

    Código:
    // ------------------------ \\
     // MYSQL CONNECTION DETAILS \\
     // ------------------------ \\
     
     // phpmyadmin username for OT server: (DONT USE "root" if ur hosting to public.).
     $config['sqlUser'] = 'root';
     
     // phpmyadmin password for OT server:
     $config['sqlPassword'] = 'password';
     
     // The database name to connect to. (This is usually same as username).
     $config['sqlDatabase'] = 'basa de datos';
     
     // Hostname is usually localhost or 127.0.0.1.
     $config['sqlHost'] = '127.0.0.1';



    y tambien la linea aquella para ser administrador de la pagina ya que znote se habilita desde aqui solo colocando el numero de cuenta recuerden que en 772 no acepta name account solo numero de cuenta ojo utilizando numeros

    Código:
    // WARNING! Account names written here will have admin access to web page!
     $config['page_admin_access'] = array(
     '841702',
     'otland1',
     //'znote'
     );


    link de base de datos znote global tibiaface 772:

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


    [Tutorial] Solucion al problema de red skull de la global tibiaface 7.76/7.72 Captur12


    TABLAS ZNOTE POR SI TIENEN ERRORES AL EJECUTAR LA WEB

    Código:
    CREATE TABLE IF NOT EXISTS `znote` (
      `id` int(10) NOT NULL AUTO_INCREMENT,
      `version` varchar(30) NOT NULL COMMENT 'Znote AAC version',
      `installed` int(10) NOT NULL,
      `cached` int(11) DEFAULT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB;
    INSERT INTO `znote` (`version`, `installed`) VALUES
    ('$version', '$time');

    CREATE TABLE IF NOT EXISTS `znote_accounts` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `account_id` int(11) NOT NULL,
      `ip` int(10) UNSIGNED NOT NULL,
      `created` int(10) NOT NULL,
      `points` int(10) DEFAULT 0,
      `cooldown` int(10) DEFAULT 0,
      `active` tinyint(4) NOT NULL DEFAULT '0',
      `activekey` int(11) NOT NULL DEFAULT '0',
      `flag` varchar(20) NOT NULL,
      `secret` char(16) DEFAULT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB;
    INSERT INTO `znote_accounts` (`account_id`, `ip`, `created`, `flag`) VALUES
    ('1', '0', '$time', '');

    CREATE TABLE IF NOT EXISTS `znote_news` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `title` varchar(30) NOT NULL,
      `text` text NOT NULL,
      `date` int(11) NOT NULL,
      `pid` int(11) NOT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB;

    CREATE TABLE IF NOT EXISTS `znote_images` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `title` varchar(30) NOT NULL,
      `desc` text NOT NULL,
      `date` int(11) NOT NULL,
      `status` int(11) NOT NULL,
      `image` varchar(30) NOT NULL,
      `account_id` int(11) NOT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB;

    CREATE TABLE IF NOT EXISTS `znote_paypal` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `txn_id` varchar(30) NOT NULL,
      `email` varchar(255) NOT NULL,
      `accid` int(11) NOT NULL,
      `price` int(11) NOT NULL,
      `points` int(11) NOT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB;

    CREATE TABLE IF NOT EXISTS `znote_paygol` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `account_id` int(11) NOT NULL,
      `price` int(11) NOT NULL,
      `points` int(11) NOT NULL,
      `message_id` varchar(255) NOT NULL,
      `service_id` varchar(255) NOT NULL,
      `shortcode` varchar(255) NOT NULL,
      `keyword` varchar(255) NOT NULL,
      `message` varchar(255) NOT NULL,
      `sender` varchar(255) NOT NULL,
      `operator` varchar(255) NOT NULL,
      `country` varchar(255) NOT NULL,
      `currency` varchar(255) NOT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB;

    CREATE TABLE IF NOT EXISTS `znote_players` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `player_id` int(11) NOT NULL,
      `created` int(11) NOT NULL,
      `hide_char` tinyint(4) NOT NULL,
      `comment` varchar(255) NOT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB;
    INSERT INTO `znote_players` (`player_id`, `created`, `hide_char`, `comment`) VALUES
    ('1', '$time', '0', '');

    CREATE TABLE IF NOT EXISTS `znote_player_reports` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `name` varchar(50) NOT NULL,
      `posx` int(6) NOT NULL,
      `posy` int(6) NOT NULL,
      `posz` int(6) NOT NULL,
      `report_description` VARCHAR(255) NOT NULL,
      `date` INT(11) NOT NULL,
      `status` TINYINT(3) NOT NULL DEFAULT '0',
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB;

    CREATE TABLE IF NOT EXISTS `znote_changelog` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `text` VARCHAR(255) NOT NULL,
      `time` INT(11) NOT NULL,
      `report_id` INT(11) NOT NULL,
      `status` TINYINT(3) NOT NULL DEFAULT '0',
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB;

    CREATE TABLE IF NOT EXISTS `znote_shop` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `type` int(11) NOT NULL,
      `itemid` int(11) DEFAULT NULL,
      `count` int(11) NOT NULL DEFAULT '1',
      `description` varchar(255) NOT NULL,
      `points` int(11) NOT NULL DEFAULT '10',
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB;

    CREATE TABLE IF NOT EXISTS `znote_shop_logs` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `account_id` int(11) NOT NULL,
      `player_id` int(11) NOT NULL,
      `type` int(11) NOT NULL,
      `itemid` int(11) NOT NULL,
      `count` int(11) NOT NULL,
      `points` int(11) NOT NULL,
      `time` int(11) NOT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB;

    CREATE TABLE IF NOT EXISTS `znote_shop_orders` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `account_id` int(11) NOT NULL,
      `type` int(11) NOT NULL,
      `itemid` int(11) NOT NULL,
      `count` int(11) NOT NULL,
      `time` int(11) NOT NULL DEFAULT '0',
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB;

    CREATE TABLE IF NOT EXISTS `znote_visitors` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `ip` int(11) NOT NULL,
      `value` int(11) NOT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB;

    CREATE TABLE IF NOT EXISTS `znote_visitors_details` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `ip` int(11) NOT NULL,
      `time` int(11) NOT NULL,
      `type` tinyint(4) NOT NULL,
      `account_id` int(11) NOT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB;

    CREATE TABLE IF NOT EXISTS `znote_forum` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `name` varchar(50) NOT NULL,
      `access` tinyint(4) NOT NULL,
      `closed` tinyint(4) NOT NULL,
      `hidden` tinyint(4) NOT NULL,
      `guild_id` int(11) NOT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB;
    INSERT INTO `znote_forum` (`name`, `access`, `closed`, `hidden`, `guild_id`) VALUES
    ('Staff Board', '4', '0', '0', '0'),
    ('Tutors Board', '2', '0', '0', '0'),
    ('Discussion', '1', '0', '0', '0'),
    ('Feedback', '1', '0', '1', '0');

    CREATE TABLE IF NOT EXISTS `znote_forum_threads` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `forum_id` int(11) NOT NULL,
      `player_id` int(11) NOT NULL,
      `player_name` varchar(50) NOT NULL,
      `title` varchar(50) NOT NULL,
      `text` text NOT NULL,
      `created` int(11) NOT NULL,
      `updated` int(11) NOT NULL,
      `sticky` tinyint(4) NOT NULL,
      `hidden` tinyint(4) NOT NULL,
      `closed` tinyint(4) NOT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB;

    CREATE TABLE IF NOT EXISTS `znote_forum_posts` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `thread_id` int(11) NOT NULL,
      `player_id` int(11) NOT NULL,
      `player_name` varchar(50) NOT NULL,
      `text` text NOT NULL,
      `created` int(11) NOT NULL,
      `updated` int(11) NOT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB;

    CREATE TABLE IF NOT EXISTS `znote_deleted_characters` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `original_account_id` int(11) NOT NULL,
      `character_name` varchar(255) NOT NULL,
      `time` datetime NOT NULL,
      `done` tinyint(1) NOT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB;

    CREATE TABLE IF NOT EXISTS `znote_guild_wars` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `limit` int(11) NOT NULL DEFAULT '0',
      PRIMARY KEY (`id`),
      FOREIGN KEY (`id`) REFERENCES `guild_wars` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
    ) ENGINE=InnoDB;

    CREATE TABLE IF NOT EXISTS `znote_tickets` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `owner` int(11) NOT NULL,
      `username` varchar(32) CHARACTER SET latin1 NOT NULL,
      `subject` text CHARACTER SET latin1 NOT NULL,
      `message` text CHARACTER SET latin1 NOT NULL,
      `ip` int(11) NOT NULL,
      `creation` int(11) NOT NULL,
      `status` varchar(20) CHARACTER SET latin1 NOT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB;

    CREATE TABLE IF NOT EXISTS `znote_tickets_replies` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `tid` int(11) NOT NULL,
      `username` varchar(32) CHARACTER SET latin1 NOT NULL,
      `message` text CHARACTER SET latin1 NOT NULL,
      `created` int(11) NOT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB;

    CREATE TABLE IF NOT EXISTS `znote_global_storage` (
      `key` VARCHAR(32) NOT NULL,
      `value` TEXT NOT NULL,
      UNIQUE (`key`)
    ) ENGINE=InnoDB;



    Última edición por [Admin] God Maya el Jue Abr 27, 2017 9:00 pm, editado 3 veces



    [Tutorial] Solucion al problema de red skull de la global tibiaface 7.76/7.72 YNU5B25
    4 participantes
    http://www.tibiaface.com

    Krapula

    Krapula
    Miembro
    Miembro
    Gracias Maya Funciona.

    aunque deberia hacer un tutorial como instalar Znote !

    4 participantes
    https://www.facebook.com

    3[Tutorial] Solucion al problema de red skull de la global tibiaface 7.76/7.72 Empty teste Jue Oct 15, 2015 4:33 am

    Felipe93

    Felipe93
    Miembro
    Miembro
    buen aporte maya gracias



    Warning: mysql_result() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\engine\function\general.php on line 102
    Table 'lol.znote_visitors_details' doesn't exist
    me sale este error trate de ir a donde me dijo y cmabiar el valor de 0 a 1 pero nada sigue igual no se ve la website ni nada

    4 participantes

    snufkin

    snufkin
    Nuevo Miembro
    Nuevo Miembro
    amigo tengo un problema si puedes ayudarme con esto?

    Fatal error: Call to undefined function mysql_connect() in C:\xampp\htdocs\engine\database\connect.php on line 197

    por que puede ser?

    4 participantes

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    snufkin escribió:amigo tengo un problema si puedes ayudarme con esto?

    Fatal error: Call to undefined function mysql_connect() in C:\xampp\htdocs\engine\database\connect.php on line 197

    por que puede ser?


    que no has colcoado tus datos de tu phpadmin en la config.php



    [Tutorial] Solucion al problema de red skull de la global tibiaface 7.76/7.72 YNU5B25
    4 participantes
    http://www.tibiaface.com

    snufkin

    snufkin
    Nuevo Miembro
    Nuevo Miembro
    [Admin] God Maya escribió:
    snufkin escribió:amigo tengo un problema si puedes ayudarme con esto?

    Fatal error: Call to undefined function mysql_connect() in C:\xampp\htdocs\engine\database\connect.php on line 197

    por que puede ser?


    que no has colcoado tus datos de tu phpadmin en la config.php

    Amigo, los coloque pero aun sale ese mensaje D:

    4 participantes

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    snufkin escribió:
    [Admin] God Maya escribió:
    snufkin escribió:amigo tengo un problema si puedes ayudarme con esto?

    Fatal error: Call to undefined function mysql_connect() in C:\xampp\htdocs\engine\database\connect.php on line 197

    por que puede ser?


    que no has colcoado tus datos de tu phpadmin en la config.php

    Amigo, los coloque pero aun sale ese mensaje D:


    que problemas tendras seguramente no usas el globaltibiaface o noe stas usando la znote adecuada



    [Tutorial] Solucion al problema de red skull de la global tibiaface 7.76/7.72 YNU5B25
    4 participantes
    http://www.tibiaface.com

    Invitado

    Anonymous
    Invitado
    amigo tengo un problema al ejecutar el tibia face 7.72 me dice que el archivo MSCV120.dll no esta diseñado para ejecutarse en windows.

    tengo windows 7 32 bits.

    vi que en el ot trae un readme que dice como solucionar pero no entiendo como hacerlo
    si me pueden ayudar se los agradesco

    4 participantes

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    Daniel Morales escribió:amigo tengo un problema al ejecutar el tibia face 7.72 me dice que el archivo MSCV120.dll no esta diseñado para ejecutarse en windows.

    tengo windows 7  32 bits.

    vi que en el ot trae un readme que dice como solucionar pero no entiendo como hacerlo
    si me pueden ayudar se los agradesco

    hmmm descargate el dll de google para 32bits y se lo colocas al ot



    [Tutorial] Solucion al problema de red skull de la global tibiaface 7.76/7.72 YNU5B25
    4 participantes
    http://www.tibiaface.com

    Invitado

    Anonymous
    Invitado
    ya lo instale lo que ocurre es q dice que este archivo no es ´para ejecutarse en windows

    4 participantes

    11[Tutorial] Solucion al problema de red skull de la global tibiaface 7.76/7.72 Empty teste Miér Abr 27, 2016 1:31 pm

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    Daniel Morales escribió:ya lo instale lo que ocurre es q dice que este archivo no es ´para ejecutarse en windows

    instale esto [Tienes que estar registrado y conectado para ver este vínculo]


    se coloco las tablas de znote por si tienen algun problema ahi estaran en sus manos para poder solucionar esos problemas menores

    4 participantes
    http://www.tibiaface.com

    Contenido patrocinado


    4 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).