curl-and-php
RE: Curl and Authorize.net
Date: Mon, 5 May 2003 10:56:34 -0400
I'm not sure but have you tried to take the 443 off the end of the url you
are psoting to? I also believe there is a special CURLOPT for SSL, you may
want to check php.net or zend.com for some examples.
Matt Babineau
www.criticalcode.com
e:: <mailto:matt_at_criticalcode.com> matt_at_criticalcode.com p:: 603.943.4237
-----Original Message-----
From: curl-and-php-admin_at_lists.sourceforge.net
[mailto:curl-and-php-admin_at_lists.sourceforge.net] On Behalf Of Erik
Stieringer
Sent: Monday, May 05, 2003 10:48 AM
To: curl-and-php_at_lists.sourceforge.net
Subject: Curl and Authorize.net
Dear Members,
I have been trying to get my PHP script to communicate with Authorize.net.
It does not appear to send any data, as I do not get an emailed receipt
back.
I have used both of these forms of code in my PHP scripts:
exec("$curl -d \"$data\" $authnet_url", $return_string);
(where $curl = path to curl, $data = information to post, & $authnet_url =
URL to post to)
& I have used:
$ch=curl_init();
curl_setopt($ch, CURLOPT_URL,
"https://secure.authorize.net/gateway/transact.dll:443");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
curl_setopt($ch, CURLOPT_USERAGENT, $agent);
curl_setopt($ch, CURLOPT_REFERER, $ref);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
Neither has worked.
--- This information is from phpinfo() PHP Version 4.3.0 CURL support enabled CURL Information libcurl/7.10.1 OpenSSL/0.9.6e ipv6 zlib/1.1.3 --- The only thing I can figure is that ipv6 does not work with PHP. (I have read that somewhere.) If that is the general consensus of the members here, I will recompile cURL without ipv6. Just want to know what others think before I mess around with the server any more than I have to. Only other interesting note: When I enter "curl-config -version" at the command line, I actually get back "libcurl 7.7.2", not the 7.10.1 as shown in the phpinfo. I understand that for PHP v. 4.3.0, I do need cURL v. 7.9.8 or better. Could there be some problem with this? Thanks in advance, Erik Stieringer ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sfReceived on 2003-05-05