The best tool to manage E-gold and Liberty Reserve accounts. Since 2006!
Download now!

How to fix Liberty Reserve mass payment script

Updated January 2nd, 2010

I've found couple issues in the Liberty Reserve mass payment tool. It doesn't allow to send more than 30-50 transactions at once. Also mass payment doesn't work if SSL Certificate of Liberty Reserve expires. It is caused by a little issue in a php file. Find getResponse() function in the functions.php and replace it with:

function getResponse()
{
$url = 'https://api.libertyreserve.com/xml/transfer.aspx'; // Request string was removed from here

if(!function_exists('curl_init'))
{
die('Curl library not installed.');
}

$handler = curl_init($url);

// Script stops working when LR certificate expires
curl_setopt($handler, CURLOPT_SSL_VERIFYPEER, false);

// Set Verify Depth
curl_setopt($handler, 115, 1);

// Sending request through post
curl_setopt($handler, CURLOPT_POST);
curl_setopt($handler, CURLOPT_POSTFIELDS, 'req='.urlencode($this->toXml()));

// Some optimization :)
curl_setopt($handler, CURLOPT_RETURNTRANSFER, true);

$content = curl_exec($handler);
curl_close($handler);
return $content;
}

Now it will work. Anyway I recommend you to use Gold Keeper mass payment feature (read why).

You can download fixed script here

Bookmark and Share

Latest News:

Feb 26, 2009
Liberty Reserve mass payment dialog was improved. There's an article how to use it.

Feb 26, 2009
How to fix Liberty Reserve mass payment script article has been updated.

Jan 16, 2009
Referal fee was increased to $3 per purchase. Thanks to all our affiliates.

Dec 24, 2009
We wish all our visitors Merry Christmas and Happy New Year!

Dec 23, 2008
We wrote an instruction how to fix Liberty Reserve mass payment script.

Dec 20, 2008
Article about Liberty Reserve mass payment issues was added.

Dec 8, 2008
Gold Keeper 4.0 with
new features and nice
interface is available now!
It supports E-gold and
Liberty Reserve.

May 29, 2007
We have new e-gold account.

Sep 16, 2007
50,000
copies downloaded! More that 10,000 copies sold! $4,891 paid to our referrers!!!
Thanks everyone for their support.

Oct 9, 2006
Gold Keeper 3 is available for public download!

Mar 13, 2006
Download Gold Keeper 2.0 with more great features.
Learn more

Jan 12, 2006
Version 1.1 stable now available!

Dec 25, 2005
First version of Gold Keeper now available!