Zen Cart Logo

FAQ Manager

Views: 88,845

Results 141 to 160 of 369
24 Nov 2007, 11:09 AM
#141
chrisr avatar

chrisr

New Zenner

Join Date:
Nov 2006
Posts:
34
Plugin Contributions:
0

FAQ Manager

Kruna:

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/index.php?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

24 Nov 2007, 12:56 PM
#142
chrisr avatar

chrisr

New Zenner

Join Date:
Nov 2006
Posts:
34
Plugin Contributions:
0

Re: FAQ Manager

Hi All

When disabling images in admin for the faq New page you will find that the test does not line up when looking at this page in your browser. The includes/modules/faq_new_listings.php seems to be faulty/ I have edited and attached a new one which fixes the problem. Hope it helps.

24 Nov 2007, 3:17 PM
#143
kruna avatar

kruna

Zen Follower

Join Date:
Sep 2006
Posts:
405
Plugin Contributions:
0

Re: FAQ Manager

Hi ChrisR,

Tahnk you for answering.
I cant remember anymore how I got there, I just remeber taht it appeared in the breadcrumb and when I clicked on that breadcrumb i got this error.

Anyway it is an error which I would like to fix, if it is possible, if not I will have to live with it.

I suppose that this page has to show available question and I wanted to use this in EZ-pages, linking this page.

pixelpadre,

