Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

241

Members
  • Posts

    6,154
  • Joined

  • Last visited

Profile Information

  • Real Name
    Steve
  • Gender
    Male
  • Location
    Scotland
  • Interests
    Coding, osCommerce, Wolfen Dev Team, developing websites with ecommerce integrated.
    Motorbikes

Internal Fields

  • Interview
    241

Recent Profile Visitors

25,792 profile views

241's Achievements

  1. @osCommerce-Official you need to upgrade your license to reflect no longer beta
  2. @mhsuffolk @asro2004 there are a couple more stripe references that should be changed to stripe_sca in the ext/modules/content/account/stripe_sca/cards.php lines 59 and 63 redirect and breadcrumb
  3. @Jack_mcs no worries these are not problems for me I have fixed, just thought to bring them to your attention in case you were unaware A thought that you may want to use is_countable for future php (PHP 7 >= 7.3.0) it can be implemented in compatibility mode now as a function will help with all your count()
  4. I also found I needed to modify the last part to if (empty($oInfo->customer_service_id)){ $contents[] = array('text' => '<br>' . TEXT_INFO_CUSTOMER_SERVICE_ID . ' No ID.'); }else{ $contents[] = array('text' => '<br>' . TEXT_INFO_CUSTOMER_SERVICE_ID . ' ' . $oInfo->customer_service_id); } though that may be because of the heavy modifications
  5. @freakystreak I added a bit of code to above post which may help
  6. look at the end of the file in the section default I have a very heavily modified site but you should look for something starting like this $contents[] = array('align' => 'center', 'text' => tep_draw_button(IMAGE_ORDERS_DETAIL, 'document', tep_href_link('orders.php', tep_get_all_get_params(array('oID', 'action')) . 'oID=' . $oInfo->orders_id . '&action=edit')) .
  7. @freakystreak I have this working without any Notice, Warning or Deprecated on php 7.36 spent a lot of time trawling through the code updating and modifying adding additional hint info, attributes, tax and shipping all working even spits out nice templated html emails
  8. @Jack_mcs No worries got a few more for you admin/header_tags_fill_tags.php Notice: Undefined variable: sleep in admin/header_tags_fill_tags.php on line 703 Notice: Undefined variable: sleep in admin/header_tags_fill_tags.php on line 704 missing initial declaration for the variable $sleep outside of action either $sleep = ''; or $sleep = false; admin/header_tags_seo_keywords.php Notice: Undefined index: date in admin/header_tags_seo_keywords.php on line 371 Notice: Undefined index: searches in admin/header_tags_seo_keywords.php on line 372 Notice: Undefined index: google_last_position in admin/header_tags_seo_keywords.php on line 373 admin/header_tags_seo_silo.php Notice: Undefined offset: 1 in admin/header_tags_seo_silo.php on line 152 Notice: Undefined offset: 1 in admin/header_tags_seo_silo.php on line 156 Notice: Undefined offset: 1 in admin/header_tags_seo_silo.php on line 162 Date Notice: Undefined offset: 1 in admin/header_tags_seo_silo.php on line 163 Name Notice: Undefined offset: 1 in admin/header_tags_seo_silo.php on line 164 Best Seller Notice: Undefined offset: 1 in admin/header_tags_seo_silo.php on line 165 Custom Notice: Undefined offset: 1 in admin/header_tags_seo_silo.php on line 171 Notice: Undefined variable: selectedCats in admin/header_tags_seo_silo.php on line 174 admin/header_tags_seo_social.php Notice: Undefined index: 24x24 in admin/header_tags_seo_social.php on line 245 Notice: Undefined index: 32x32 in admin/header_tags_seo_social.php on line 245 Notice: Undefined index: 48x48 in admin/header_tags_seo_social.php on line 245 Notice: Undefined index: creator in admin/header_tags_seo_social.php on line 306
  9. admin/includes/functions/header_tags.php line 104 if (($fileSaved && $cntNewFiles) || (! $fileSaved && (count($existingFiles) != $cntNewFiles))) { count($existingFiles) Notice: Undefined variable: existingFiles Warning: count(): Parameter must be an array or an object that implements Countable $existingFiles is not an array or object
  10. you can use the free shipping admin > modules > Order Total > shipping set allow free shipping true and set the amount and for the other you just want to add a message stating that the costs vary and they will be contacted, so adapt the flat rate to fit
  11. no worries then got a logic step mix up
  12. is the original code in includes/modules/content/login/cm_paypal_login.php lines 212-220 correct if (ACCOUNT_STATE == 'true') { if ($ship_zone_id > 0) { $sql_data_array['entry_zone_id'] = $ship_zone_id; $sql_data_array['entry_state'] = ''; } else { $sql_data_array['entry_zone_id'] = '0'; $sql_data_array['entry_state'] = $ship_zone; } } more so line 215 $sql_data_array['entry_state'] = ''; if you have the ship_zone_id which is derived from the query based on PayPal response for country and zone being from region should the line not be $sql_data_array['entry_state'] = $ship_zone; and line 218 be $sql_data_array['entry_state'] = '';
  13. could you not use htmlspecialchars($_GET['keyname'] )
  14. may be a setting in your actual paypal account or an issue with the PayPal App version 4. Have you tried updating the App to above version 5 as the App is at v5.0.18
×
×
  • Create New...