THT Community (TCom)

Full Version: Editable Knowledgebase
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I see there is a knowledgebase in the support area but nothing is it. Then I don't see anything for it in Staff Area either to add things.
There is.
ACP Menu -> Knowledgebase.

Perhaps you did not install correctly or you're using an old build.
I don't see it Jimmie Sad. I used v1.1.1
You must be blink. Please take a screenshot of your admin area for us to look. It must be there.
[Image: thtcv0.th.jpg]

I must be missing something Tongue. Did I get the wrong download even though the folder said v1.1.1?
Run this in your SQL and it should work. It also fixes the KB if it doesn't exist.
I consider tht_ as your prefix here:
Code:
INSERT INTO `tht_acpnav` (`id`, `visual`, `icon`, `link`) VALUES (NULL, 'Knowledgebase', 'folder.png', 'kb');
CREATE TABLE IF NOT EXISTS `tht_cats` (

  `id` mediumint(9) NOT NULL auto_increment,

  `name` varchar(50) NOT NULL,

  `description` text NOT NULL,

  PRIMARY KEY  (`id`)

) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

CREATE TABLE IF NOT EXISTS `tht_articles` (

  `id` mediumint(9) NOT NULL auto_increment,

  `catid` mediumint(9) NOT NULL,

  `name` varchar(100) NOT NULL,

  `content` text NOT NULL,

  PRIMARY KEY  (`id`)

) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
It should fix it.
Yup that worked, thanks Jimmie.
You probably didn't run the upgrade script when upgrading to the latest version.
Nope, he did a new installation. I helped him.
Reference URL's