WPGPT Postback help please!

Lanibox

Newbie
Joined
Apr 20, 2011
Messages
2
Reaction score
0
Hey, has anybody managed to get work WPGPT automated postback? So users dont need to wait for me to approve completed offer.

Looking for help with Adscendmedia and blamads postback.
Screenshot would be nice :)

Also, is there way to add multiple offers at same time? It takes alot time to add those 1 by 1 :S
 
this is a simple example of postback
<?phpinclude "mysql.php";
$userId = $_REQUEST['userId'];
$offerid = $_REQUEST['offerid'];
$checkid = mysql_query("select * from offers where `cid`='{$offerid}'");
$f=mysql_fetch_object($checkid);
// Give credits to user
mysql_query("UPDATE `users` SET total_earned=total_earned+'".$amount."',current_balance=current_balance+'".$amount."' WHERE username='".$userId."'") or die(mysql_error());
mysql_query("insert into completed values('','".$f->name."','".$userId."','','".$f->reward."')") or die(mysql_error());
}
?>
you can modify it by yourself or if u can send me the script i can help u code it
 
WPGPT got postback scripts allready done, but it requires these values.
(Cant post picture to show how it looks like at that panel)

Code:
● Postback Status Variable: The variable name from what the completion status value will be
read.
● Postback Status Payable Value: The value that the variable status will return if the member
gets credited on the affiliate network's side.
● Postback Status Reversed Value: The value that the variable status will return if the member
does not get credited (reversal) on the affiliate network's side.
● Postback Info Variable: The parameter that contains the click id.
● Postback Allowed IPs: The IPs that the affiliate network allow postback from. Separate multiple
IPs with a comma.

Somebody knows those required things for Adscendmedia and Blamads? :P
 
There is a guide in the support forum for Blam ads post back.
 
WPGPT got postback scripts allready done, but it requires these values.
(Cant post picture to show how it looks like at that panel)

Code:
● Postback Status Variable: The variable name from what the completion status value will be
read.
● Postback Status Payable Value: The value that the variable status will return if the member
gets credited on the affiliate network's side.
● Postback Status Reversed Value: The value that the variable status will return if the member
does not get credited (reversal) on the affiliate network's side.
● Postback Info Variable: The parameter that contains the click id.
● Postback Allowed IPs: The IPs that the affiliate network allow postback from. Separate multiple
IPs with a comma.

Somebody knows those required things for Adscendmedia and Blamads? :P
Use this for adscendmedia
cfa5G

So for payable variable you will put
Code:
[FONT=Arial][COLOR=#000000][STS][/COLOR][/FONT]
ect.
 
Back
Top