Script URL:
Version of script: 2.2
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution: knowledgebase, build knowledgebase
Write your message below:
Curious... Where is the link to build the knowledgebase? I can go directly to it via: admin/manage_knowledgebase.php, but I cannot find a link to it anywhere in the software. Also, I would like to build up a new knowledgebase from scratch but cannot seem to work on it without "enabling it" first. I do not want it visible until it is finished. My knowledgebase will actually act like an FAQ with limited information as I offer a "paid" technical support service. How can I work on the knowledgebase without showing it while I'm making changes?
building a knowledgebase
Moderator: mkoch227
Re: building a knowledgebase
Delete this code from the manage_knowledgebase.php file to override checking if KB is enabled or not:
Then, on the bottom of the manage_knowledgebase.php page you have a form to create categories and a form to insert articles into the database.
Code: Select all
if (!$hesk_settings['kb_enable'])
{
hesk_error($hesklang['kbdis']);
}
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Re: building a knowledgebase
Perfect! Thank you!