Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Need help with adding to an add-on


NGRU-Kamikazie

Recommended Posts

Hey,

 

I am a bit PHP Illiterate so I need some help. I am using OSC with godaddy for hosting and Innovative Gateway Solutions. I have the path to the cURL and the username and password, however I hit a snag.... any CURL applications that make secure HTTP connections (HTTPS over port 443) need to pass through a proxy server. The address for this proxy server is proxy.shr.secureserver.net and connections must specify the use of port 3128. The code below already includes this information but is set for paypal not innovative gateway. Can anyone help me modify the Innovative gateway plugin? The plugin can be found at:http://innovativegateway.com/api_sdk.asp

and the plugin im using is called osCommerce v2.2, 2.4 API (Includes CVV2 Support).

 

<?

$URL="https://www.paypal.com";
if (isset($_GET["site"])) { $URL = $_GET["site"]; }
$ch = curl_init();
echo "URL = $URL <br>\n";
curl_setopt($ch, CURLOPT_VERBOSE, 1);
//curl_setopt ($ch, CURLOPT_HTTPPROXYTUNNEL, TRUE);
curl_setopt ($ch, CURLOPT_PROXYTYPE, CURLPROXY_HTTP);
curl_setopt ($ch, CURLOPT_PROXY,"http://proxy.shr.secureserver.net:3128");
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt ($ch, CURLOPT_URL, $URL);
curl_setopt ($ch, CURLOPT_TIMEOUT, 120);
$result = curl_exec ($ch);
echo "<hr><br>\n";
echo 'Errors: ' . curl_errno($ch) . ' ' . curl_error($ch) . '<br><br>';
echo "<hr><br>\n";
curl_close ($ch);
print "result - $result";
echo "<hr><br>\n";

?>

Link to comment
Share on other sites

  • 2 weeks later...

Im having the same problem with godaddy support and Innovative support -- there is none.

I was given this code also by godaddy and have no idea where to put this code.

 

I have search all over the boards -high and low for hours, seen many post for this integration problem and it seems no one since 2004 has had any luck with using innovation solutions.

 

Does someone know where this code should go.. much appreciated.

Music is body splash for the soul.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...