Ir para conteúdo

[GESIOR] VictorWEBMaster 2019v


Posts Recomendados

 

Aqui NAO para conseguindo o site when término o 7 fase FICA TODO bungado SEM aparecer o lasternews, e FICA Igual AO Gesior 0.3.8, e muitos FICA mal posicionados, ja tentei o 11.4.15, EO 11.4,13 e FICAM o MESMO Erro tentei com o xampp 1.7.3 EO Vertrigo 222 e FICAM com o MESMO Erro o Opaco PODE sor?

 

QUEM me ajudar REP +

 

Voce seguiu o tutorial?

 

 

 

 

Este site de Victor e combatível com otserv 8.60? e qua xampp PODE USAR Nele?

 

Na pagina 37 o Vencedor falo Parágrafo UMA Pessoa version qa q Melhor ficaria Parágrafo hum Servidor 8.6 E 11.4.15 EO xamp eu Acho qo 1.7.3 .. (eu USO ESSE Parágrafo ESSA version + Atualizada SEM nenhum Problema ....)

Espero ter ajudado

 

 

 

Novo!

 

Victor da Uma ajudinha aqui ... (eu tava analizando de Todos os Erros q Aparece e ATÉ Que eu ESTOU conseguindo resolver com base de naquilo q vc me falo nn pós Anteriores, so q TEM ESSE q ta me Dando UMA dor de Cabeça ... .)

 

eu tava usando hum config.lua Que UMA Pessoa me Passo e com Elementos tava Dando AQUELE Erro q eu falei pra vc ... Agora eu USEI o config.lua Fazer Servidor proprio e funciono ... porem nenhum local Aparece ISSO ágora:

Aviso: Erro de sintaxe, BOOL_FALSE Inesperado los C  Users / guilherme / Desktop / guilhermee / global / 10.3/config.lua mundial na Linha 42 los C: \ xampp \ xampp \ htdocs \ config-and-functions.php on line 13
Erro de Banco de Dados. Tipo de Banco de Dados Desconhecido los C  Users / guilherme / Desktop / guilhermee / 10.3/config.lua global / global. Desenvolvi Ser Igual a: "mysql" ou "sqlite". Ágora E: ""

ágora Olha Como ta Meu confi.lua

- MySQL
mysqlHost = "127.0.0.1"
mysqlUser = "root"
mysqlPass = "xxxxx"
mysqlDatabase = "xxxxx"
mysqlPort = 3306

OS configuracao EO lua q eu usava os antes q dava AQUELE Problema ...

SQLType = "mysql"
sqlhost = "localhost"
sqlPort = 3306
sqluser = "root"
sqlPass = "xxxxx"
SqlDatabase = "xxxx
SQLFile = "theforgottenserver.s3db"
sqlKeepAlive = 0
mysqlReadTimeout = 5000
mysqlWriteTimeout = 5000
EncryptionType = "sha1"

oq eu Faço .... (funciono ágora o servidor + o n locais ... kkkkkk)

 

Voce está utilizando TFS 1.0. Website ainda nao é compativel com esta versão do tfs.

 

 

 

Sim victor seguir o tutorial certinhoo sit e criado, so que vem todo bungado parecendo o gesior 0.3.8, e da muitos erros!

Link para o comentário
Compartilhar em outros sites

Ok irei tentar fazer o sit e te posto o erro!

 

Edit: victor tentei em 2 computadores e segue os mesmos erros!

 

segue as fotos dos erros:

 

post-374707-0-03802100-1394110686_thumb.png

 

post-374707-0-66798800-1394110873_thumb.png

 

post-374707-0-13004800-1394110890_thumb.png

 

post-374707-0-41721800-1394110906_thumb.png

 

e não consigo, não aparece o lasternew poderia me ajudar?

Editado por ikaroangelo
Link para o comentário
Compartilhar em outros sites

Ikaro, coloque este comando na sua DB:

