Yes i did al the troubleshooting steps already and have did it again.
But today i found the solution to my problem.
I 've said I had to use port 443 only and changed the code in paypal_functions:
Code:
//Set the port number
if($web['scheme'] == "https") {
$web['port']="443"; $ssl = "ssl://";
} else {
$web['port']="80"; $ssl = "";
}
to:
Code:
//Set the port number
if($web['scheme'] == "https") {
$web['port']="443"; $ssl = "ssl://";
} else {
$web['port']="443"; $ssl = "";
}
with this change i could get back on my page but it leaves me still with the problems described above.
I now have the code changed to:
Code:
//Set the port number
$web['port']="443"; $ssl = "ssl://";
And everything is working perfect now!
regards,
Rinker