Get Cart & SSL Certificate

Former Member
Former Member $organization

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 

Parents
  • 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



    [edited by: Travis Armbuster at 8:10 AM (GMT -6) on 15 Apr 2014]
Reply
  • 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



    [edited by: Travis Armbuster at 8:10 AM (GMT -6) on 15 Apr 2014]
Children