Page 1 of 2 12 LastLast
Results 1 to 10 of 14
  1. #1
    Join Date
    Apr 2005
    Posts
    392
    Plugin Contributions
    0

    red flag Checkout: Stuck at Step 2 of 3 - Payment Information

    Hi, my customer informed me that she is unable to get past step 2 of the checkout process. I tried checking out after creating an order and true enough, I can't get past step 2 after choosing any of the 3 available payment methods and ticking the checkbox agreeing to the terms and conditions bound to the order.

    There was not error message, the page simply reload itself. Pls help.

    P.S. I was able to receive orders until the above happened. I am not sure whether I have mistakenly delete any file(s) during my recent "house cleaning". Is the any error log file that I can look into?

    Thanks for any advice.

  2. #2
    Join Date
    Mar 2006
    Location
    Australia
    Posts
    289
    Plugin Contributions
    3

    Default Re: Checkout: Stuck at Step 2 of 3 - Payment Information

    Hi there
    This happens on my site also when somebody tries to place an order who's address is not in a zone I ship to. Eg I only ship to Australia and if somebody from the USA tries to order this is what will happen.

    So, maybe check that those areas/contries you ship to actually have a zone defined that covers them

  3. #3
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Checkout: Stuck at Step 2 of 3 - Payment Information

    V1.3.7 gives a warning that shipping/payment is unavailable for an address ...

    I forget what version DrByte added that to ... but I know it's in v1.3.7 ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  4. #4
    Join Date
    Apr 2005
    Posts
    38
    Plugin Contributions
    0

    Default Re: Checkout: Stuck at Step 2 of 3 - Payment Information

    Quote Originally Posted by Stenrique View Post
    Hi, my customer informed me that she is unable to get past step 2 of the checkout process. I tried checking out after creating an order and true enough, I can't get past step 2 after choosing any of the 3 available payment methods and ticking the checkbox agreeing to the terms and conditions bound to the order.

    There was not error message, the page simply reload itself. Pls help.

    P.S. I was able to receive orders until the above happened. I am not sure whether I have mistakenly delete any file(s) during my recent "house cleaning". Is the any error log file that I can look into?

    Thanks for any advice.
    I am having this same problem. I recently upgraded from 1.2.6 to 1.3.7 and things were working fine before the upgrade. I have three shipping plans/modules defined. Free Shipping module, Percentage Shipping module and Table Shipping Module. I use these basically to defing shipping as a flate rate for orders less than $50.00 and free for orders above that. This is done with the Table module and the Free module was need for this for some reason I forget. Anyway, the Percentage module lets me offer Rush Shipping and is defined as a percentage qith a flat rate of $25.00 for orders under $50.00.

    All of them have the shipping zone defined as none so I would hope that the zone logic would have no effect on this.

    I converted over the weekend and would like to get it functional as soon as possible so any thoughts on what it might be would be welcome. My next step is to remove the "check terms" condition to see if that lets the process move forward, but I would not want it to be a permanent thing if it does, as I do want the customer to indicate that they have read the terms.

    Thanks,

    Steven

  5. #5
    Join Date
    Apr 2005
    Posts
    38
    Plugin Contributions
    0

    Default Re: Checkout: Stuck at Step 2 of 3 - Payment Information

    Actually, on my site, there is an error condition when it comes back. It states that the check terms has to be checked off, but it was. It seems that the state of the checkbox is lost during the processing.

    Thought this might help locate the problem.

  6. #6
    Join Date
    Apr 2005
    Posts
    38
    Plugin Contributions
    0

    Default Re: Checkout: Stuck at Step 2 of 3 - Payment Information

    I take it back :) Apparently I tried to submit again without checking the terms box. This has nothing to do with it. The page simply comes back with no message to indicate why.

    It just will not go beyond step 2.

  7. #7
    Join Date
    Apr 2005
    Posts
    392
    Plugin Contributions
    0

    Default Re: Checkout: Stuck at Step 2 of 3 - Payment Information

    I discovered that the problem was due to an improper installation of the now defunct Ultimate SEO v2. Hope this helps those who are having a similar problem.

  8. #8
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Checkout: Stuck at Step 2 of 3 - Payment Information

    Thanks for posting an update on this!
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  9. #9
    Join Date
    Apr 2005
    Posts
    38
    Plugin Contributions
    0

    Default Re: Checkout: Stuck at Step 2 of 3 - Payment Information

    Okay, found what it is, but not sure why or what needs to be done.

    In includes/modules/pages/checkout_confirmation, the file header_php.php has this condition at about line 173

    if (DISPLAY_CONDITIONS_ON_CHECKOUT == 'true') {
    if (!isset($_POST['conditions']) || ($_POST['conditions'] != '1')) {
    $messageStack->add_session('checkout_payment', ERROR_CONDITIONS_NOT_ACCEPTED, 'error');
    }
    }


    I changed as so

    if (DISPLAY_CONDITIONS_ON_CHECKOUT == 'true') {
    if (!isset($_POST['conditions']) || ($_POST['conditions'] != '1')) {
    $messageStack->add_session('checkout_payment', ERROR_CONDITIONS_NOT_ACCEPTED, 'error');

    if (!isset($_POST['conditions'])) {
    echo "conditions not present ";
    } else {
    echo "conditions not 1 ";
    }
    die('here');

    }
    }

    inserting the if to determine which of the two things was triggering the error, which I had determined later in the code was happening here.

    Anyway, the

    echo "conditions not present ";

    is what is displaying with this code, so clearly there is a problem with the fact that the checkbox was checked not being seen as such by the code. I hope that someone much more familiar with the code can take this and determine what needs to be changed to fix this.

    Thanks,

    Steven

  10. #10
    Join Date
    Apr 2005
    Posts
    38
    Plugin Contributions
    0

    Default Re: Checkout: Stuck at Step 2 of 3 - Payment Information

    Quote Originally Posted by Stenrique View Post
    I discovered that the problem was due to an improper installation of the now defunct Ultimate SEO v2. Hope this helps those who are having a similar problem.
    What in particular? How does one correct it? It seems like SEO is working, so what about it is the part that causes this?

    Thanks,

    Steven

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Checkout stuck in step 1
    By wkrein in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 1 Dec 2007, 02:34 PM
  2. Stuck on step 2 of 3 checkout
    By darocket in forum Bug Reports
    Replies: 0
    Last Post: 5 May 2007, 04:30 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