Page 56 of 218 FirstFirst ... 646545556575866106156 ... LastLast
Results 551 to 560 of 2177
  1. #551
    Join Date
    Jul 2006
    Location
    SF Bay Area
    Posts
    867
    Plugin Contributions
    1

    Default Re: Fast and Easy Checkout for Zen Cart

    Quote Originally Posted by Liza_with_a_Z View Post
    The exact error in IE is:
    Internet Explorer cannot open the Internet site
    http://xxx/index.php?main_page=fec_confirmation.
    Same exact problem. I have this on every site with FEC installed. Fails on fec_confirmation when using ie6.

    Any info would be greatly appreciated.

  2. #552
    Join Date
    Jul 2006
    Location
    SF Bay Area
    Posts
    867
    Plugin Contributions
    1

    Default Re: Fast and Easy Checkout for Zen Cart

    This seems to be an issue with document.createElement in IE6.

    The solution for me was to grab the newest copy of FEC from Numinix website and replace:

    /includes/modules/pages/fec_confirmation/jscript_jscssloader.js with the one from the new kit.

    I thought I was running the newest version of FEC, but apparently not.

    This seems to have fixed the IE6 issue.

    Compare the files above for the diffs.

  3. #553
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,555
    Plugin Contributions
    70

    Default Re: Fast and Easy Checkout for Zen Cart

    Quote Originally Posted by kiddo View Post
    Same exact problem. I have this on every site with FEC installed. Fails on fec_confirmation when using ie6.

    Any info would be greatly appreciated.
    This bug was resolved in the 1.4.x series. The latest version is now 1.5.1, please upgrade and then report if the bug still exists.

  4. #554
    Join Date
    Feb 2009
    Posts
    354
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    I've checked this thread out and have been pleased with the mod overall... so thanks <<

    There is just one thing I think which is the timeout issue which happens on only the first occasion of checking out on the shopping cart page - as you are probably aware going back and pressing the button again fixes it but doesn't look good to prospective customers who are in the all important phase of purchasing and might not bother after all.

    So having searched this thread I am still not sure if there was a definitive outcome - let me know if there is a solution available.

    - I have PayPal IPN as my only payment module but plan on incorporating a buy now feature so may well use paypal express in accordance with PayPal Website Payments Pro in the future.

    _thanks

  5. #555
    Join Date
    Feb 2008
    Posts
    529
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    Quote Originally Posted by numinix View Post
    Version 2.0 will use Ajax instead of page reloads. The checkbox being checked is a feature already included in the 1.4.x series. The latest version is 1.4.5.

    If you run the uninstall.sql in hopes of running the install.sql, do not include the table alterations at the top of the install.sql file as these are not removed with the uninstall.sql.
    I made the same boo boo. I don't read sql...can you tell me, please, to re-install a failed first installation do I leave out the five ALTER TABLE lines at the top ONLY, or do I also leave out the INSERT INTO line that is grouped with them.

    AND, should I edit the tpl_main_page as in post #329, page 33 of this forum?

    AND, admin/orders.php, I've got a bit of code merged into original file from Stock by Attributes 4.7 ...is it compatible to slip that bit of code into the FEC file?

    Zen 1.3.8a, FEC 1.5.1; when I had trouble installing the mod I restored my store and db from backups and put the uninstall.sqp from FEC in via admin panel.

    Thanks.... www dot soxophoneplayer dot com.

  6. #556
    Join Date
    May 2009
    Posts
    86
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    Hey guys, I'm having an issue with the 'One Page Checkout':

    The Problem occurs when I am at PayPal's payment screen. If I choose to 'Cancel and Return to site' it will take me to index.php?main_page=checkout_payment instead of index.php?main_page=checkout (which may confuse the customer)

    This seems like an easy fix, but I can't seem to find where to edit the code?

  7. #557
    Join Date
    May 2009
    Posts
    86
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    *UPDATE*

    I fixed the issue by editing the /includes/modules/payment/paypal.php file where it had the 'cancel and return' redirects set to FILENAME_CHECKOUT_PAYMENT, I changed it to just FILENAME_CHECKOUT. There's two instances of it in the PayPal file.

    I use PayPal Standard, if you use anything else, then just change the correct file.


  8. #558
    Join Date
    Feb 2009
    Posts
    354
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    I've checked this thread out and have been pleased with the mod overall... so thanks <<

    There is just one thing I think which is the timeout issue which happens on only the first occasion of checking out on the shopping cart page - as you are probably aware going back and pressing the button again fixes it but doesn't look good to prospective customers who are in the all important phase of purchasing and might not bother after all.

    So having searched this thread I am still not sure if there was a definitive outcome - let me know if there is a solution available.

    - I have PayPal IPN as my only payment module but plan on incorporating a buy now feature so may well use paypal express in accordance with PayPal Website Payments Pro in the future.

    _thanks
    I realise that there are a lot of queries for this one but I would really really appreciate any pointers that you have for this _ thanks

  9. #559
    Join Date
    Jul 2009
    Location
    Roswell, NM, USA
    Posts
    97
    Plugin Contributions
    0

    red flag Re: Fast and Easy Checkout for Zen Cart

    I tried to post this to the forum on the Numnix site but it keeps timing out.

    Quote Originally Posted by shartlesville
    I upgraded to 1.4.6 and now the gift certificates won't work at all. It just refreshes the page adding or subtracting the GC amount each time but it won't go to confirmation. I temporarily disabled it.
    I tried upgrading to 1.5.1 with the same result.

    I also had the issue with it hiding the payment method when the credit covers the total BUT it would kick back the error that a payment method must be chosen even though it wasn't required and none were visible.

    I am 99% sure the problem with the gift certificate adding and subtracting has to do with the rewards points section that is included in FEC because I had a similar issue when I first installed the store credit mod. Someone else posted in the SC forum that they had an issue with coupons and GC and posted the code they removed to fix that issue. I removed that part of the code from the store credit mod and everything works (except I can't get it to apply points to orders created before I installed it):

    Code:
    // BEGIN REWARDS POINTS
    
            // if credit does not cover order total or isn't   selected
              if ($_SESSION['credit_covers'] != true) {
              // check that a gift   voucher isn't being used that is larger than the order
                if ($_SESSION['cot_gv'] < $order->info['total']) {
                  $credit_covers =   false;
                }
              }
            // END REWARDS POINTS
    
            if ($credit_covers) {
    I would like to use this mod but I have a lot of GC out and they are just not working at all with FEC turned on.

    If I comment that code out of FEC will FEC still work, are they necessary bits? Do you think that would fix the problem? I am almost afraid to try installing it again. I was up until 5AM trying to fix it last time. It is in these FEC files:

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


    Thank you for any assistance you can provide.

    Blessings,
    Krisann

  10. #560
    Join Date
    Jul 2009
    Location
    Roswell, NM, USA
    Posts
    97
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    OMGoodness THAT FIXED IT!

    I commented out everything except the last line (if ($credit_covers) { ) in both files and now FEC works perfectly!


    Hopefully that doesn't mess anything else up, lol. I'll be back if it does.

    Blessings,
    Krisann

 

 

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