Ir para conteúdo

Erro Mysql Database


Hudsin

Posts Recomendados

É por que você não criou as tabelas do webshop do gesior. Execute:

(Não esqueça de fazer backup da database caso algo dê errado.)

 

 

 

CREATE TABLE `z_ots_comunication` (
 `id` int(11) NOT NULL auto_increment,
 `name` varchar(255) NOT NULL,
 `type` varchar(255) NOT NULL,
 `action` varchar(255) NOT NULL,
 `param1` varchar(255) NOT NULL,
 `param2` varchar(255) NOT NULL,
 `param3` varchar(255) NOT NULL,
 `param4` varchar(255) NOT NULL,
 `param5` varchar(255) NOT NULL,
 `param6` varchar(255) NOT NULL,
 `param7` varchar(255) NOT NULL,
 `delete_it` int(2) NOT NULL default '1',
 PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1;  

 

 

CREATE TABLE `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,
 PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;  

 

 

ALTER TABLE `accounts` ADD `premium_points` INT( 11 ) NOT NULL DEFAULT '0';  

 

 

CREATE TABLE `z_shop_history_item` (
 `id` int(11) NOT NULL auto_increment,
 `to_name` varchar(255) NOT NULL default '0',
 `to_account` int(11) NOT NULL default '0',
 `from_nick` varchar(255) NOT NULL,
 `from_account` int(11) NOT NULL default '0',
 `price` int(11) NOT NULL default '0',
 `offer_id` int(11) NOT NULL default '0',
 `trans_state` varchar(255) NOT NULL,
 `trans_start` int(11) NOT NULL default '0',
 `trans_real` int(11) NOT NULL default '0',
 PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1;  

 

CREATE TABLE `z_shop_history_pacc` (
 `id` int(11) NOT NULL auto_increment,
 `to_name` varchar(255) NOT NULL default '0',
 `to_account` int(11) NOT NULL default '0',
 `from_nick` varchar(255) NOT NULL,
 `from_account` int(11) NOT NULL default '0',
 `price` int(11) NOT NULL default '0',
 `pacc_days` int(11) NOT NULL default '0',
 `trans_state` varchar(255) NOT NULL,
 `trans_start` int(11) NOT NULL default '0',
 `trans_real` int(11) NOT NULL default '0',
 PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1; 

 

 

Link para o comentário
Compartilhar em outros sites

Eu ja tenho as tabelas criadas,tentei isso(apareceu duplicate...),continua com o erro :'(

 

 

 

 

O estranho é que,hora da um erro,hora da outro, hora da erro apenas depois q o ot está on depois de algum tempo

 

 

=/

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

Pelo que vi,esses erros acontecem devido ao mysql desligar :/ no gerenciador n aparece o processo "mysql" mas no apache fica "running" ...

 

Então,pressuponho que isso faça o mysql reiniciar caso desligue?

 

obrigado.

 

 

- aff,agora o apache está pesando em uso de cpu, fica variando de 50% a 80% e o site fica lag, aff T.T

 

 

- testando aqui :D

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

Já consegui arrumar,formatei o pc do dedicado e reinstalei o xampp deu certo...

 

Talvez seja por ter várias versões do xampp instaladas ou algo do tipo,obrigado pela ajuda de todos!

Link para o comentário
Compartilhar em outros sites

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