Thread: FAQ Manager

Page 1 of 2 12 LastLast
Results 1 to 10 of 369

Hybrid View

  1. #1
    Join Date
    Jun 2007
    Location
    Eustis, Florida, USA, EARTH
    Posts
    836
    Plugin Contributions
    0

    Default Re: FAQ Manager

    There is a minor syntax error that appears to have significant impact on submitting questions.

    I found that the file tpl_faqs_submit_default is missing the first ?>

    See below:

    <?php
    //
    // +----------------------------------------------------------------------+
    // |zen-cart Open Source E-commerce |
    // +----------------------------------------------------------------------+
    // | Copyright (c) 2003 The zen-cart developers |
    // | |
    // | http://www.zen-cart.com/index.php |
    // | |
    // | Portions Copyright (c) 2003 osCommerce |
    // +----------------------------------------------------------------------+
    // | This source file is subject to version 2.0 of the GPL license, |
    // | that is bundled with this package in the file LICENSE, and is |
    // | available through the world-wide-web at the following url: |
    // | http://www.zen-cart.com/license/2_0.txt. |
    // | If you did not receive a copy of the zen-cart license and are unable |
    // | to obtain it through the world-wide-web, please send a note to |
    // | [email protected] so we can mail you a copy immediately. |
    // +----------------------------------------------------------------------+
    // Original contrib by Vijay Immanuel for osCommerce, converted to zen by [email protected] - http://www.open-operations.com
    // $Id: links_manager.php 2004-11-19 [email protected]
    //?>

    Without the ?> you get an error when posting question and then a guest greeting screen appears.

  2. #2
    Join Date
    Jun 2007
    Location
    Eustis, Florida, USA, EARTH
    Posts
    836
    Plugin Contributions
    0

    Default Re: FAQ Manager

    Additionally, when I post a question I get the following printed out on the top of the screen.

    echo zen_draw_form('submit_faq', zen_href_link(FILENAME_FAQS_SUBMIT, '', 'SSL'), 'post', 'enctype="multipart/form-data"', 'onSubmit="return check_form(submit_faq);"') . zen_draw_hidden_field('action', 'process'); ?>

    Is there a way to hide it?

  3. #3
    Join Date
    Sep 2006
    Posts
    405
    Plugin Contributions
    0

    Default Re: FAQ Manager

    Hi,

    I will give it one more try, after having posted and bumped already several times.

    I noticed that the error I get is something common it is not that i am the only one with this issue and I believe taht most may not have noticed yet taht they have the same issue.

    Please take a look at

    http://www.clickyshop.com/tienda1/in...?main_page=faq

    I dont know what causes this error, but most of the webites having installed FAQ MAnager, as I mentioned before, have the same error.

    You can checkout by yourself, try to enter www.yourdomain.com/your_shop/index.php?main_page=faq

    You will see that this is common error....

    Does anybody has an idea how to fix this?
    Or should I just let it go and there is no fix for it?


    Would be great if anybody finds an answer on this matter.

    Help really apreciated.

    regards,
    kruna

  4. #4
    Join Date
    Jun 2007
    Location
    Eustis, Florida, USA, EARTH
    Posts
    836
    Plugin Contributions
    0

    Default Re: FAQ Manager

    If you put the ?> in the file that I told you about above ..that will fix one of your problems. Please find the tpl_faqs_submit_default.php file in your templates directory and add the ?>

  5. #5
    Join Date
    Jun 2007
    Location
    Eustis, Florida, USA, EARTH
    Posts
    836
    Plugin Contributions
    0

    Default Re: FAQ Manager

    ok clicky I had 2 margarittas and one zambuca and I found your problem....and mine

    go to your templates and find the file I referred to above

    tpl_faqs_submit_default.php is either in your default template directory or in your custom directory.

    Place this in the top of the file: and remove the same:

    <?php
    //
    // +----------------------------------------------------------------------+
    // |zen-cart Open Source E-commerce |
    // +----------------------------------------------------------------------+
    // | Copyright (c) 2003 The zen-cart developers |
    // | |
    // | http://www.zen-cart.com/index.php |
    // | |
    // | Portions Copyright (c) 2003 osCommerce |
    // +----------------------------------------------------------------------+
    // | This source file is subject to version 2.0 of the GPL license, |
    // | that is bundled with this package in the file LICENSE, and is |
    // | available through the world-wide-web at the following url: |
    // | http://www.zen-cart.com/license/2_0.txt. |
    // | If you did not receive a copy of the zen-cart license and are unable |
    // | to obtain it through the world-wide-web, please send a note to |
    // | license AT zen-cart DOT com so we can mail you a copy immediately. |
    // +----------------------------------------------------------------------+
    // Original contrib by Vijay Immanuel for osCommerce, converted to zen by dave AT open-operations DOT com - http://www.open-operations.com
    // $Id: links_manager.php 2004-11-19 dave AT open-operations DOT com
    //?>

    <?php


    you will notice, I hope, that the last two lines are different from what you had.

    the ?> is missing in the original file
    and
    the <?php is missing in the original file

    that should do it for you.
    Last edited by pixelpadre; 24 Nov 2007 at 04:03 AM.

  6. #6
    Join Date
    Jul 2007
    Posts
    132
    Plugin Contributions
    0

    Default Re: FAQ Manager

    Hi Everybody

    I have installed this mod on 1.3.7 .. but I get this error on the sidebox

    1054 Unknown column 'p.products_date_available' in 'where clause'
    in:
    [select p.faqs_id from faqs p where p.faqs_status = '1' and p.products_date_available >=20080413 limit 1]
    Any ideas ?

  7. #7
    Join Date
    Feb 2005
    Location
    Lochgelly :: Fife :: Scotland :: UK
    Posts
    441
    Plugin Contributions
    0

    Default Re: FAQ Manager

    Quote Originally Posted by NullMind View Post
    Hi Everybody

    I have installed this mod on 1.3.7 .. but I get this error on the sidebox



    Any ideas ?
    Theres a fix for this i think in this thread.

    Regards

    Derek

  8. #8
    Join Date
    Feb 2008
    Posts
    569
    Plugin Contributions
    0

    Default Re: FAQ Manager

    Installed MOD, not what i was looking for. Can someone please help me uninstall this? This doesn't have a sql uninstall, and I am not advanced enough to write my own script to uninstall it thank you

  9. #9
    Join Date
    Aug 2006
    Posts
    197
    Plugin Contributions
    1

    Default Re: FAQ Manager

    If I remember correctly, I just deleted all the files that I uploaded and didn't bother with removing the SQL. Seems to be working fine.

  10. #10
    Join Date
    Nov 2006
    Posts
    34
    Plugin Contributions
    0

    Default Re: FAQ Manager

    Quote Originally Posted by Kruna View Post
    Hi,

    I will give it one more try, after having posted and bumped already several times.

    I noticed that the error I get is something common it is not that i am the only one with this issue and I believe taht most may not have noticed yet taht they have the same issue.

    Please take a look at

    http://www.clickyshop.com/tienda1/in...?main_page=faq

    I dont know what causes this error, but most of the webites having installed FAQ MAnager, as I mentioned before, have the same error.

    You can checkout by yourself, try to enter www.yourdomain.com/your_shop/index.php?main_page=faq

    You will see that this is common error....

    Does anybody has an idea how to fix this?
    Or should I just let it go and there is no fix for it?


    Would be great if anybody finds an answer on this matter.

    Help really apreciated.

    regards,
    kruna
    Kruna, without typing the location in your browser how would you get to this page following any of the FAQ links. As I cannot get to this error unless I actually type in the line you suggest in your post.

    Thanks

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. FAQ manager
    By louisapple in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 8 Apr 2009, 03:08 PM
  2. FAQ Manager error
    By tpascubarat in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 23 Jan 2008, 12:48 PM
  3. FAQ Manager ?
    By winky3d in forum All Other Contributions/Addons
    Replies: 9
    Last Post: 26 Jul 2007, 02:33 PM
  4. Faq Manager Character Limit
    By jaywhy in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 2 May 2007, 05:28 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