You're just plain wrong.
weren't you the one who originally said that you didn't think there was an issue with FF?
I'm only posting what was told to me and what I've noticed. Maybe others are experiencing issues, but I haven't.
You're just plain wrong.
I'm not sure what zwinkys you guys are running, but this is straight from my AM who got it from the IAC rep:
Internet Explorer 4+
...
Your rep is lying to you or he's being lied too. I can't 100% say that every network doesn't track, but I know a couple of the major ones don't, so I imagine this is the same for all.
We can argue this all freakin' day and get no where. Plain and simple, if you're not redirecting your FireFox leads to a non IAC offer, you're leaving money on the table.
oh, and if you think FF doesn't make up a significant portion of your traffic, you're wrong again.
<?php
function get_user_browser()
{
$u_agent = $_SERVER['HTTP_USER_AGENT'];
$ub = '';
if(preg_match('/MSIE/i',$u_agent))
{
$ub = "ie";
}
elseif(preg_match('/Firefox/i',$u_agent))
{
$ub = "firefox";
}
elseif(preg_match('/Safari/i',$u_agent))
{
$ub = "safari";
}
elseif(preg_match('/Chrome/i',$u_agent))
{
$ub = "chrome";
}
elseif(preg_match('/Flock/i',$u_agent))
{
$ub = "flock";
}
elseif(preg_match('/Opera/i',$u_agent))
{
$ub = "opera";
}
return $ub;
}
?>
<?php
if(get_user_browser() == 'firefox'){
//go somewhere using header()
exit;
} else {
//go somewhere else using header()
exit;
}
?>
Code:<?php function get_user_browser() { $u_agent = $_SERVER['HTTP_USER_AGENT']; $ub = ''; if(preg_match('/MSIE/i',$u_agent)) { $ub = "ie"; } elseif(preg_match('/Firefox/i',$u_agent)) { $ub = "firefox"; } elseif(preg_match('/Safari/i',$u_agent)) { $ub = "safari"; } elseif(preg_match('/Chrome/i',$u_agent)) { $ub = "chrome"; } elseif(preg_match('/Flock/i',$u_agent)) { $ub = "flock"; } elseif(preg_match('/Opera/i',$u_agent)) { $ub = "opera"; } return $ub; } ?> <?php if(get_user_browser() == 'firefox'){ //go somewhere using header() exit; } else { //go somewhere else using header() exit; } ?>