Quote:
Fatal error: Call to undefined function: func_https_prepare_request() in /home2/www/xyz/xcart/payment/func_https_ssleay.php on line 93
|
Adding this line to func_https_ssleay.php seems to resolve the error:
Code:
require $xcart_dir."/payment/func_https_tunneling_bouncer.php";
I added it near the top of the file, around line #73, right before the line that starts with:
Quote:
function func_https_request...
|