Statistics: Posted by rossagrant — June 24th, 2011, 4:53 pm
Statistics: Posted by marcelorg — June 24th, 2011, 4:48 pm
Statistics: Posted by rossagrant — June 24th, 2011, 2:51 pm
Statistics: Posted by marcelorg — June 24th, 2011, 11:46 am
Statistics: Posted by Jason Caldwell — June 5th, 2011, 9:01 pm
Statistics: Posted by rossagrant — May 13th, 2011, 6:23 pm
Statistics: Posted by Jason Caldwell — May 13th, 2011, 6:21 pm
Statistics: Posted by rossagrant — May 13th, 2011, 6:19 pm
Statistics: Posted by Jason Caldwell — May 13th, 2011, 6:15 pm
Statistics: Posted by rossagrant — May 13th, 2011, 6:02 pm
Statistics: Posted by Jason Caldwell — May 13th, 2011, 5:55 pm
Statistics: Posted by rossagrant — May 13th, 2011, 4:54 pm
Statistics: Posted by Jason Caldwell — May 13th, 2011, 4:51 pm
Statistics: Posted by rossagrant — May 13th, 2011, 4:34 pm
6.) Checked in Mailchimp to find the subscription to the PREMIUM list was GONE (deleted from list which is great).
7.) HOWEVER the user (now a subscriber) was not set to the FREE members list in mailchimp.
Statistics: Posted by Jason Caldwell — May 13th, 2011, 4:28 pm
Statistics: Posted by rossagrant — May 13th, 2011, 3:22 pm
Statistics: Posted by Cristián Lávaque — May 13th, 2011, 1:00 pm
Statistics: Posted by rossagrant — May 13th, 2011, 12:33 pm
Statistics: Posted by Cristián Lávaque — May 13th, 2011, 11:44 am
Statistics: Posted by rossagrant — May 13th, 2011, 10:53 am
Statistics: Posted by Jason Caldwell — May 13th, 2011, 12:16 am
Statistics: Posted by rossagrant — May 12th, 2011, 10:39 am
Statistics: Posted by rossagrant — May 10th, 2011, 6:02 pm
<?php
error_reporting(E_ALL);
@ini_set ("display_errors", true);
/*
Curl operation for posting data and reading response.
*/
function curlpsr ($url = FALSE, $postvars = array (), $max_con_secs = 20, $max_stream_secs = 20, $headers = array ())
{
if (($url = trim ($url)) && ($c = curl_init ()))
{
if (is_array ($postvars)) /* Because cURL can't deal with complex arrays. */
/* Since cURL can't deal with complex arrays, we force this to a query string. */
$postvars = http_build_query ($postvars);
/**/
curl_setopt_array ($c, /* Configure options. */
array (CURLOPT_URL => $url, CURLOPT_POST => true,/**/
CURLOPT_FOLLOWLOCATION => true, CURLOPT_MAXREDIRS => 5,/**/
CURLOPT_CONNECTTIMEOUT => $max_con_secs, CURLOPT_TIMEOUT => $max_stream_secs, /* Initial connection & stream seconds. */
CURLOPT_HEADER => false, CURLOPT_RETURNTRANSFER => true, CURLOPT_HTTPHEADER => $headers, CURLOPT_POSTFIELDS => $postvars,/**/
CURLOPT_ENCODING => "", CURLOPT_VERBOSE => false, CURLOPT_FAILONERROR => true, CURLOPT_FORBID_REUSE => true, CURLOPT_SSL_VERIFYPEER => false));
/**/
$o = trim (curl_exec ($c));
/**/
curl_close($c);
}
/**/
return (!empty ($o)) ? $o : false;
}
/*
Here we perform the PHP test routine.
*/
echo (curlpsr ("https://www.paypal.com/", array ("x_test" => 1))) ? '<div>Test succeeded :-) Lookin\' good here.</div>' : '<div>Sorry, this test failed!</div>';
?>
Statistics: Posted by Jason Caldwell — May 10th, 2011, 6:00 pm