I'm having some issues trying to use the GetCart method on my local host for a University project.
I've got a self signed SSL certificate, however each time I try to load the page using this method I'm getting the following error message: 'SSL certificate problem: certificate has expired'.
Does Tessitura require a verified SSL certificate or are there any settings I need to change in Tessitura?
Any advice would be much appreciated!
Thanks,Caspian
Hey Caspain, Are you using cURL? Do any of the other cURLs work in your project? Add the following to cURL and see if it works. Here is a link to read about it.
http://us2.php.net/manual/en/function.curl-setopt.php
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
Travis
Amazing! Thank you so much!
That is a quick fix, but you will need to look at the problem in more depth.