Could someone send me the link to the lastest version of the Faq module?
Thanks
Could someone send me the link to the lastest version of the Faq module?
Thanks
Check the author's website, although it may not be 1.3 compatible.
Hi
Thanks for the download link. I install everything and the admin area look like its working right but on the front end I get this error.
here is the code for that filePHP Code:Fatal error: Cannot instantiate non-existent class: faq_category_tree in /usr/local/psa/home/vhosts/dakotafiresupply.com/httpdocs/includes/modules/sideboxes/faq_categories.php on line 22
PHP Code:// $Id: faq_manager.php 001 2005-03-27 [email protected]
//
$main_faq_category_tree = new faq_category_tree;
$row = 0;
$box_faq_categories_array = array();
// don't build a tree when no faq_categories
$check_faq_categories = $db->Execute("select faq_categories_id from " . TABLE_FAQ_CATEGORIES . " where faq_categories_status=1 limit 1");
if ($check_faq_categories->RecordCount() > 0) {
$box_faq_categories_array = $main_faq_category_tree->zen_faq_category_tree();
}
require($template->get_template_dir('tpl_faq_categories.php',DIR_WS_TEMPLATE, $current_page_base,'sideboxes'). '/tpl_faq_categories.php');
$title = BOX_HEADING_FAQ_CATEGORIES;
$left_corner = false;
$right_corner = false;
$right_arrow = false;
$title_link = false;
require($template->get_template_dir($column_box_default, DIR_WS_TEMPLATE, $current_page_base,'common') . '/' . $column_box_default);
?>
Any ideas? I assume its not 1.0.3.2 compatable since it was built in janurary of 2006
Had the same issue. You need to implement the file modification stated in the Readme file:
Open your zen-cart includes/application top and add the following to the end:
<?php
// include the list of extra open-operations files
if ($za_dir = @dir(DIR_WS_INCLUDES . 'open-operations')) {
while ($zv_file = $za_dir->read()) {
if (strstr($zv_file, '.php')) {
require(DIR_WS_INCLUDES . 'open-operations/' . $zv_file);
}
}
}
?>
Make sure to add this after the last ?> & also make sure you leave no line spaces at the end of this file
NOTE: the above needs to be added only once to your includes/application_top.php, so if you have completed this step for the links_manager 2.x or poll_manager, there is no need to repeat this step.
Hope it works for you![]()