• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Mysql error/missing table??? idk...

Fu Manchu

Sepultra™
Joined
Jan 28, 2011
Messages
439
Reaction score
9
Not sure on how to go about fixing this. If someone could maybe take the time to explain to me what is happening and how to fix it. That would be great. Not looking for just the fix I would like to understand what the problem is before I fix it. So I can further understand how some stuff works. Thx


 
Well I'm not going to use geisor I'm gona use modern but once I attach it I should be ok? It's just lookin for something in the db that isent there yet right? Cuse I know once I install modern it obviously adds new tables and what not.
 
Should fix your problem.

Code:
CREATE TABLE IF NOT EXISTS `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 AUTO_INCREMENT=1993 ;
 
Adding z_ots_comunication and In your console it says it doesn't exist.
 
Back
Top