s08e02 - Per Product FAQs SUPPORT / QUESTIONS / CHAT

Open to all! Ask other shopowners for help.
plamastus
Member
Posts: 82
Joined: Fri Mar 12, 2021 2:09 am
Phoenix Version:
Has thanked: 1 time
Been thanked: 2 times

Re: s08e02 - Per Product FAQs SUPPORT

Post by plamastus »

Hi,

Gettting the following error_log output
Trying to access array offset on value of type null in /home/lamastus/public_html/ext/modules/content/product_info/ask_question.php on line 44
Here is the code at that line, it may be a simple fix:

Code: Select all

     if (!tep_not_null($product_check['products_id'])) {
      $messageStack->add_session('product_action', MODULE_CONTENT_PI_FAQ_PRODUCT_NOT_FOUND, 'error');

      tep_redirect(tep_href_link('index.php'));
    }
Thanks
patrick

Tags:


Join The Code Co-op to get access to your library in the Code Co-op Forum
ecartz
Core Team
Posts: 3084
Joined: Tue Nov 05, 2019 6:02 pm
Phoenix Version:
Has thanked: 4 times
Been thanked: 208 times

Re: s08e02 - Per Product FAQs SUPPORT

Post by ecartz »

You could try changing the first line to

Code: Select all

    if (!isset($product_check['products_id']) || !tep_not_null($product_check['products_id'])) {
villameschik

Re: s08e02 - Per Product FAQs SUPPORT

Post by villameschik »

Hi, i am having this problem how can i fix it? thank you

Notice: Trying to access array offset on value of type null in /web/htdocs/admin/faq.php on line 390

Notice: Trying to access array offset on value of type null in /web/htdocs/admin/faq.php on line 399
villameschik

Re: s08e02 - Per Product FAQs SUPPORT

Post by villameschik »

hi, can someone help me? Thank you
heatherbell
Senior Contributor
Posts: 2540
Joined: Mon Oct 07, 2019 4:39 am
Phoenix Version:
Has thanked: 35 times
Been thanked: 243 times

Re: s08e02 - Per Product FAQs SUPPORT

Post by heatherbell »

villameschik wrote: Wed May 12, 2021 2:07 pm hi, can someone help me? Thank you
Try the fix posted above.
villameschik

Re: s08e02 - Per Product FAQs SUPPORT

Post by villameschik »

heatherbell wrote: Wed May 12, 2021 2:10 pm
villameschik wrote: Wed May 12, 2021 2:07 pm hi, can someone help me? Thank you
Try the fix posted above.
Thanks, but I can't find this line in faq.php
villameschik

Re: s08e02 - Per Product FAQs SUPPORT

Post by villameschik »

villameschik wrote: Wed May 12, 2021 2:28 pm
heatherbell wrote: Wed May 12, 2021 2:10 pm
villameschik wrote: Wed May 12, 2021 2:07 pm hi, can someone help me? Thank you
Try the fix posted above.
I found the line and changed as you wrote but it did not solve the problem, the problem is the site in 2 languages, EN, DE, if I try in EN it gives me an error and the message in DE is not displayed, and so if i try in DE same problem
heatherbell
Senior Contributor
Posts: 2540
Joined: Mon Oct 07, 2019 4:39 am
Phoenix Version:
Has thanked: 35 times
Been thanked: 243 times

Re: s08e02 - Per Product FAQs SUPPORT

Post by heatherbell »

villameschik wrote: Wed May 12, 2021 3:07 pmthe problem is the site in 2 languages, EN, DE, if I try in EN it gives me an error and the message in DE is not displayed, and so if i try in DE same problem
If the addon is very important for your shop then possibly hire one of the Certified Developers for help? Raiwa has experience in multi-language stores.
villameschik

Re: s08e02 - Per Product FAQs SUPPORT

Post by villameschik »

heatherbell wrote: Wed May 12, 2021 3:50 pm
villameschik wrote: Wed May 12, 2021 3:07 pmthe problem is the site in 2 languages, EN, DE, if I try in EN it gives me an error and the message in DE is not displayed, and so if i try in DE same problem
If the addon is very important for your shop then possibly hire one of the Certified Developers for help? Raiwa has experience in multi-language stores.
Hi, thank you very much for your advice, this is not a problem to hire a developer, I have installed on a clean version only in English and it gives the same error in admin/faq.php:
line 390: return $faq['faq_question'];
line 399: return $faq['faq_answer'];
Fiber
Contributor
Posts: 173
Joined: Mon Oct 26, 2020 12:16 pm
Phoenix Version: v1.1.0.6
Has thanked: 17 times
Been thanked: 27 times

Re: s08e02 - Per Product FAQs SUPPORT

Post by Fiber »

I have installed on a clean version only in English and it gives the same error in admin/faq.php:
line 390: return $faq['faq_question'];
line 399: return $faq['faq_answer'];
Also installed in 1.0.8.3 and no errors , 2 languages.. very strange that you have the errors with a clean install.
Turn up the Max


Join The Code Co-op to get access to your library in the Code Co-op Forum
Post Reply