CREATE TABLE IF NOT EXISTS `pagsegurotransacoes` (
  `TransacaoID` varchar(36) NOT NULL,
  `VendedorEmail` varchar(200) NOT NULL,
  `Referencia` varchar(200) default NULL,
  `TipoFrete` char(2) default NULL,
  `ValorFrete` decimal(10,2) default NULL,
  `Extras` decimal(10,2) default NULL,
  `Anotacao` text,
  `TipoPagamento` varchar(50) NOT NULL,
  `StatusTransacao` varchar(50) NOT NULL,
  `CliNome` varchar(200) NOT NULL,
  `CliEmail` varchar(200) NOT NULL,
  `CliEndereco` varchar(200) NOT NULL,
  `CliNumero` varchar(10) default NULL,
  `CliComplemento` varchar(100) default NULL,
  `CliBairro` varchar(100) NOT NULL,
  `CliCidade` varchar(100) NOT NULL,
  `CliEstado` char(2) NOT NULL,
  `CliCEP` varchar(9) NOT NULL,
  `CliTelefone` varchar(14) default NULL,
  `NumItens` int(11) NOT NULL,
  `Data` datetime NOT NULL,
  `ProdQuantidade_x` int(5) NOT NULL,
  `status` tinyint(1) unsigned NOT NULL default '0',
  UNIQUE KEY `TransacaoID` (`TransacaoID`,`StatusTransacao`),
  KEY `Referencia` (`Referencia`),
  KEY `status` (`status`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

E depois de executar o acima, coloque este:

CREATE TABLE IF NOT EXISTS `announcements` (
  `id` int(10) NOT NULL auto_increment,
  `title` varchar(50) NOT NULL,
  `text` varchar(255) NOT NULL,
  `date` varchar(20) NOT NULL,
  `author` varchar(50) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=10 ;

Link para o comentário
Compartilhar em outros sites

bom o site fico tudo bom, mais quando vou no lastenew aparece um bucado de erro 236,33,4,3 e etc

 

 

peço desculpa pelo double!

 

Pode postar uma print, fica mais legível.

Editado por VictorWEBMaster
Link para o comentário
Compartilhar em outros sites

Executa isso

CREATE TABLE IF NOT EXISTS `z_forum` (
  `id` int(11) NOT NULL auto_increment,
  `sticky` tinyint(1) NOT NULL default '0',
  `closed` tinyint(1) NOT NULL default '0',
  `first_post` int(11) NOT NULL default '0',
  `last_post` int(11) NOT NULL default '0',
  `section` int(3) NOT NULL default '0',
  `icon_id` int(3) NOT NULL default '1',
  `replies` int(20) NOT NULL default '0',
  `views` int(20) NOT NULL default '0',
  `author_aid` int(20) NOT NULL default '0',
  `author_guid` int(20) NOT NULL default '0',
  `post_text` text NOT NULL,
  `post_topic` varchar(255) NOT NULL,
  `post_smile` tinyint(1) NOT NULL default '0',
  `post_date` int(20) NOT NULL default '0',
  `last_edit_aid` int(20) NOT NULL default '0',
  `edit_date` int(20) NOT NULL default '0',
  `post_ip` varchar(32) NOT NULL default '0.0.0.0',
  PRIMARY KEY  (`id`),
  KEY `section` (`section`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;
Link para o comentário
Compartilhar em outros sites

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S02]: Base table or view not found: 1146 Table 'icdeath.z_shop_offer' doesn't exist' in C:\xampp\htdocs\shopsystem.php:106 Stack trace: #0 C:\xampp\htdocs\shopsystem.php(106): PDO->query('SELECT * FROM `...') #1 C:\xampp\htdocs\shopsystem.php(212): getOfferArray() #2 C:\xampp\htdocs\index.php(202): include('C:\xampp\htdocs...') #3 {main} thrown in C:\xampp\htdocs\shopsystem.php on line 106

 

 

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S02]: Base table or view not found: 1146 Table 'icdeath.z_monsters' doesn't exist' in C:\xampp\htdocs\creatures.php:34 Stack trace: #0 C:\xampp\htdocs\creatures.php(34): PDO->query('SELECT * FROM `...') #1 C:\xampp\htdocs\index.php(112): include('C:\xampp\htdocs...') #2 {main} thrown in C:\xampp\htdocs\creatures.php on line 34

 

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S02]: Base table or view not found: 1146 Table 'icdeath.z_polls' doesn't exist' in C:\xampp\htdocs\layouts\tibiacom\layout.php:518 Stack trace: #0 C:\xampp\htdocs\layouts\tibiacom\layout.php(518): PDO->query('SELECT * FROM z...') #1 C:\xampp\htdocs\index.php(275): include('C:\xampp\htdocs...') #2 {main} thrown in C:\xampp\htdocs\layouts\tibiacom\layout.php on line 518

 

 

Victor tem como me ajudar com esses?

Editado por ikaroangelo
Link para o comentário
Compartilhar em outros sites

Victor estou usando a versão 0.0.6,vi que vc finalizou com a 0.0.8 agora,oque mudou?Teve alguma alteração radical no code,digo pelo fato que estou usando a vesão 0.0.6 com um servidor 8.6 normalmente e quero saber oque mudou se preciso atualizar mesmo.

Link para o comentário
Compartilhar em outros sites

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S02]: Base table or view not found: 1146 Table 'icdeath.z_shop_offer' doesn't exist' in C:\xampp\htdocs\shopsystem.php:106 Stack trace: #0 C:\xampp\htdocs\shopsystem.php(106): PDO->query('SELECT * FROM `...') #1 C:\xampp\htdocs\shopsystem.php(212): getOfferArray() #2 C:\xampp\htdocs\index.php(202): include('C:\xampp\htdocs...') #3 {main} thrown in C:\xampp\htdocs\shopsystem.php on line 106

 

 

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S02]: Base table or view not found: 1146 Table 'icdeath.z_monsters' doesn't exist' in C:\xampp\htdocs\creatures.php:34 Stack trace: #0 C:\xampp\htdocs\creatures.php(34): PDO->query('SELECT * FROM `...') #1 C:\xampp\htdocs\index.php(112): include('C:\xampp\htdocs...') #2 {main} thrown in C:\xampp\htdocs\creatures.php on line 34

 

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S02]: Base table or view not found: 1146 Table 'icdeath.z_polls' doesn't exist' in C:\xampp\htdocs\layouts\tibiacom\layout.php:518 Stack trace: #0 C:\xampp\htdocs\layouts\tibiacom\layout.php(518): PDO->query('SELECT * FROM z...') #1 C:\xampp\htdocs\index.php(275): include('C:\xampp\htdocs...') #2 {main} thrown in C:\xampp\htdocs\layouts\tibiacom\layout.php on line 518

 

 

