Just a few questions.....
I have installed this mod on our testing server with the hope of putting it on our live site when I'm sure everything is working.
1. installed sql - sucess!
2. installed catalog files - success!
3. installed admin files - white screen in admin, removed config.faq.manager.php in admin/auto_loaders admin now works and faqs also work. Is it correct to remove the file after install in this mod?
4. set categories box to show on top of left column - white screen after properly displayed header. Looks like page will show properly until it reaches the categories box code then stops responding. Tweaked code in includes/modules/sideboxes/faq_categories.php. Managed to get site working, but no sign of a category box. Is this normal?
Basically wipped out section:
PHP Code:
// $show_faq_categories = true;
// if ($_GET['main_page']=='faqs_all' or $_GET['main_page']=='faq_info') {
// show it
// $show_faq_categories = true;
//} else {
// do not show it
// $show_faq_categories = false;
//}
Also tried changing the = to ==.
PHP Code:
if ($show_faq_categories == true) {
($_GET['main_page']=='faqs_all' or $_GET['main_page']=='faq_info');
// show it
$show_faq_categories == true;
} else {
// do not show it
$show_faq_categories == false;
}
Not the correct thing to do but it brought my page back. Of cause the other thing to do was to hide the box in layout boxes controller.
Apart from that, I have created some categories and questions, placed links in the information sidebox and product info. All of which work perfectly.
Rather hestitant to put it on our live site until I'm sure about the categories box.