Current time: 02-09-2012, 01:30 AM Hello There, Guest! (LoginRegister)

 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Editable Knowledgebase
12-31-2008, 11:50 PM
Post: #1
Editable Knowledgebase
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.
Find all posts by this user
01-01-2009, 07:32 AM (This post was last modified: 01-01-2009 07:54 AM by Jimmie.)
Post: #2
RE: Editable Knowledgebase
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
Visit this user's website Find all posts by this user
01-01-2009, 05:42 PM
Post: #3
RE: Editable Knowledgebase
I don't see it Jimmie Sad. I used v1.1.1
Find all posts by this user
01-01-2009, 07:58 PM
Post: #4
RE: Editable Knowledgebase
You must be blink. Please take a screenshot of your admin area for us to look. It must be there.
Find all posts by this user
01-01-2009, 10:41 PM
Post: #5
RE: Editable Knowledgebase
[Image: thtcv0.th.jpg]

I must be missing something Tongue. Did I get the wrong download even though the folder said v1.1.1?
Find all posts by this user
01-02-2009, 05:59 AM (This post was last modified: 01-02-2009 06:11 AM by Jimmie.)
Post: #6
RE: Editable Knowledgebase
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
Visit this user's website Find all posts by this user
01-03-2009, 12:46 AM
Post: #7
RE: Editable Knowledgebase
Yup that worked, thanks Jimmie.
Find all posts by this user
01-03-2009, 06:07 AM
Post: #8
RE: Editable Knowledgebase
You probably didn't run the upgrade script when upgrading to the latest version.
Find all posts by this user
01-03-2009, 06:49 AM
Post: #9
RE: Editable Knowledgebase
Nope, he did a new installation. I helped him.

Jimmie Lin - Community Manager & THT.Next Developer
Visit this user's website Find all posts by this user


Forum Jump:


User(s) browsing this thread: 1 Guest(s)