https method not detected
Brought to you by:
smithj108
In FMK_lib/func_curl_error.php, smsConnect makes several references to $parms['proto'], checking for 'https' to enable https communication with the agent. the 'proto' key doesn't exist in $parms-- it's $parms['method']. I replaced all instances of $parms['proto'] with $parms['method'] and it works fine now. I don't know if this project is still being maintained, but I thought I'd share in case anyone else comes across it.