Results 1 to 5 of 5
  1. #1
    Join Date
    May 2006
    Posts
    55
    Plugin Contributions
    0

    Default FAQ MODULE Download

    Could someone send me the link to the lastest version of the Faq module?
    Thanks

  2. #2
    Join Date
    Apr 2005
    Location
    Houston, TX
    Posts
    1,410
    Plugin Contributions
    1

    Default Re: FAQ MODULE Download

    Check the author's website, although it may not be 1.3 compatible.

  3. #3
    Join Date
    May 2006
    Posts
    55
    Plugin Contributions
    0

    Default Re: FAQ MODULE Download

    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.

    PHP Code:
    Fatal errorCannot 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 
    here is the code for that file

    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_defaultDIR_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

  4. #4
    Join Date
    Jul 2006
    Location
    London, UK
    Posts
    11
    Plugin Contributions
    0

    Default Re: FAQ MODULE Download

    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

  5. #5

    Default Re: FAQ MODULE Download

    Quote Originally Posted by meemster View Post
    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
    I had the same problem and this fixed it. Thanks!

 

 

Similar Threads

  1. FAQ Module
    By raunharman in forum General Questions
    Replies: 2
    Last Post: 3 Sep 2009, 07:36 AM
  2. Question About the Download Relocation FAQ
    By zglider in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 17 Mar 2009, 12:35 AM
  3. FAQ Module
    By gemadan96 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 9 Dec 2008, 05:00 PM
  4. FAQ Module
    By lizar5- in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 5 Sep 2007, 10:44 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg