Hey guys, having some issues with 2.01 and Paypal, and I found an issue with Authorize.Net hosting with GoDaddy - the same problem that plagued version 1.0! Here is the fix if you are hosting with GoDaddy and are using SSL: Find in components/com_dtregister/dtregister.php: $ch = curl_init($auth_net_url); // URL of gateway for cURL to post to curl_setopt($ch, CURLOPT_HEADER, 0); // set to 0 to eliminate header info from response curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // Returns response data instead of TRUE(1) curl_setopt($ch, CURLOPT_POSTFIELDS, rtrim( $fields, "& " )); // use HTTP POST to send form data ### curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); // uncomment this line if you get no gateway response. ### $resp = curl_exec($ch); //execute post and get results curl_close ($ch); REPLACE WITH: $ch = curl_init($auth_net_url); // URL of gateway for cURL to post to curl_setopt($ch, CURLOPT_HEADER, 0); // set to 0 to eliminate header info from response curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // Returns response data instead of TRUE(1) //curl_setopt ($ch, CURLOPT_HTTPPROXYTUNNEL, TRUE); curl_setopt ($ch, CURLOPT_PROXYTYPE, CURLPROXY_HTTP); curl_setopt ($ch, CURLOPT_PROXY,"
proxy.shr.secureserver.net:3128
"); //GoDaddy SSL Proxy curl_setopt($ch, CURLOPT_POSTFIELDS, rtrim( $fields, "& " )); // use HTTP POST to send form data ### curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); // uncomment this line if you get no gateway response. ### $resp = curl_exec($ch); //execute post and get results curl_close ($ch); You will have to do this in 2 places within the page so find and replace in both areas of dtregister.php. Still having a PayPal issue: When registering with PayPal, it doesn't record the Registration name in the database! When you come back from the PayPal page, it has all the name & amount fields blank! Nothing is recorded in the Database. I was wondering if there were requirements of the PayPal account, like an IPN, or PayPal Pro for the class to work right? Any ideas?? Charlie Trig
www.trigenterprises.com
Trig Enterprises Web Design Studios