Hi
I just wish to confirm:
When I use the code snippet:
<?php
if(!strstr($_SERVER['HTTP_HOST'],'www.'))
return;
header('HTTP/1.1 301 Moved Permanently');
header('Location: http://'.substr($_SERVER['HTTP_HOST'],4).$_SERVER['REQUEST_URI']);
exit();
?>
It removes the error message that says:
"extension missing open ssl"
but leaves a single line at the top of the browser window that says:
"SSL loaded"
since the contact page will not load, I cannot test what effect that might have had on the attempt to connect through PEAR.
If I remove that code snipper the error about openssl returns.
Thank you,
KB