Victor tem como me ajudar com esses?

Cara tu executou a DB do tópico? Não tem lógica isso.

Primeiro executa isso:

CREATE TABLE IF NOT EXISTS `z_shop_offer` (
  `id` int(11) NOT NULL auto_increment,
  `points` int(11) NOT NULL default '0',
  `itemid1` int(11) NOT NULL default '0',
  `count1` int(11) NOT NULL default '0',
  `itemid2` int(11) NOT NULL default '0',
  `count2` int(11) NOT NULL default '0',
  `offer_type` varchar(255) default NULL,
  `offer_description` text NOT NULL,
  `offer_name` varchar(255) NOT NULL,
  `pid` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

Depois, isso:

CREATE TABLE IF NOT EXISTS `z_monsters` (
  `hide_creature` tinyint(1) NOT NULL default '0',
  `name` varchar(255) NOT NULL,
  `mana` int(11) NOT NULL,
  `exp` int(11) NOT NULL,
  `health` int(11) NOT NULL,
  `speed_lvl` int(11) NOT NULL default '1',
  `use_haste` tinyint(1) NOT NULL,
  `voices` text NOT NULL,
  `immunities` varchar(255) NOT NULL,
  `summonable` tinyint(1) NOT NULL,
  `convinceable` tinyint(1) NOT NULL,
  `race` varchar(255) NOT NULL,
  `loot` text NOT NULL,
  `gfx_name` varchar(255) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Link para o comentário
Compartilhar em outros sites

Victor estou usando a versão 0.0.6,vi que vc finalizou com a 0.0.8 agora,oque mudou?Teve alguma alteração radical no code,digo pelo fato que estou usando a vesão 0.0.6 com um servidor 8.6 normalmente e quero saber oque mudou se preciso atualizar mesmo.

 

 

Correções

  • Novo sistema de shop, agora identificando nome do item direto do ot
  • Sistemas corrigidos, como do tranferencia de pontos
  • Sistema de change name ainda não 100%
  • Create Account personalizado com escolha de cidade e servidor
  • Checagem de nomes de monstros revisados, funcionando perfeitamente, utilizadores de xampp se preparem para nao funcionar.
Link para o comentário
Compartilhar em outros sites

utilizadores de xampp se preparem para nao funcionar.???

Exato, a versão, apenas irá funcionar com o Vertrigo 222 que é disponibilizado pelo Victor no próprio tópico.

 

@Victor

Parabéns pelas inovações!

Link para o comentário
Compartilhar em outros sites

Visitante
Este tópico está impedido de receber novos posts.
×
×
  • Criar Novo...