Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Owl Sauron

Members
  • Posts

    130
  • Joined

  • Last visited

  • Days Won

    2

Owl Sauron last won the day on May 20 2021

Owl Sauron had the most liked content!

Profile Information

  • Real Name
    Luis Xavier

Recent Profile Visitors

3,235 profile views

Owl Sauron's Achievements

  1. Nop.. didn´t fixed it: PHP Warning: Use of undefined constant MODULE_HEADER_TAGS_HONEYPOT_BLOCK_NUMBERS_IN_SUBURB - assumed 'MODULE_HEADER_TAGS_HONEYPOT_BLOCK_NUMBERS_IN_SUBURB' (this will throw an Error in a future version of PHP) in /includes/functions/honeypot.php on line 70 and the other 2 are still pending fixing
  2. Greetings, Found new issues on this new version: PHP Warning: Use of undefined constant MODULE_HEADER_TAGS_HONEYPOT_BLOCK_NUMBERS_IN_SUBURB - assumed 'MODULE_HEADER_TAGS_HONEYPOT_BLOCK_NUMBERS_IN_SUBURB' (this will throw an Error in a future version of PHP) in /includes/functions/honeypot.php on line 70 PHP Notice: Undefined index: security_question in /includes/functions/honeypot.php on line 210 PHP Notice: Undefined variable: ip in /includes/functions/honeypot.php on line 608 Phoenix 1.0.8.0 PHP7.4
  3. Greetings, Have found some more issues: PHP Notice: Undefined index: htc_title_tag in /includes/functions/header_tags.php on line 112 PHP Notice: Undefined index: htc_title_tag in /includes/functions/header_tags.php on line 119 PHP 7.4 Phoenix 1.0.8.0
  4. Greetings, found more issues: PHP Notice: Undefined index: security_question in /includes/functions/honeypot.php on line 203 probably caused by: PHP Deprecated: The tep_session_is_registered function has been deprecated. in /includes/functions/sessions.php any help apreciated coz this is causing an huge log file.
  5. Greetings, Phoenix 1.0.8.0 @PHP 7.1 and 7.4 Found more issues. [01-Jul-2021 00:06:35 Europe/Lisbon] PHP Notice: Undefined index: DE in /xxx/xxx/xxx/xxx/administracao/includes/functions/honeypot.php on line 232 [01-Jul-2021 00:06:35 Europe/Lisbon] PHP Notice: Undefined index: MZ in /xxx/xxx/xxx/xxx/administracao/includes/functions/honeypot.php on line 232 [01-Jul-2021 00:06:35 Europe/Lisbon] PHP Notice: Undefined index: MZ in /xxx/xxx/xxx/xxx/administracao/includes/functions/honeypot.php on line 232 [01-Jul-2021 00:06:35 Europe/Lisbon] PHP Notice: Undefined index: DE in /xxx/xxx/xxx/xxx/administracao/includes/functions/honeypot.php on line 232 [01-Jul-2021 00:06:35 Europe/Lisbon] PHP Notice: Undefined index: KN in /xxx/xxx/xxx/xxx/administracao/includes/functions/honeypot.php on line 232 [01-Jul-2021 00:06:35 Europe/Lisbon] PHP Notice: Undefined index: DE in /xxx/xxx/xxx/xxx/administracao/includes/functions/honeypot.php on line 232 [01-Jul-2021 00:06:35 Europe/Lisbon] PHP Notice: Undefined index: DE in /xxx/xxx/xxx/xxx/administracao/includes/functions/honeypot.php on line 232
  6. Hi again, Getting several issues: PHP Notice: Trying to access array offset on value of type null in /includes/functions/header_tags.php on line 25 Phoenix 1.0.8.0 @ PHP 7.1 & 7.4
  7. to fix this issue just modify the "/includes/modules/content/index_products/cm_ip_title_hts.php" file at line 45 from: $db_query = tep_db_query("select c.categories_image as image, " . $name_check . " from categories c left join categories_description cd on c.categories_id = cd.categories_id where c.categories_id = '" . (int)$current_category_id . "'"); to: $db_query = tep_db_query("select c.categories_image as image, " . $name_check . " from categories c left join categories_description cd on c.categories_id = cd.categories_id where c.categories_id = '" . (int)$current_category_id . "' AND cd.language_id = " . (int)$_SESSION['languages_id'] . "");
  8. Greetings, guess not: Notice: Undefined index: title in /includes/header_tags.php on line 221 Notice: Undefined index: title in /includes/header_tags.php on line 222 Notice: Undefined index: keywords in /includes/header_tags.php on line 225 Notice: Undefined index: title in /includes/modules/header_tags_seo/header_tags_opengraph.php on line 31 Notice: Undefined index: desc in /includes/modules/header_tags_seo/header_tags_opengraph.php on line 32 the above happens when you select a manufacturer at index page. and the bellow isnt fixed either: - If you have more than one language installed on the shop, the Categories HEADER in the Products Listing only shows in English. another thing thats not an issue but could be a good implementation is the fact that AutoFill - Listing Text could have a value box so we can decide how many characters it would display at products index nested description...
  9. Actually... please ignore my last fix. Its even easier and you can make use of the HTML Text feature: Edit file "tpl_cm_header_jssor.php" and replace: " $banner_query = tep_db_query("select a.advert_id, a.advert_url, a.advert_image, ai.advert_html_text from advert a left join advert_info ai using(advert_id) where advert_group = '" . MODULE_CONTENT_HEADER_JSSOR_SLIDER_GROUP . "' and status = 1"); " with: " $banner_query = tep_db_query("select a.advert_id, a.advert_url, a.advert_image, ai.advert_html_text, ai.languages_id from advert a left join advert_info ai using(advert_id) where advert_group = '" . MODULE_CONTENT_HEADER_JSSOR_SLIDER_GROUP . "' and status = '1' AND ai.languages_id = " . (int)$_SESSION['languages_id'] . " "); " and the file "tpl_cm_i_jssor.php" replace with: " $banner_query = tep_db_query("select a.advert_id, a.advert_url, a.advert_image, ai.advert_html_text, ai.languages_id from advert a left join advert_info ai using(advert_id) where advert_group = '" . MODULE_CONTENT_INDEX_JSSOR_SLIDER_GROUP . "' and status = '1' AND ai.languages_id = " . (int)$_SESSION['languages_id'] . " "); "
  10. Ok... had a few mins free and took a look at it and found the problem. Its with the number of installed languages you have on the shop. It will show the HTML Text for each language for the same slide generating (slide * languages) slides. Since i wont use any HTML Text on the banner i simply did a "quick fix" for the header module as: Edit file "tpl_cm_header_jssor.php" replacing from line 5 to 16 the following code: " $banner_query = tep_db_query("select a.advert_id, a.advert_url, a.advert_image, ai.advert_html_text from advert a left join advert_info ai using(advert_id) where advert_group = '" . MODULE_CONTENT_HEADER_JSSOR_SLIDER_GROUP . "' and status = 1"); if (($cnt = tep_db_num_rows($banner_query)) > 0) { while ($banner = tep_db_fetch_array($banner_query)) { if (tep_not_null($banner['advert_image'])) { $imgArray[] = tep_image('images/' . $banner['advert_image'], $banner['advert_html_text'], '','','u="image"'); $txtArray[] = $banner['advert_html_text']; } else { $imgArray[] = $banner['advert_html_text']; } " with: " $banner_query = tep_db_query("select advert_id, advert_url, advert_image from advert where advert_group = '" . MODULE_CONTENT_HEADER_JSSOR_SLIDER_GROUP . "' and status = 1"); if (($cnt = tep_db_num_rows($banner_query)) > 0) { while ($banner = tep_db_fetch_array($banner_query)) { if (tep_not_null($banner['advert_image'])) { $imgArray[] = tep_image('images/' . $banner['advert_image'], '', '','','u="image"'); } " its just an headsup so you dont waste time looking for the bug and can fix the problem when you update the module but might be handy for someone else in the meanwhile. Tested on Phoenix 1.0.8.0 PHP 7.0
  11. only used the header. already tried that. Index does the same, one installed at a time.
  12. Are you going to update this module to the new Phoenix versions? Installed it on Phoenix 1.0.8.0 with PHP 7.0 and got a odd "bug": each banner is displayed 3 times before going to the next one. Any idea how to fix this?
  13. any idea when can we expect the new version?
  14. PHP 7.1 and up Phoenix 1.0.8.0 When you go to manufacturers Notice: Undefined index: title in /includes/header_tags.php on line 221 Notice: Undefined index: title in /includes/header_tags.php on line 222 Notice: Undefined index: keywords in /includes/header_tags.php on line 225 Notice: Undefined index: title in /includes/modules/header_tags_seo/header_tags_opengraph.php on line 31 Notice: Undefined index: desc in /includes/modules/header_tags_seo/header_tags_opengraph.php on line 32 Description - Header Tags module installs but does not get active for some reason If you use the Breadcrumb Notice: Constant BOX_HEADING_HEADERTAGS_TAGCLOUD already defined in /includes/languages/english/header_tags_seo.php on line 3 Notice: Constant TEXT_SEE_MORE already defined in /includes/languages/english/header_tags_seo.php on line 4 Notice: Constant TEXT_SEE_MORE_FULL already defined in /includes/languages/english/header_tags_seo.php on line 5 Notice: Constant HTS_OG_AVAILABLE_STOCK already defined in /includes/languages/english/header_tags_seo.php on line 6 Notice: Constant HTS_OG_PRICE already defined in /includes/languages/english/header_tags_seo.php on line 7 Notice: Constant HTS_TEXT_VIEWING already defined in /includes/languages/english/header_tags_seo.php on line 9 Fatal error: Uncaught Error: Call to undefined method category_tree::getData() in /includes/modules/content/header/cm_header_breadcrumb_headertags.php:52 Stack trace: #0 /includes/system/versioned/1.0.7.9/osc_template.php(106): cm_header_breadcrumb_headertags->execute() #1 /templates/default/includes/components/header.php(15): oscTemplate->getContent('header') #2 /templates/override/includes/components/template_top.php(61): require('...') #3 /templates/default/includes/pages/product_info.php(13): require('/...') #4 /product_info.php(25): require('/...') #5 {main} thrown in /includes/modules/content/header/cm_header_breadcrumb_headertags.php on line 52
  15. Well.. i would sugest that you update the module with these new fixes as for sure someone else will have those bugs aswell.
×
×
  • Create New...