• 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!

Modern AAC

Thinkey

New Member
Joined
Jul 5, 2010
Messages
33
Reaction score
0
Hey guys,

I installed Modern AAC and now i keep getting this error on the front page on the site.


SQLSTATE[42S22]: Column not found: 1054 Unknown column 'k.unjustified' in 'where clause'



what does that mean?
 
Try
SQL:
ALTER TABLE  `killers` ADD `unjustified` TINYINT( 1 ) UNSIGNED NOT NULL DEFAULT  '0'
 
How do i add this to my mysql database ?

ALTER TABLE `killers` ADD `unjustified` TINYINT( 1 ) UNSIGNED NOT NULL DEFAULT '0'
 
just open ur phpmyadmin
and then choose the database and import the line
ALTER TABLE `killers` ADD `unjustified` TINYINT( 1 ) UNSIGNED NOT NULL DEFAULT '0'
 
Yeah o, using that version of modern aac ... btw if u read it says the errors are in the xamp folder not the htdocs one.. =/ line 80 says something Root
 
Code:
 CREATE TABLE IF NOT EXISTS `poll_votes` (
  `id` INT(11) NOT NULL AUTO_INCREMENT,
  `answer_id` INT(11) ,
  `poll_id` INT(11) ,
  `account_id` INT(11) NOT NULL,
  PRIMARY KEY (`id`),
  FOREIGN KEY (`answer_id`) REFERENCES `poll_answer` (`id`) ON DELETE CASCADE,
  FOREIGN KEY (`poll_id`) REFERENCES `poll` (`id`) ON DELETE CASCADE,
  FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
 
Back
Top