Page 2 of 4 FirstFirst 1234 LastLast
Results 11 to 20 of 35
  1. #11
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Will not confirm the order (Linkpoint)

    Zen Cart Certified Hosts:
    http://www.zen-cart.com/index.php?ma...es&pages_id=10



    /includes/modules/payment/authorizenet_aim.php
    line 372:
    //========================
    // If you have GoDaddy hosting or other hosting services that require use of a proxy to talk to external sites via cURL,
    // then uncomment the following 3 lines and substitute they proxy server's address for 1.1.1.1 below:
    // curl_setopt ($ch, CURLOPT_HTTPPROXYTUNNEL, true);
    // curl_setopt ($ch, CURLOPT_PROXYTYPE, CURLPROXY_HTTP);
    // curl_setopt ($ch, CURLOPT_PROXY, '1.1.1.1');
    //========================
    Uncomment the 3 lines that start with curl_setopt
    set the proxy address from 1.1.1.1 to: 64.202.165.130:3128
    .

    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.

  2. #12
    Join Date
    Aug 2004
    Posts
    309
    Plugin Contributions
    0

    Default Re: Will not confirm the order (Linkpoint)

    Thanks for the reply. Dr. Byte what and who's IP is 64.202.165.130:3128 in the following line:

    Uncomment the 3 lines that start with curl_setopt
    set the proxy address from 1.1.1.1 to: 64.202.165.130:3128

    So you are telling me that the problem could be elliminated by fixing the code in the following file for authorize.net?

    /includes/modules/payment/authorizenet_aim.php

    Thanks
    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

  3. #13
    Join Date
    Aug 2004
    Posts
    309
    Plugin Contributions
    0

    Default Re: Will not confirm the order (Linkpoint)

    looking at file /includes/modules/payment/authorizenet_aim.php, I could find the follwoing script.


    Quote:
    //========================
    // If you have GoDaddy hosting or other hosting services that require use of a proxy to talk to external sites via cURL,
    // then uncomment the following 3 lines and substitute they proxy server's address for 1.1.1.1 below:
    // curl_setopt ($ch, CURLOPT_HTTPPROXYTUNNEL, true);
    // curl_setopt ($ch, CURLOPT_PROXYTYPE, CURLPROXY_HTTP);
    // curl_setopt ($ch, CURLOPT_PROXY, '1.1.1.1');
    //========================

    Could it be elsewhere? Or should just add it to the end of the sript?
    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

  4. #14
    Join Date
    Aug 2004
    Posts
    309
    Plugin Contributions
    0

    Default Re: Will not confirm the order (Linkpoint)

    My version of /includes/modules/payment/authorizenet_aim.php did not have the following:

    //========================
    // If you have GoDaddy hosting or other hosting services that require use of a proxy to talk to external sites via cURL,
    // then uncomment the following 3 lines and substitute they proxy server's address for 1.1.1.1 below:
    // curl_setopt ($ch, CURLOPT_HTTPPROXYTUNNEL, true);
    // curl_setopt ($ch, CURLOPT_PROXYTYPE, CURLPROXY_HTTP);
    // curl_setopt ($ch, CURLOPT_PROXY, '1.1.1.1');
    //========================

    So I added it to the script as follow. Did I do anything wrong? Please advise.

    PS. It now works.
    Thank you Dr. Byte


    // SEND DATA BY CURL SECTION
    // Post order info data to Authorize.net, make sure you have curl installed

    unset($response);

    // The commented line below is an alternate connection method
    //exec("/usr/bin/curl -d \"$data\" https://secure.authorize.net/gateway/transact.dll", $response);

    $url = 'https://secure.authorize.net/gateway/transact.dll';

    $ch = curl_init();

    //========================
    // If you have GoDaddy hosting or other hosting services that require use of a proxy to talk to external sites via cURL,
    // then uncomment the following 3 lines and substitute they proxy server's address for 1.1.1.1 below:
    curl_setopt ($ch, CURLOPT_HTTPPROXYTUNNEL, true);
    curl_setopt ($ch, CURLOPT_PROXYTYPE, CURLPROXY_HTTP);
    curl_setopt ($ch, CURLOPT_PROXY, '64.202.165.130:3128');
    //========================

    // I added this in 11-18-05 authorize.net did not work on Windows 2000

    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);

    curl_setopt($ch, CURLOPT_URL,$url);

    curl_setopt($ch, CURLOPT_VERBOSE, 0);

    curl_setopt($ch, CURLOPT_POST, 1);

    curl_setopt($ch, CURLOPT_POSTFIELDS, $data);

    curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);

    $authorize = curl_exec($ch);

    curl_close ($ch);

    $response = split('\,', $authorize);


    // DATABASE SECTION
    // Insert the send and receive response data into the database.
    // This can be used for testing or for implementation in other applications
    // This can be turned on and off if the Admin Section
    if (MODULE_PAYMENT_AUTHORIZENET_AIM_STORE_DATA == 'True'){

    // Create a string from all of the response data for insertion into the database
    while(list($key, $value) = each($response)) {
    $response_list .= ($key +1) . '=' . urlencode(ereg_replace(',', '', $value)) . '&';
    }
    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

  5. #15
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Will not confirm the order (Linkpoint)

    Yes, if you're not using Zen Cart v1.3.x or newer, you'll have to add it manually as shown.
    .

    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. #16
    Join Date
    Aug 2006
    Posts
    34
    Plugin Contributions
    0

    Default Re: Will not confirm the order (Linkpoint)

    I'm having the same problem except I'm not using godaddy! After about 5 minutes just sitting on step 3 (confirm order) I got the msg

    Error 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'll check it again tomorrow but I think it's probably an error in setup but I can't figure out what it would be.

    If anyone is willing to take a look at my setup I'll send my password to you.

    Thanks

  7. #17
    Join Date
    Aug 2007
    Posts
    32
    Plugin Contributions
    0

    Default Re: Will not confirm the order (Linkpoint)

    Having the same problem, also with Link Point. I called LP and they say everything is kosher on their end, so it's some ZC problem. Any geniuses out there seen this trouble before?

  8. #18
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Will not confirm the order (Linkpoint)

    Quote Originally Posted by iheartguts View Post
    Having the same problem, also with Link Point.
    1. Just to clarify, by "having the same problem", do you mean that your checkout "hangs" after clicking Confirm? Or something else?

    2. Who's your hosting company?

    3. What version of Zen Cart?

    4. What addons/contributions have you installed?

    5. Are you using the built-in Linkpoint API module, or the older one from the downloads area?

    You might try reading this FAQ:
    https://www.zen-cart.com/tutorials/i...hp?article=298
    .

    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. #19
    Join Date
    Mar 2007
    Posts
    47
    Plugin Contributions
    0

    Default Re: Will not confirm the order (Linkpoint)

    Hi Team - Dr. Byte...

    I am deploying my second zen-cart... this time on GoDaddy -

    Enabling LinkPoint - and it hangs... as documented here...
    Hoping that the port and cURL problems have somehow been resolved...

    Zen Cart v1.3.7/v1.3.7
    GoDaddy - virtual shared hosting (to keep costs down)
    Using the LinkPoint that is built in...

    First deployement went to lunarpages... also using LinkPoint...
    It is working fine... just not sure if he bought a dedicated or virtual server.

    Thanks for your help - we were hoping that the site would be live as the
    whole shop is complete - nice look - But can't take these cards yet... :-)

    On this topic, does the paypal gateway work better?...

    Thanks
    KevinW
    =====

  10. #20
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Will not confirm the order (Linkpoint)

    Linkpoint works great as a payment processing service.
    However, one of GoDaddy Hosting's greatest limitations is the friendly cooperation with external resources. They don't work with Linkpoint.

    Linkpoint requires that port "1129" be open from your webserver to the linkpoint server. GoDaddy won't allow that unless you're on one of their premium hosting plans.

    If you've already got the Linkpoint account established, simply take your website to another hosting company that can handle having port 1129 open (ie: one of the hosting partners on the "hosting" page accessed by the link at the top of this screen), and you'll be able to continue using your Linkpoint account to process payments.
    .

    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 2 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. Replies: 10
    Last Post: 21 Jan 2013, 11:43 AM
  2. Checkout Confirm Blank Page Can't confirm order
    By gump47371 in forum General Questions
    Replies: 1
    Last Post: 24 Oct 2010, 11:35 PM
  3. confirm the order button
    By fadi21 in forum Customization from the Admin
    Replies: 3
    Last Post: 18 Aug 2010, 06:59 AM
  4. When I click on Confirm Order I just get kick to the index page and order doesn’t go
    By rdenham in forum PayPal Website Payments Pro support
    Replies: 6
    Last Post: 2 May 2010, 08:02 PM
  5. HELP! Confirm the order not working anymore.
    By haggis0929 in forum Managing Customers and Orders
    Replies: 12
    Last Post: 20 Jul 2009, 09:46 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