I want to get some thoughts on this wonderful adventure i've been on for a week now. Everything is fine till i sent the credit card info, then OSC loses the SSL connection and thus the credit card processor rejects the connection. So i think, uh oh sounds like a server issue, and i call into godaddy. That begun a whole series of events, with them telling me that my scripts are bad and i need to relative link everything so it can be called in https. so i do it. all of it. and my site starts going into convulsions over the changes. making a long story short, in the end they suddenly discovered that their SSL and OSC has some kind of conflict, and one of their techs who knows OSC (but of course wasn't there to talk to me) wrote a CURL script that fixes the problem. But he didnt know what files it needed to go in, or why exactly the SSL woudln't work without it. not to mention the script was incomplete.
Heres what it is, excluding the $page call of course :
Code:
// GoDaddy's "solution" to inadequecy
$ch = curl_init('https://www.sting-away.com/catalog');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
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);
So... If anyone has some experience with any of these factors here, your input would be greatly appreciated, as my site has been down for a week now (investors dont like that, come to find out
).
Thanks for reading this.
Bookmarks