Every other shop I see online is using Zencart, even Paypal recomends it, and who am I to argue with such lofty reccomedations? ^_^
I am 100% new to e-commerce period, so speak to me in the simplest terms possible please...
I am trying to install the latest release of Zencart on my hosting. I am on a Linux server, and have all my ZC files in the right places, or so I thought. My installation has proceeded to step 3 (Prerequisites) at which point it presents the following errors:
cURL requires SSL Support. Please notify webmaster or hosting company. 7
and
cURL problems detected : 56 => Received error code 403 from proxy
I have notified my hosting company, and they assure me that they do support cURL, but they do not offer any support or advice on it, beyond recomending the following script:
My question is, what on earth do I do with this? Can I save it as a .php file and place it in a specified folder, and thus make the few remaining connections needed to proceed to the next step? Or is there a file already in place that I need to edit to include this information? If so, which one?<?
$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";
?>
I promise I am not completely stupid, just in a bit over my head at present.
Kudos for reading!
~F. Johns





