Page 23 of 23 FirstFirst ... 13212223
Results 221 to 226 of 226
  1. #221
    Join Date
    Oct 2009
    Posts
    440
    Plugin Contributions
    0

    Default Re: Save For Later Support Thread

    I am not sure if this is helpful, but thought I'd post the PHP warning to identify code tweaks for a future update. Please let me know if this is not helpful.

    I am running Zen Cart v.2.1 and PHP version 8.3

    The warning I receive is

    PHP Warning: Undefined array key "action" in /includes/extra_cart_actions/sfl_actions.php on line 17.

    Again, just trying to help for future plugin updates....as this warning does not cause any problems with how the plugin functions or operates for the customer.

  2. #222
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,527
    Plugin Contributions
    127

    Default Re: Save For Later Support Thread

    I haven't seen this log yet - will keep an eye out. Obviously you can do something like

    $_GET['action'] = ($_GET['action'] ?? '');

    just before the switch to prevent this. But I would have though that by the time you got there, it would be set.
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  3. #223
    Join Date
    Oct 2009
    Posts
    440
    Plugin Contributions
    0

    Default Re: Save For Later Support Thread

    Thanks swguy for the code suggestion....I will apply this and let you know how it works out!

    Thanks again!

  4. #224
    Join Date
    Oct 2009
    Posts
    440
    Plugin Contributions
    0

    Default Re: Save For Later Support Thread

    Thanks again swguy for the code to fix this warning. I've applied it, tested and no errors!

    Thanks again for your help with this.

  5. #225
    Join Date
    Apr 2009
    Posts
    488
    Plugin Contributions
    2

    Default Re: Save For Later Support Thread

    If a customer saves a product for later that you then remove from the database a Warning log is created. This can be stopped by changing line 174 in includes/functions/extra_functions/sfl_functions.php
    Code:
          if ($products = $db->Execute($products_query)) {
    to
    Code:
          $products = $db->Execute($products_query);
          if (!$products->EOF) {
    or if you want to tidy the table
    Code:
          $products = $db->Execute($products_query);
          if ($products->EOF) {
              remove(products_id);
          } else {
    Mark Brittain
    http:\\innerlightcrystals.co.uk\sales\

  6. #226
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,527
    Plugin Contributions
    127

    Default Re: Save For Later Support Thread

    thanks for posting! Added for the next update.
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

 

 
Page 23 of 23 FirstFirst ... 13212223

Similar Threads

  1. v150 Add Customers from Admin 2.0 (1.5.0 and later) [Support Thread]
    By lat9 in forum Addon Admin Tools
    Replies: 151
    Last Post: 17 Feb 2026, 01:41 PM
  2. v151 Autoresponder+ for ZCv1.5.x [Support Thread]
    By countrycharm in forum All Other Contributions/Addons
    Replies: 23
    Last Post: 19 May 2019, 04:39 PM
  3. Autoresponder+ for ZC v1.3.x [support thread]
    By Steven300 in forum All Other Contributions/Addons
    Replies: 229
    Last Post: 28 Jun 2017, 12:32 AM
  4. Support Thread for JS Date Picker for options
    By eVelt in forum All Other Contributions/Addons
    Replies: 17
    Last Post: 5 Dec 2013, 05:44 AM
  5. Image Handler / Tabbed Products Pro ... and Save for Later
    By ksoup in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 12 Jan 2011, 12:11 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg