-
Content count
130 -
Joined
-
Last visited
-
Days Won
2
Everything posted by Owl Sauron
-
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
-
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
-
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
-
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.
-
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
-
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
-
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'] . "");
-
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...
-
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'] . " "); "
-
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
-
only used the header. already tried that. Index does the same, one installed at a time.
-
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?
-
any idea when can we expect the new version?
-
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
-
Well.. i would sugest that you update the module with these new fixes as for sure someone else will have those bugs aswell.
-
PHP 7.0 Phoenix 1.0.8.0
-
Spoted several bugs: - When creating account: Notice: Undefined index: street_address in /includes/hooks/shop/siteWide/honeypot_verify.php on line 42 Notice: Undefined index: telephone in /includes/hooks/shop/siteWide/honeypot_verify.php on line 48 - Fake accounts: Notice: Undefined index: PT in /admin/includes/functions/honeypot.php on line 87
-
What Phoenix and PHP version is this one for? Wheres the templates files?
-
includes/languages/modules/content/product_info/cm_pi_headertags_seo.php define('MODULE_CONTENT_PRODUCT_INFO_HTS_ADDITIONAL_WORDS_DESCRIPTION', 'Show additional worrds on the product info page.'); you have an "extra" "r". well... theres enough changes/fixes so in my humble opinion a module update would be great since, as it is (at least for me), its now working flawlessly.
-
you forgot that change on the last "include.zip" cm_pi_headertags_seo.php -> language file typo: Show additional worrds on the product info page. Aside from those, the module seems to work flawlessly
-
[28-Feb-2021 14:38:38 Europe/Lisbon] PHP Fatal error: Uncaught Error: Call to undefined method category_tree::setMaximumLevel() in /includes/modules/content/index_nested/cm_in_category_listing_headertags.php:28 Stack trace: #0 /includes/system/versioned/1.0.7.9/osc_template.php(106): cm_in_category_listing_headertags->execute() #1 /templates/default/includes/pages/index.php(23): oscTemplate->getContent('index_nested') #2 /index.php(17): require('/xxx...') #3 {main} thrown in /includes/modules/content/index_nested/cm_in_category_listing_headertags.php on line 28
-
PHP 7.0 other previous bugs: cm_pi_description_headertags.php (content product_info) has a problem. When you try to install that module it does not show with a module name and after installed it gets inactive. it did fixed a few and new ones came: Fatal error: Uncaught Error: Call to undefined method category_tree::getData() in /includes/modules/content/index_nested/cm_in_category_listing_headertags.php:27 Stack trace: #0 /includes/system/versioned/1.0.7.9/osc_template.php(106): cm_in_category_listing_headertags->execute() #1 /templates/default/includes/pages/index.php(23): oscTemplate->getContent('index_nested') #2 /index.php(17): require('/xxx...') #3 {main} thrown in /includes/modules/content/index_nested/cm_in_category_listing_headertags.php on line 27 Recreate these steps: catalog-> Fruit gives the above error catalog-> Vegetables messes the site structure
-
PHP 7.0 found a few more: PHP Notice: Undefined variable: arry in /admin/header_tags_seo_ajax.php on line 222 PHP Notice: Uninitialized string offset: 1 in /admin/header_tags_test.php on line 612
-
PHP 7.0 caught a few problems: Social -> Notice: Undefined variable: storeName in /administracao/header_tags_seo_ajax.php on line 22 and if you disable the social and press save it does says " Data Save was successful " but the icons stills shows up at product_info If you Install: Breadcrumb - Header Tags and Remove (or dont): Breadcrumb -> 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('/xxx...') #3 /templates/default/includes/pages/product_info.php(13): require('/xxx...') #4 /loja/product_info.php(25): require('/xxx...') #5 {main} thrown in /includes/modules/content/header/cm_header_breadcrumb_headertags.php on line 52
-
Support thread for JcM Bank Transfer Payments V1.0 Phoenix
Owl Sauron replied to JcMagpie's topic in General Add-Ons Support
Sorry for the late submit but took a bit more than expected. feel free to use it. https://apps.oscommerce.com/beYqB&bank-transfer