Here is how my postbacks are seted up. http://i.imgur.com/j5vcSmG.gif
But that way only Voluums postback fires for conversions, and CPVLAB isnt. Is there anyway for both cpvlab and
Are those CPV Lab pixels in the pixel html box? As far as I know that should have them firing fine alongside the postback to
Otherwise, you can fire multiple postbacks if need be. Simple fire back to a script on one of your servers which then fires back to both systems.
E.g.
http://myserver.com/postback.php?volclickid=#s2#&cpvlabid=#s3#&payout=#price#
<?php
$volid = $_GET['volclickid'];
$cpvid = $_GET['cpvlabid'];
$price= $_GET['payout'];
file('http://voluumlink/postback?cid='.$volid.'&payout='.$price);
file('http://cpvlablink/adclick.php?subid='.$cpvid.'&payout='.$price);
?>
<?php
$volid = $_GET['volclickid'];
$cpvid = $_GET['cpvlabid'];
$price= $_GET['payout'];
$r = new HttpRequest('http://voluumlink/postback', HttpRequest::METH_GET);
$r->addQueryData(array('cid' => $volid, 'payout' => $price));
try {
$r->send();
if ($r->getResponseCode() == 200) {
}
} catch (HttpException $ex) {}
$s = new HttpRequest('http://cpvlablink/adclick.php', HttpRequest::METH_GET);
$s->addQueryData(array('subid' => $cpvid, 'payout' => $price));
try {
$r->send();
if ($r->getResponseCode() == 200) {
}
} catch (HttpException $ex) {}
?>
Woah Zeno, the first code worked great now both postbacks are working and registering conversion in my trackers. Thanks man.