If you're getting a white screen when trying to view the knoweldgebase, apply this quick hotfix.
- Make a backup of your current knowledgebase.php file in case you do something really wrong to it and need to revert to a backup.
- Open knowledgebase.php in a text editor (something like Notepad++. Don't use something like Microsoft Word.
- Find the block of text that looks like this:
Code: Select all
/* Get all the required files and functions */
require(HESK_PATH . 'hesk_settings.inc.php');
require(HESK_PATH . 'inc/common.inc.php');
require(HESK_PATH . 'inc/knowledgebase_functions.inc.php');
Code: Select all
/* Get all the required files and functions */
require(HESK_PATH . 'hesk_settings.inc.php');
require(HESK_PATH . 'inc/common.inc.php');
Code: Select all
// Connect to database
hesk_dbConnect();
Code: Select all
// Connect to database
hesk_load_database_functions();
hesk_dbConnect();
A permanent fix will be released later today as version 3.0.7.