Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Editable Knowledgebase
#1
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.
#2
There is.
ACP Menu -> Knowledgebase.

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

I must be missing something Tongue. Did I get the wrong download even though the folder said v1.1.1?
#6
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.
Jimmie Lin - Community Manager & THT.Next Developer
#7
Yup that worked, thanks Jimmie.
#8
You probably didn't run the upgrade script when upgrading to the latest version.
#9
Nope, he did a new installation. I helped him.
Jimmie Lin - Community Manager & THT.Next Developer


Forum Jump:


Users browsing this thread: 1 Guest(s)