You must be in the Admin area.
From the Knowledgebase menu choose Articles
Click on the Search/Filter button to list all articles in the nominated category
From the Actions with Selected drop-down list at the bottom of the screen, select Sort Entries
Select the entries you want...
You must be in the Admin area.
From the Knowledgebase menu choose Categories
Select the category that you want to start the sort on from the drop-down list of categories. (If you wish to sort on all categories, you don't need to do this as all categories are displayed when you enter the...
In an .htaccess file in the KBPublisher installation directory change and uncomment line:
php_value upload_max_filesize
For example, if the desired filesize is 3 meg, the following directive would be placed in the .htaccess:
php_value upload_max_filesize "3M"
You also may want to...
You can use mysqldump to create a simple backup of your database using the following syntax:
Backup:
mysqldump -u [username] -p[password] -h[host] [databasename] > [backupfile.sql]
Restore:
mysql -u [username] -p[password] -h[host] [databasename] < [backupfile.sql]
...
Sometimes, when you're adding lots of articles at once, it's a pain to have to hunt through the category list each time to put it into the right place. Here are two ways you can do it quickly.
The first way is to just add your articles one by one, ignoring the category. By default, they'll go...
You can write one-line find-and-replace statements in SQL.
To find a string in a certain field and replace it with another string:
UPDATE [table_name] SET [field_name] = REPLACE([field_name],'[string_ to_find]','[string_to_replace] ');
To find what articles will be...
Often you find you want to create a number of similar articles. Articles that are placed in the same category and mirror categories, that have the same roles assigned, the same formatting, and so on. Creating these from scratch is tedious, and you may forget to set some information.
There's...
QUESTION:
Is it possible to create "user areas"?
We would like our customer A to see all our general documentation plus articles specific to company A, customer B to see all general documentation plus articles specific to company B (but not A) and so on.
ANSWER:
Yes, this is possible. You...