Page 1 of 4 123 ... LastLast
Results 1 to 10 of 35
  1. #1
    Join Date
    Jun 2006
    Location
    Austin, TX
    Posts
    25
    Plugin Contributions
    0

    Will not confirm the order (Linkpoint)

    First off, I've read these boards like crazy, and I can't find the solution to my problem. However, they have been EXTREMELY useful throughout the entire setup process, so thank you for that!

    My current situation:
    My cart will not get past the 3rd step (checkout_confirmation). It just sits there thinking.

    I have it in testing mode with Link Point Central, but it just doesn't do anything. If I let it sit there for a really long time it will bounce back to step 2 (sometimes). The posts on similar topics do not solve my problem though.

    I have the new Linkpoint API, which was just uploaded yesterday.

    All payment modules are disabled except for "Linkpoint/YourPay API"

    Any ideas?

    fyi: I do NOT have SSL installed yet as I'm waiting for it to be initialized by my server.

    my testing cart : http://www.302designs.net/shop_guys_V2.html

    Thanks for any and all help!!!

    best regards,
    Dave
    Last edited by DrByte; 27 Sep 2007 at 09:57 PM. Reason: removed link

  2. #2
    Join Date
    Jun 2006
    Location
    Austin, TX
    Posts
    25
    Plugin Contributions
    0

    Default Re: Will not confirm the order (Linkpoint)

    kept trying to tweak things over here, but am still getting nowhere. Any advice from a zen master? :)

  3. #3
    Join Date
    May 2005
    Location
    Bath, Somerset
    Posts
    1,048
    Plugin Contributions
    3

    Default Re: Will not confirm the order (Linkpoint)

    Just had a look at your cart. Before I download files, and take a look, which LinkPoint module are you using? There are two in the contribs section. Is it wither of these, or another one from else where?

    It seems from looking briefly like there is a problem with the before_process of your module. This could be a value not being submitted correctly, or just posting to the wrong site.

    Absolute

  4. #4
    Join Date
    Jun 2006
    Location
    Austin, TX
    Posts
    25
    Plugin Contributions
    0

    Default Re: Will not confirm the order (Linkpoint)

    I'm using Linkpoint/Yourpay - v1.3

    am curious to hear what you come up with

  5. #5
    Join Date
    Jan 2004
    Posts
    58,289
    Blog Entries
    3
    Plugin Contributions
    106

    Default Re: Will not confirm the order (Linkpoint)

    Quote Originally Posted by davidhwalker
    I have it in testing mode with Link Point Central, but it just doesn't do anything.
    What exactly do you mean by this?

    If you switch from testing to production, do you notice any change?
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donations always welcome: www.zen-cart.com/donate

    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
    Jun 2006
    Location
    Austin, TX
    Posts
    25
    Plugin Contributions
    0

    Default Re: Will not confirm the order (Linkpoint)

    When I said it was in "testing mode" I was referring to the "LinkPoint Transaction Mode Response" in the zencart shipping module. Still the same case when I switch it over to production.

    I just got off the phone with the LinkPoint Central tech support, and they say the problem is definitely within my cart setup since none of the test transactions I've been doing over the past few days have been transmitted to their log files and since there were no error messages reported.

    I've tried uninstalling and reinstalling the v1.3 files to no avail.

  7. #7
    Join Date
    Jun 2006
    Location
    Austin, TX
    Posts
    25
    Plugin Contributions
    0

    Default Re: Will not confirm the order (Linkpoint)

    Been doing lot's of searching online and it seems that this perhaps is all due to my host being GoDaddy. Apparently they don't keep port 1129 open, so instead i have to go through a proxy of theirs.

    Found a post of a similiar nature which resulted in me adding some parameters to the class.linkpoint_api.php :


    curl_setopt ($ch, CURLOPT_HTTPPROXYTUNNEL,TRUE);
    curl_setopt ($ch, CURLOPT_PROXYTYPE, CURLPROXY_HTTP);
    curl_setopt ($ch, CURLOPT_PROXY, "http://64.202.165.130:3128");
    curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, FALSE);

    But now, i get the error message : "We apologize for the inconvenience, but we are presently unable to contact the Credit Card company for authorization. Please contact the Store Owner for payment alternatives."

    I'd like to think of this as progress...only time will tell.

  8. #8
    Join Date
    Jun 2006
    Location
    Austin, TX
    Posts
    25
    Plugin Contributions
    0

    Re: Will not confirm the order (Linkpoint)

    have tried so many different things---experimented with all the "godaddy fixes" and whatnot.

    At least I get an error message now.

    "...unable to contact the Credit Card company for authorization..."

    I'm convinced now that it is a problem in the cURL section. Here it is if it helps:


    $ch = curl_init();
    curl_setopt ($ch, CURLOPT_URL,$url);
    curl_setopt ($ch, CURLOPT_POST, 1);
    curl_setopt ($ch, CURLOPT_POSTFIELDS, $xml);
    curl_setopt ($ch, CURLOPT_SSLCERT, $key);
    curl_setopt ($ch, CURLOPT_CAINFO, $key);
    curl_setopt ($ch, CURLOPT_SSL_VERIFYHOST, true);
    curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, true);
    curl_setopt ($ch, CURLOPT_SSLVERSION, 3);
    curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);

    curl_setopt ($ch, CURLOPT_HTTPPROXYTUNNEL, true); //godaddy
    curl_setopt ($ch, CURLOPT_PROXYTYPE, CURLPROXY_HTTP); //godaddy
    curl_setopt ($ch, CURLOPT_PROXY, "http://64.202.165.130:3128"); //godaddy

    open to ideas...

  9. #9
    Join Date
    Jan 2004
    Posts
    58,289
    Blog Entries
    3
    Plugin Contributions
    106

    Default Re: Will not confirm the order (Linkpoint)

    Okay... did some more digging.

    Unfortunately, since you're using GoDaddy Shared Hosting, you are out of luck.

    You can upgrade to their Virtual or Dedicated hosting, or you can switch hosts.

    More Info:
    http://www.zen-cart.com/forum/showthread.php?t=40265
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donations always welcome: www.zen-cart.com/donate

    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. #10
    Join Date
    Aug 2004
    Posts
    309
    Plugin Contributions
    0

    Default Re: Will not confirm the order (Linkpoint)

    Dr. Byte - I am having the same problem with Godaddy. But I am using Authoriza.net for the gateway. Do you think the problem stands w/ Authorize.net also?

    Can I moify the script some how, so the transction goes through the available ports?

    Can you recommend a host!
    Last edited by kevinm2; 7 Jul 2006 at 04:23 AM.
    Zen Cart 1.2.5, Database Patch Level: 1.2.5
    Server OS: Linux 2.4.21-32.ELsmp, Database: MySQL 4.0.27-max-log
    PHP Version: 4.3.11 (Zend: 1.3.0), HTTP Server: Apache

 

 
Page 1 of 4 123 ... LastLast

Similar Threads

  1. Order getting stuck on confirm address!
    By e-hol.co.uk in forum Managing Customers and Orders
    Replies: 10
    Last Post: 31 Jan 2007, 04:22 AM
  2. Confirm Order sends to homepage
    By restless in forum Built-in Shipping and Payment Modules
    Replies: 6
    Last Post: 19 Jun 2006, 05:53 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
  •