Here's the fix for anyone else using Godaddy to host Zen Cart, connecting to QBMS
Within the file includes>modules>payment>qbms.php
1. Remove the line:
curl_setopt($clientURL, CURLOPT_SSL_VERIFYPEER, 1);
2. Add these two lines in its place:
curl_setopt($clientURL, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($clientURL, CURLOPT_SSL_VERIFYHOST, 0);
Bookmarks