thank you too, but your fix didnt work for me... :(

regards,
kruna

24 Nov 2007, 5:20 PM
#144
kruna avatar

kruna

Zen Follower

Join Date:
Sep 2006
Posts:
405
Plugin Contributions:
0

Re: FAQ Manager

I found when and where this error appears...

http://www.clickyshop.com/tienda1/index.php?main_page=faqs_submit

in the breadcrumb you can see PREGUNTAS Y RESPUESTAS (Questions and answers)

When you click there this error page comes up...

thanks.

regards,
kruna

25 Nov 2007, 4:57 PM
#145
chrisr avatar

chrisr

New Zenner

Join Date:
Nov 2006
Posts:
34
Plugin Contributions:
0

Re: FAQ Manager

Kruna

The post I did with the attached file was to fix the alignment of the text when you choose not to show images for "New faq" if you switch the images off then the text still leaves place to show the image but you do not need this. The "All nes questions" worked fine, so i made the "New Questions" one work the same as the All queations.

25 Nov 2007, 6:37 PM
#146
chrisr avatar

chrisr

New Zenner

Join Date:
Nov 2006
Posts:
34
Plugin Contributions:
0

Re: FAQ Manager

Kruna:

I found when and where this error appears...

in the breadcrumb you can see PREGUNTAS Y RESPUESTAS (Questions and answers)

When you click there this error page comes up...

thanks.

regards,
kruna

Hi Kruna

The quickest way right now is to go to the includes/extra_datafiles/faq_manager_file_names.php and chnage the line on 28
define('FILENAME_FAQS', 'faq');

define('FILENAME_FAQS', 'faqs_all');

This will at least make the link work. I am still ooking why the actual page for FAQ link does not work but as I am not a programmer it will take some time yet.

Good luck

3 Dec 2007, 3:13 AM
#147
pixelpadre avatar

pixelpadre

Suspended

Join Date:
Jun 2007
Location:
Eustis, Florida, USA, EARTH
Posts:
868
Plugin Contributions:
0

Re: FAQ Manager

I understand that using FAQ module causes the main page to be displayed above the body of any category page. Is this true? If it is, what is the work around it besides eliminating the main page?

6 Dec 2007, 1:27 PM
#148
james739 avatar

james739

Zen Follower

Join Date:
Jun 2007
Posts:
210
Plugin Contributions:
0

Re: FAQ Manager

Hizen:

--------------------------------------------------------->
DROP TABLE IF EXISTS faq_categories;
DROP TABLE IF EXISTS zen_faq_categories;
CREATE TABLE zen_faq_categories (
faq_categories_id int(11) NOT NULL auto_increment,
faq_categories_image varchar(64) default NULL,
parent_id int(11) NOT NULL default '0',
sort_order int(3) default NULL,
date_added datetime default NULL,
last_modified datetime default NULL,
faq_categories_status tinyint(1) NOT NULL default '1',
PRIMARY KEY (faq_categories_id),
KEY idx_faq_categories_parent_id (parent_id),
KEY idx_sort_order (sort_order)
) TYPE=MyISAM;
DROP TABLE IF EXISTS faq_categories_description;
DROP TABLE IF EXISTS zen_faq_categories_description;
CREATE TABLE zen_faq_categories_description (
faq_categories_id int(11) NOT NULL default '0',
language_id int(11) NOT NULL default '1',
faq_categories_name varchar(32) NOT NULL default '',
faq_categories_description text NOT NULL,
PRIMARY KEY (faq_categories_id,language_id),
KEY idx_faq_categories_name (faq_categories_name)
) TYPE=MyISAM;
DROP TABLE IF EXISTS faq_reviews;
DROP TABLE IF EXISTS zen_faq_reviews;
CREATE TABLE zen_faq_reviews (
reviews_id int(11) NOT NULL auto_increment,
faqs_id int(11) NOT NULL default '0',
customers_id int(11) default NULL,
customers_name varchar(64) NOT NULL default '',
reviews_rating int(1) default NULL,
date_added datetime default NULL,
last_modified datetime default NULL,
reviews_read int(5) NOT NULL default '0',
status int(1) NOT NULL default '1',
PRIMARY KEY (reviews_id)
) TYPE=MyISAM;

DROP TABLE IF EXISTS faq_reviews_description;
DROP TABLE IF EXISTS zen_faq_reviews_description;
CREATE TABLE zen_faq_reviews_description (
reviews_id int(11) NOT NULL default '0',
languages_id int(11) NOT NULL default '0',
reviews_text text NOT NULL,
PRIMARY KEY (reviews_id,languages_id)
) TYPE=MyISAM;
DROP TABLE IF EXISTS faq_type_layout;
DROP TABLE IF EXISTS zen_faq_type_layout;
CREATE TABLE zen_faq_type_layout (
configuration_id int(11) NOT NULL auto_increment,
configuration_title text NOT NULL,
configuration_key varchar(255) NOT NULL default '',
configuration_value text NOT NULL,
configuration_description text NOT NULL,
faq_type_id int(11) NOT NULL default '0',
sort_order int(5) default NULL,
last_modified datetime default NULL,
date_added datetime NOT NULL default '0001-01-01 00:00:00',
use_function text,
set_function text,
PRIMARY KEY (configuration_id)
) TYPE=MyISAM;
DROP TABLE IF EXISTS faq_types;
DROP TABLE IF EXISTS zen_faq_types;
CREATE TABLE zen_faq_types (
type_id int(11) NOT NULL auto_increment,
type_name varchar(255) NOT NULL default '',
type_handler varchar(255) NOT NULL default '',
type_master_type int(11) NOT NULL default '1',
allow_add_to_cart char(1) NOT NULL default 'Y',
default_image varchar(255) NOT NULL default '',
date_added datetime NOT NULL default '0001-01-01 00:00:00',
last_modified datetime NOT NULL default '0001-01-01 00:00:00',
PRIMARY KEY (type_id)
) TYPE=MyISAM;
INSERT INTO zen_faq_types VALUES (1, 'FAQ - General', 'faq', 1, 'N', '', now(), '');
DROP TABLE IF EXISTS faq_types_to_faq_category;
DROP TABLE IF EXISTS zen_faq_types_to_faq_category;
CREATE TABLE zen_faq_types_to_faq_category (
faq_type_id int(11) NOT NULL default '0',
faq_category_id int(11) NOT NULL default '0'
) TYPE=MyISAM;

DROP TABLE IF EXISTS faqs;
DROP TABLE IF EXISTS zen_faqs;
CREATE TABLE zen_faqs (
faqs_id int(11) NOT NULL auto_increment,
faqs_type int(11) NOT NULL default '1',
faqs_image varchar(64) default NULL,
faqs_date_added datetime NOT NULL default '0001-01-01 00:00:00',
faqs_last_modified datetime default NULL,
faqs_status tinyint(1) NOT NULL default '0',
faqs_sort_order int(11) NOT NULL default '0',
master_faq_categories_id int(11) NOT NULL default '0',
PRIMARY KEY (faqs_id),
KEY idx_faqs_date_added (faqs_date_added)
) TYPE=MyISAM;

DROP TABLE IF EXISTS faqs_description;
DROP TABLE IF EXISTS zen_faqs_description;
CREATE TABLE zen_faqs_description (
faqs_id int(11) NOT NULL auto_increment,
language_id int(11) NOT NULL default '1',
faqs_name varchar(64) NOT NULL default '',
faqs_description text,
faqs_answer text,
faqs_url varchar(255) default NULL,
faqs_contact_name varchar(255) default NULL,
faqs_contact_mail varchar(255) default NULL,
faqs_owner varchar(11) default '0',
faqs_viewed int(5) default '0',
PRIMARY KEY (faqs_id,language_id),
KEY faqs_name (faqs_name)
) TYPE=MyISAM;

DROP TABLE IF EXISTS faqs_to_faq_categories;
DROP TABLE IF EXISTS zen_faqs_to_faq_categories;
CREATE TABLE zen_faqs_to_faq_categories (
faqs_id int(11) NOT NULL default '0',
faq_categories_id int(11) NOT NULL default '0',
PRIMARY KEY (faqs_id,faq_categories_id)
) TYPE=MyISAM;


Nice site!
How did you get your footer like that. WIth the different columns?

Thanks

9 Jan 2008, 3:08 AM
#149
mentalist avatar

mentalist

New Zenner

Join Date:
Jan 2008
Posts:
6
Plugin Contributions:
0

Re: FAQ Manager

Hello, I installed FAQ Manager on my site without any problems...except one.

On the attached screenshot I have circled a section that is repeated. There are two rows which describe where you are on the site and they have been duplicated. The top line is the line that is on my site by default, and the second is the line that FAQ Manager added. It's only duplicated when you enter the FAQ section. What file do I need to alter to get rid of this line? It's very annoying.

Cheers in advance!

9 Jan 2008, 6:36 AM
#150
dehaw avatar

dehaw

Zen Follower

Join Date:
Feb 2005
Location:
Lochgelly :: Fife :: Scotland :: UK
Posts:
423
Plugin Contributions:
0

Re: FAQ Manager

Hi,

Unfortunately we haven't had time to upgrade the mod for the latest releases, this problem is caused by the template file you installed, so please view the faq templates and remove the breadcrumb code from the template since its now being called elsewhere.

I hope this helps

Derek

9 Jan 2008, 4:37 PM
#151
mentalist avatar

mentalist

New Zenner

Join Date:
Jan 2008
Posts:
6
Plugin Contributions:
0

Re: FAQ Manager

Dehaw:

Hi,

Unfortunately we haven't had time to upgrade the mod for the latest releases, this problem is caused by the template file you installed, so please view the faq templates and remove the breadcrumb code from the template since its now being called elsewhere.

I hope this helps

Derek

Can you elaborate on this? What is 'breadcrumb' code'. If I alter my template, won't it remove this line from everywhere else too?

9 Jan 2008, 5:29 PM
#152
dehaw avatar

dehaw

Zen Follower

Join Date:
Feb 2005
Location:
Lochgelly :: Fife :: Scotland :: UK
Posts:
423
Plugin Contributions:
0

Re: FAQ Manager

When you uploaded the mod you would have uploaded many faq template pages that would have been placed into your templates folder within your template, you need to go through those pages and remove the breadcrumb function code.

Regards

Derek

9 Jan 2008, 5:36 PM
#153
mentalist avatar

mentalist

New Zenner

Join Date:
Jan 2008
Posts:
6
Plugin Contributions:
0

Re: FAQ Manager

Dehaw:

Hi,

Unfortunately we haven't had time to upgrade the mod for the latest releases, this problem is caused by the template file you installed, so please view the faq templates and remove the breadcrumb code from the template since its now being called elsewhere.

I hope this helps

Derek

Dehaw:

When you uploaded the mod you would have uploaded many faq template pages that would have been placed into your templates folder within your template, you need to go through those pages and remove the breadcrumb function code.

Regards

Derek

Hi Derek,

What exactly is the breadcrumb funtion code and what does it look like? What template file should I be looking into specifically?

9 Jan 2008, 6:02 PM
#154
dehaw avatar

dehaw

Zen Follower

Join Date:
Feb 2005
Location:
Lochgelly :: Fife :: Scotland :: UK
Posts:
423
Plugin Contributions:
0

Re: FAQ Manager

Hello,

Go to your includes/templates/your_template/templates/

and look for the files with faq in it and open them, then look for this

  <tr>
    <td class="breadCrumb" colspan="2"><?php echo $breadcrumb->trail(BREAD_CRUMBS_SEPARATOR); ?></td>
  </tr>

Then delte that code above and save your files then upload to the server.

This is the breadcrumb function code:

<?php echo $breadcrumb->trail(BREAD_CRUMBS_SEPARATOR); ?>

Kind Regards

Derek

9 Jan 2008, 6:15 PM
#155
mentalist avatar

mentalist

New Zenner

Join Date:
Jan 2008
Posts:
6
Plugin Contributions:
0

Re: FAQ Manager

Cheers Derek, I'll give it a bash.

9 Jan 2008, 6:37 PM
#156
londoner1988 avatar

londoner1988

New Zenner

Join Date:
Jan 2008
Posts:
11
Plugin Contributions:
0

Re: FAQ Manager

Hello

I have tried all the sql files that everyone has made but they still do not work for me. If their is one that works please could you post it.

Thank you

10 Jan 2008, 5:29 PM
#157
londoner1988 avatar

londoner1988

New Zenner

Join Date:
Jan 2008
Posts:
11
Plugin Contributions:
0

Re: FAQ Manager

Hello anyone?

15 Jan 2008, 6:35 AM
#158
ojae avatar

ojae

New Zenner

Join Date:
Dec 2007
Posts:
6
Plugin Contributions:
0

Re: FAQ Manager

hey

i just installed this module everything seems ok except one thing that is got me stumpt:cry: my "BUTTON_IMAGE_SUBMIT_FAQ" does not appear it just says "send now" with a red x i installed the image in both classic and default classic dir and still nothing look at what im talking about

anyone wit the same problem or now an solution to fix

thanks for your time

17 Jan 2008, 2:18 AM
#159
ojae avatar

ojae

New Zenner

Join Date:
Dec 2007
Posts:
6
Plugin Contributions:
0

Re: FAQ Manager

anybody?

19 Jan 2008, 5:44 PM
#160
tieske avatar

tieske

New Zenner

Join Date:
Mar 2006
Posts:
23
Plugin Contributions:
0

Re: FAQ Manager

The problem with the faq_default is easy to solve so no work around is needed.

just change the 'main_template_vars.php' in /includes/modules/pages/faq

line 129 change _index to _faq in 'tpl_index_default.php'

Hope this helps