Have a question about CiviCRM? Get it answered quickly at the new CiviCRM Stack Exchange Q+A siteThis forum was archived on 25 November 2017. Learn more.How to get involved.What to do if you think you've found a bug.
What needs to be done to get this running?
One quick question -Is there a way we can turn on the ability to have it ask about recurring and such for Authorize.net, and then continue to do the manual turn on of the subscription over at Authorize.net?Right now we're recreating those fields via custom fields, but it would be great if we could use the ones that are already there.This will at least do us for a while until enough groups can get together to cover the cost of getting true support of recurring payments.Thanks!
curl_setopt($submit, CURLOPT_RETURNTRANSFER, 1); curl_setopt($submit, CURLOPT_HTTPHEADER, Array("Content-Type: text/xml")); curl_setopt($submit, CURLOPT_HEADER, 1); curl_setopt($submit, CURLOPT_POSTFIELDS, $arbXML); curl_setopt($submit, CURLOPT_POST, 1); curl_setopt($submit, CURLOPT_SSL_VERIFYPEER, 0); $response = curl_exec($submit); if ( !$response ) { return self::error( curl_errno($submit), curl_error($submit)