Is that why your sig is filled with your network promotions, even though your reputation in here is so shitty you never stand a chance of getting anyone to sign up except at DP?
Whoa there little filly.. I plan on applying and having some FUN!
Is that why your sig is filled with your network promotions, even though your reputation in here is so shitty you never stand a chance of getting anyone to sign up except at DP?
I want the stats to always be accurate when I'm looking for a new offer, yes.
... I'm using an e-mail link, then other affiliates don't see the search epc go up, and blah blah blah...
I would like to be able to place pixels with greater ease... i.e. COPEAC allows you to upload a third party pixel right from the campaign page with no human (read:AM) involvement.
I agree that EPC is a flawed metric, at least from a network standpoint. It is next to impossible to keep the EPC a pure number, so I always tell my guys that they need to establish their own EPC. IMO, the network EPC gives affiliates an easy way to decide that an offer isn't working for them before they even get a chance to optimize the campaign. IE: "You said this would get me $2 a click, and I'm getting $0.50 so I'm gonna drop it."
In regards to Postback, the majority of DirectTrack networks support this with Affiliate Webservices / SOAP API. The main problem seems to be that most affiliates don't have a clue how to use it, and to be completely honest I don't even know how it works myself. I wish that we had a system as simple as Neverblue's where you just enter your postback URL and you are good to go, but for now that's not the case.
If somebody on here knows how to use SOAP API and setup Postback from DT networks, please post it on this thread for everyone's benefit!
<?php
// Include the required SOAP classes
require_once('lib/nusoap.php');
// ** MySQL settings ** //
$dbname = 'dbname'; // The name of the database for prosper
$dbuser = 'dbuser'; // Your MySQL username
$dbpass = 'dbpass'; // ...and password
$dbhost = 'dbhost'; // your database ip
//** Network settings ** //
$add_code = 'CDXXXXX'; // your affiliate id
$password = 'password';
$client = 'ads4dough'; //ex: cpaempire, cash4creatives
$soap_server = 'https://secure.directtrack.com/api/soap_affiliate.php';
$dbconnect = mysql_connect($dbhost,$dbuser,$dbpass);
$dbselect = mysql_select_db($dbname);
$client = new soapclient($soap_server);
$date = date("Y-m-d");
$params = array('client' => $client, 'add_code' => $add_code,
'password' => $password, 'start_date'=>$date, 'end_date' =>
$date);
$return_string = $client->call('optionalInfo', $params);
$aarray = split('<Info>' , $return_string);
$count = 0;
foreach($aarray as $x) {
$a2 = split('</Info>', $x);
if($count != 0) {
//print_r($a2[0]);
//print "\n";
$click_id = $a2[0];
$click_id = mysql_real_escape_string($click_id);
$update_sql = "UPDATE 202_clicks SET click_lead='1', `click_filtered`='0' WHERE click_id='" . $click_id ."' AND user_id=1";
$update_result = mysql_query($update_sql) or die(mysql_error());
$update_sql = "UPDATE 202_clicks_spy SET click_lead='1', `click_filtered`='0' WHERE click_id='" . $click_id ."' AND user_id=1";
$update_result = mysql_query($update_sql) or die(mysql_error());
}
$count++;
}
unset($client);
?>
I have a campaign that (could) produce a lead with 3-4 networks depending on certain criteria. THAT is why pixels rock sometimes.Pixals are un-reliable and there is absolutely no need for them when using your sub-id fields correctly.
I have a campaign that (could) produce a lead with 3-4 networks depending on certain criteria. THAT is why pixels rock sometimes.
I just now saw this but I have to ask you ROIShare...
Do you think that after an affiliates "shady leads" go for an offer, you can turn back the hands of time and take care of them? I'm with Steve from MB - you have no idea what you're getting into if you are basing your assumptions on the fact that you can reverse what people do and/or one affiliate won't affect YOUR relationship with the merchant as the network.
And what about the Acai in my sig, I'm not morally allowed to accept 5%-10% commission only?
What is a fair margin for networks to keep?
If a network was really smart they would work with Wes Mahler to try and build a plugin for prosper202 since it's open source that lets affiliates setup offer links directly from prosper202 since that would save alot of time for affiliates and also get you a bunch of new affiliates.
What is a fair margin for networks to keep?
Depends how much traffic your pushing to the offer of course.What is a fair margin for networks to keep?
I'm guessing that most of us have code for most network interaction for the API's they have. Maybe we could even put together an abstract class interface with API's for each network type interaction.
Affiliates being able to place their own pixel is a must and will be implemented in our system shortly, as well as postbacks. We're also on track for the feeds for offers.