12-31-2008, 11:50 PM
01-01-2009, 07:32 AM
There is.
ACP Menu -> Knowledgebase.
Perhaps you did not install correctly or you're using an old build.
ACP Menu -> Knowledgebase.
Perhaps you did not install correctly or you're using an old build.
01-01-2009, 05:42 PM
I don't see it Jimmie
. I used v1.1.1
. I used v1.1.101-01-2009, 07:58 PM
You must be blink. Please take a screenshot of your admin area for us to look. It must be there.
01-01-2009, 10:41 PM
01-02-2009, 05:59 AM
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:
It should fix it.
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 ;01-03-2009, 12:46 AM
Yup that worked, thanks Jimmie.
01-03-2009, 06:07 AM
You probably didn't run the upgrade script when upgrading to the latest version.
01-03-2009, 06:49 AM
Nope, he did a new installation. I helped him.
![[Image: thtcv0.th.jpg]](http://img61.imageshack.us/img61/7296/thtcv0.th.jpg)
. Did I get the wrong download even though the folder said v1.1.1?