Page 61 of 67 FirstFirst ... 11515960616263 ... LastLast
Results 601 to 610 of 663
  1. #601
    Join Date
    Jun 2007
    Posts
    474
    Plugin Contributions
    2

    Default Re: Recover Cart

    Quote Originally Posted by KGL Racing View Post
    Hello,
    i just installed this plug-in, but i get this error when i instal the SQL patch

    15 statements processed.
    Error ERROR: Cannot insert configuration_key "" because it already exists
    Error ERROR: Cannot insert configuration_key "" because it already exists
    Error ERROR: Cannot insert configuration_key "" because it already exists
    Error ERROR: Cannot insert configuration_key "" because it already exists
    Warning Note: 1 statements ignored. See "upgrade_exceptions" table for additional details.

    When done, i can see the Recover Cart Sales Report link at the reports page, however the second link in tools is not added.

    What can i do or try to get this working?

    Greets, and thanks in advance for the help.
    What version of Zen-Cart? I ask because the 1.5.5 version of this module has the link appearing in 'Customers' now instead of Tools and the title is 'Abandoned Carts'

  2. #602
    Join Date
    Jun 2007
    Posts
    474
    Plugin Contributions
    2

    Default Re: Recover Cart

    When sending emails, they are appearing in email programs as From: Root User<actual email address>.

    It doesn't appear this way when emailing from any other modules,etc.

    Any thoughts on why this might occur.

  3. #603
    Join Date
    Apr 2010
    Posts
    897
    Plugin Contributions
    0

    Default Re: Recover Cart

    Hi,

    I just installed this mod into a ZC 1.5.4 but cannot figure out what (if anything) is going on.

    The following menus have been added to admin:
    • Configuration > Configure RCS (all settings currently default)
    • Reports > Recovered Sales Results (shows nothing)

    I do not have any new menu beneath Tools.

    To test, I went to the store, logged in with a Customer test account, added a few products to the cart, then:
    - looked at Reports, NOTHING
    - looked below Tools, NOTHING

    I then logged my customer account (abandoning cart) and checked both spots again. Still NOTHING.

    I checked my error log, found nothing.

    Is there some additional step(s) required to enable this mod? Also, is there some way to prevent the mod from automatically sending out email?

    Thanks!

  4. #604
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    277

    Default Re: Recover Cart

    Quote Originally Posted by lindasdd View Post
    When sending emails, they are appearing in email programs as From: Root User<actual email address>.

    It doesn't appear this way when emailing from any other modules,etc.

    Any thoughts on why this might occur.
    Linda,

    It could be that your webserver is programmed to always insert a send-from "name" if it's left blank ... and this module appears to be leaving it blank.
    So, you could try working around that by changing this line: 287 in admin/recover_cart_sales.php
    Code:
        zen_mail('', $outEmailAddr, $subject, $email, '', $from, $html_msg);
    to:
    Code:
        zen_mail(STORE_NAME, $outEmailAddr, $subject, $email, '', $from, $html_msg);
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  5. #605
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    277

    Default Re: Recover Cart

    Quote Originally Posted by Feznizzle View Post
    Hi,

    I just installed this mod into a ZC 1.5.4 but cannot figure out what (if anything) is going on.

    The following menus have been added to admin:
    • Configuration > Configure RCS (all settings currently default)
    • Reports > Recovered Sales Results (shows nothing)

    I do not have any new menu beneath Tools.

    To test, I went to the store, logged in with a Customer test account, added a few products to the cart, then:
    - looked at Reports, NOTHING
    - looked below Tools, NOTHING

    I then logged my customer account (abandoning cart) and checked both spots again. Still NOTHING.

    I checked my error log, found nothing.

    Is there some additional step(s) required to enable this mod? Also, is there some way to prevent the mod from automatically sending out email?

    Thanks!
    That's strange. It's as though it's not fully completing the installation/setup. I'd start with running the uninstall SQL script first. (Granted, the install SQL pretty much does an uninstall first anyway, but in a slightly different approach.)
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  6. #606
    Join Date
    Apr 2010
    Posts
    897
    Plugin Contributions
    0

    Default Re: Recover Cart

    Quote Originally Posted by DrByte View Post
    That's strange. It's as though it's not fully completing the installation/setup. I'd start with running the uninstall SQL script first. (Granted, the install SQL pretty much does an uninstall first anyway, but in a slightly different approach.)
    I ran the uninstall, then installed again. Still no dice!

  7. #607
    Join Date
    Jun 2007
    Posts
    474
    Plugin Contributions
    2

    Default Re: Recover Cart

    Quote Originally Posted by Feznizzle View Post
    Hi,

    I just installed this mod into a ZC 1.5.4 but cannot figure out what (if anything) is going on.

    The following menus have been added to admin:
    • Configuration > Configure RCS (all settings currently default)
    • Reports > Recovered Sales Results (shows nothing)

    I do not have any new menu beneath Tools.

    To test, I went to the store, logged in with a Customer test account, added a few products to the cart, then:
    - looked at Reports, NOTHING
    - looked below Tools, NOTHING

    I then logged my customer account (abandoning cart) and checked both spots again. Still NOTHING.

    I checked my error log, found nothing.

    Is there some additional step(s) required to enable this mod? Also, is there some way to prevent the mod from automatically sending out email?

    Thanks!
    In the latest version, the link is under 'Customers' as in 'Customers>Abandoned Carts'.

    In terms of setting up a test to see a listing on that page, I find it doesn't appear immediately.

  8. #608
    Join Date
    Jun 2007
    Posts
    474
    Plugin Contributions
    2

    Default Re: Recover Cart

    Quote Originally Posted by DrByte View Post
    Linda,

    It could be that your webserver is programmed to always insert a send-from "name" if it's left blank ... and this module appears to be leaving it blank.
    So, you could try working around that by changing this line: 287 in admin/recover_cart_sales.php
    Code:
        zen_mail('', $outEmailAddr, $subject, $email, '', $from, $html_msg);
    to:
    Code:
        zen_mail(STORE_NAME, $outEmailAddr, $subject, $email, '', $from, $html_msg);

    This did not result in any change.

    I wonder if there is a setting on the server side I should mess with.

  9. #609
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    277

    Default Re: Recover Cart

    Oh my. I put them backwards. It was the "from" name that it was mangling because it was empty, not the "to" name. Try the following:
    Quote Originally Posted by DrByte View Post
    It could be that your webserver is programmed to always insert a send-from "name" if it's left blank ... and this module appears to be leaving it blank.
    So, you could try working around that by changing this line: 287 in admin/recover_cart_sales.php
    Code:
        zen_mail('', $outEmailAddr, $subject, $email, '', $from, $html_msg);
    to:
    Code:
        zen_mail('', $outEmailAddr, $subject, $email, STORE_NAME, $from, $html_msg);
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  10. #610
    Join Date
    Jun 2007
    Posts
    474
    Plugin Contributions
    2

    Default Re: Recover Cart

    Quote Originally Posted by DrByte View Post
    Oh my. I put them backwards. It was the "from" name that it was mangling because it was empty, not the "to" name. Try the following:
    This didn't work. So I fiddled with it.

    What did work was changing $from to any email address at all. Changing it to '', or just blank, or a non email address all had no impact. It is important to not as well that the email address entered didn't change the value for 'from email address' in the email sent - it always still used the root user email address.

    Once I made the $from change, the STORE_NAME change you indicated did impact the reply to name (not the email address) that the email program displayed in the inbox.

 

 
Page 61 of 67 FirstFirst ... 11515960616263 ... LastLast

Similar Threads

  1. Shipping Rates in Cart [support thread]
    By Steven300 in forum Addon Shipping Modules
    Replies: 95
    Last Post: 12 May 2023, 02:39 AM
  2. Shopping Cart Steps Images [Support Thread]
    By Trinity14 in forum Addon Templates
    Replies: 21
    Last Post: 11 Apr 2021, 05:35 AM
  3. v151 AJAX Add to Cart [Support Thread]
    By balihr in forum All Other Contributions/Addons
    Replies: 133
    Last Post: 20 Oct 2020, 02:16 AM
  4. Empty Cart Manager [support thread]
    By Steven300 in forum All Other Contributions/Addons
    Replies: 49
    Last Post: 26 May 2010, 10:26 AM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR