Page 1 of 2 12 LastLast
Results 1 to 10 of 15
  1. #1
    Join Date
    May 2006
    Posts
    55
    Plugin Contributions
    0

    Default checkout_success.php not displaying

    Hello,
    I currently have a clients website that just installed the authorize.net aim module. After the order comfirmation page I get sent checkout_success.php=zenid4344536323422346032 page not the checkout_success.php page. If I deleted the =zenid stuff from the url it takes me to the correct page with the order number etc.. The order is sent to authoriz.net and everthing seems to work on there end but it simply wont send me to the actual checkout_success.php page. Any ideas. I am in the mids of updating to the new patch. But it looks like the patch wouldnt have anything to do with it.

    Thanks
    Angel

  2. #2
    Join Date
    May 2006
    Posts
    55
    Plugin Contributions
    0

    Default Re: checkout_success.php not displaying

    Is this just not a hot topic? I will pay to have it fixed.

  3. #3
    Join Date
    Jan 2004
    Posts
    66,444
    Plugin Contributions
    279

    Default Re: checkout_success.php not displaying

    There are too many unknowns to answer your question in any quick fashion. It's easier to just move on to other questions that do have detailed information.

    Perhaps you might get more help if you supplied pertinant information like:
    - version of Zen Cart
    - version of PHP
    - is this an Apache server, or IIS
    - list of any contributions installed
    - list of customizations made
    - is your site running in SSL mode or not
    - is authorize.net in test mode or production mode, both in Zen Cart and in your Merchant terminal settings
    - what errors are appearing in your server's errorlog
    - what browsers are you using for testing
    - what is the exact URL you're seeing that "does not" work, and the exact URL that "does" show order details
    - on the page the shows incomplete information, what *does* show on the page?

    and so on
    .

    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.

  4. #4
    Join Date
    May 2006
    Posts
    55
    Plugin Contributions
    0

    Default Re: checkout_success.php not displaying

    Perhaps you might get more help if you supplied pertinant information like:
    - version of Zen Cart
    - version of PHP
    - is this an Apache server, or IIS
    - list of any contributions installed
    - list of customizations made
    - is your site running in SSL mode or not
    - is authorize.net in test mode or production mode, both in Zen Cart and in your Merchant terminal settings
    - what errors are appearing in your server's errorlog
    - what browsers are you using for testing
    - what is the exact URL you're seeing that "does not" work, and the exact URL that "does" show order details
    - on the page the shows incomplete information, what *does* show on the page?
    1.Server Host: lancelot.camelot-hosting.com
    2.Database Host: localhost (127.0.0.1)
    3.Server OS: Linux 2.6.9-42.0.2.ELsmp
    4.Database: MySQL 4.1.21-standard
    5.HTTP Server: Apache/1.3.37
    6.Customization: image handler2, paypal IPN
    7.authorize.net aim is in test mode same with zen cart
    8.Im using IE and firefox for testing
    9. Zen Cart 1.3.0.2
    10. the exact url that appears after step 3 is this if its declined.

    https://www.independentcycleshop.com...ab6214ffa5a45b

    if its not declined its gives this.
    https://www.independentcycleshop.com...ab6214ffa5a45b

    either one of the links brings you back to the home page. The transaction is recorded in zencart and in Authorize.net. It simply just doesnt send you to the succes or decline page only to the home page.

    If I take off zenid=c8bee97354a7f93c05ab6214ffa5a45b it completes the checkout depending on if its been accepted or declined.

    This is the working link https://www.independentcycleshop.com...heckout_succes

    please let me know if you need more info.

    Thanks
    Angel

  5. #5
    Join Date
    Jan 2004
    Posts
    66,444
    Plugin Contributions
    279

    Default Re: checkout_success.php not displaying

    This is missing the & before zenid:
    Code:
    https://www.independentcycleshop.com/index.php?main_page=checkout_paymentzenid=c8bee97354a7f93c05ab6214ffa5a45b
    This is missing an s (success has 2 s's on the end), and the & on the zenid:
    Code:
    https://www.independentcycleshop.com/index.php?main_page=checkout_succeszenid=c8bee97354a7f93c05ab6214ffa5a45b
    Since "checkout_succeszenid" isn't a valid page name, you're being redirected to the home page.
    You can bypass the redirect to home page by going to Admin->Configuration-> My Store->Missing Page Check, and set it to None.
    .

    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. #6
    Join Date
    Jan 2004
    Posts
    66,444
    Plugin Contributions
    279

    Default Re: checkout_success.php not displaying

    If your URL's are randomly being chopped then something's awry with your /includes/functions/html_output.php

    Perhaps you can put back the original version of this file from before installing image handler? Granted, that may bust image-handler functionality, but that should be secondary.
    .

    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.

  7. #7
    Join Date
    May 2006
    Posts
    55
    Plugin Contributions
    0

    Default Re: checkout_success.php not displaying

    Hi
    Thanks for your input, your suggestion about the html_output.php file worked. I took a look at it and saw a bunch of additions to the code for IH2. I then replaced the file with the orginal file from the core version type. It fixed the problem completely. Now I am brought to the checkout success page.

    Unfortuanly now IH2 isn't working all the images load really slow.

    Angel

  8. #8
    Join Date
    Jan 2004
    Posts
    66,444
    Plugin Contributions
    279

    Default Re: checkout_success.php not displaying

    Zen Cart v1.3.5 has all the image-handler v2 components built-in to its html_output.php file.

    Perhaps upgrading your site might bring you closer to nirvana ...
    .

    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.

  9. #9
    Join Date
    May 2006
    Posts
    55
    Plugin Contributions
    0

    Default Re: checkout_success.php not displaying

    I thought the 1.3.5 updates were security fixes for the admin logins. Perhaps I should upgrade asap.

    Thanks

  10. #10
    Join Date
    Jan 2004
    Posts
    66,444
    Plugin Contributions
    279

    Default Re: checkout_success.php not displaying

    Quote Originally Posted by Angel Devoid
    I thought the 1.3.5 updates were security fixes for the admin logins. Perhaps I should upgrade asap.

    Thanks
    Yes, that and "so much more"

    Here's a list of the new additions as well as the fixes:
    http://www.zen-cart.com/forum/showthread.php?t=45162
    .

    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.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Adding Code to checkout_success.php
    By Renz in forum General Questions
    Replies: 16
    Last Post: 25 Mar 2010, 04:15 AM
  2. Parse error checkout_success.php
    By shirljo in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 11 Apr 2007, 03:54 PM

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