Page 215 of 218 FirstFirst ... 115165205213214215216217 ... LastLast
Results 2,141 to 2,150 of 2177
  1. #2141
    Join Date
    Feb 2010
    Location
    Minnesota
    Posts
    387
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout

    Quote Originally Posted by RixStix View Post
    Thanks, its starting to make sense now. I did not know there was another plugin to install first called this. I did not see anything about this in the FEC instructions. I will give it a try.

  2. #2142
    Join Date
    Aug 2009
    Location
    North Idaho, USA
    Posts
    2,008
    Plugin Contributions
    1

    Default Re: Fast and Easy Checkout

    Sometimes there can be a huge difference in "Should Work" and actually "Does work". Good luck.
    Rick
    RixStix (dot) com
    aka: ChainWeavers (dot) com

  3. #2143
    Join Date
    Dec 2009
    Location
    Amersfoort, The Netherlands
    Posts
    2,845
    Plugin Contributions
    25

    Default Re: Fast and Easy Checkout

    Quote Originally Posted by Maynards View Post
    Can someone help me with is probably a stupid question. I am still working on the plugin called fast and easy checkout. The directions say to Download and install CSS JS Loader. Where exactly are these files and where exactly do I up load them to????
    see: https://www.zen-cart.com/downloads.php?do=file&id=1774 .

  4. #2144
    Join Date
    Feb 2010
    Location
    Minnesota
    Posts
    387
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout

    I started out with a fresh copy of my site on the server. I uploaded CSS/JS Loader to my site then uploaded FEC plugin. Still does not work
    In the admin/configuration/fast and easy checkout, the 3 tabs (general | layout | guest checkout) are not functional. There are no debug files on the logs folder.

    My Site: http://www d o t maynardstackle.com / zencart155e / zencart155e/

    any ideas would be appreciated.
    Last edited by Maynards; 26 Mar 2017 at 09:02 PM.

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

    Default Re: Fast and Easy Checkout

    Quote Originally Posted by Maynards View Post
    I did try to install just the FEC, that did not work then I tried to install the OPC which did not work either. I did make a backup of my site which I think I will install after I delete the current one on my server.

    Yesterday I did a live chat with NUMINIX about the FEC and they said it would work fine on my westminster_new template using zencart 155e. The problem is that I do not know what they mean when they say to Download and install CSS JS Loader first. Maybe this is the problem.
    Quote Originally Posted by RixStix View Post
    Quote Originally Posted by Maynards View Post
    Thanks, its starting to make sense now. I did not know there was another plugin to install first called this. I did not see anything about this in the FEC instructions. I will give it a try.
    BE SURE TO MAKE A COMPLETE BACKUP OF ALL your PHP/etc files before installing CSS/JS Loader plugin. It changes so many core template components that future upgrades are painful. I've wasted dozens of hours on dozens of sites that installed that crap, that now I always yank it out. It makes everything unnecessarily complex for little to no added value. Your mileage may vary.

    Quote Originally Posted by RixStix View Post
    Sometimes there can be a huge difference in "Should Work" and actually "Does work". Good luck.
    Exactly.
    .

    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. #2146
    Join Date
    Feb 2010
    Location
    Minnesota
    Posts
    387
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout

    Thanks everyone for your input on this topic both publicly and privately. I will not mess with this. It's just not worth the headache.

  7. #2147
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,842
    Plugin Contributions
    11

    Default Re: Fast and Easy Checkout

    for those of you that use this plugin, there is an incompatibility if you decide to make the move to php7.0. you can see the problem here:

    http://php.net/manual/en/migration70...dling.indirect

    there are 2 scripts that would need to get changed:

    includes/modules/pages/checkout/header_php.php
    includes/modules/pages/fec_confirmation/header_php.php

    you would need to change all instances of:

    $$_SESSION['payment']

    to

    ${$_SESSION['payment']}

    this change will also make the code backwards compatible with 5.6.

    best.
    author of square Webpay.
    mxWorks now has Apple Pay and Google Pay. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  8. #2148
    Join Date
    Nov 2008
    Posts
    54
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout

    Having an issue where when a customer returns and attempts to use the guest checkout, but they already have an account with us from a previous traditional checkout, it throws and error and tells the customer to log on (" Our system already has a record of that email address - please try logging in with that email address. If you do not use that address any longer you can correct it in the My Account area.") which defeats the purpose of a guest account.

    Is there a way around this?

  9. #2149
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,842
    Plugin Contributions
    11

    Default Re: Fast and Easy Checkout

    Quote Originally Posted by nightdesigns View Post
    Having an issue where when a customer returns and attempts to use the guest checkout, but they already have an account with us from a previous traditional checkout, it throws and error and tells the customer to log on (" Our system already has a record of that email address - please try logging in with that email address. If you do not use that address any longer you can correct it in the My Account area.") which defeats the purpose of a guest account.

    Is there a way around this?
    well, in looking at the code, it does "seem" to be an easy way around this. you can just comment out the error check. in:

    includes/modules/fec_create_account.php

    change from:

    Code:
        if ($check_email->fields['total'] > 0) {
          $error = true;
          $messageStack->add_session('login', ENTRY_EMAIL_ADDRESS_ERROR_EXISTS);
        }
    
    // TO:
    
    /* 
        if ($check_email->fields['total'] > 0) {
          $error = true;
          $messageStack->add_session('login', ENTRY_EMAIL_ADDRESS_ERROR_EXISTS);
        }
    */
    it does "look" like the code already takes into account an update v insert later in the module. although i provide no warranty as to this actually working.

    on another note, the error message is pretty lame. if you do not have the password or access to that email address, how can you change it in the my accounts area?

    good luck!
    author of square Webpay.
    mxWorks now has Apple Pay and Google Pay. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  10. #2150
    Join Date
    Nov 2008
    Posts
    54
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout

    Quote Originally Posted by carlwhat View Post
    well, in looking at the code, it does "seem" to be an easy way around this. you can just comment out the error check.
    Turns out it's not that file but the /modules/quickcheckout.php which disables the error. You can disable the error and continue on a checkout, but it essentially creates a new account on top of the old customer ID info (by matching email address) replacing all of the existing customer info with new, including password.

 

 

Similar Threads

  1. Replies: 4
    Last Post: 25 Jan 2012, 07:37 PM
  2. Fast and Easy Checkout - Checkout Without Account not showing
    By Lee-oh in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 3 Feb 2010, 05:09 PM
  3. Go To Checkout Error - with Fast and Easy Checkout installed
    By RFree190 in forum General Questions
    Replies: 3
    Last Post: 10 Mar 2009, 07:08 AM
  4. checkout page not redirect (Fast and Easy Checkout module)
    By wowemall in forum Addon Templates
    Replies: 0
    Last Post: 27 Sep 2008, 02:36 PM
  5. Fast and Easy Checkout
    By cmes in forum General Questions
    Replies: 5
    Last Post: 15 Feb 2008, 04:07 PM

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