Recommended laptop under £500.
Think I deserve a present? See my Amazon Wish List
|
Webmasters Helping Visitors with FunWebProducts For Website Developers
Please also see the Fun Web Products removal page.
If you are a web site developer you could insert something like the headers below at the top of a PHP page to redirect them to a page about their browser.
<?php
if (eregi("FunWebProducts",$_SERVER['HTTP_USER_AGENT'])){
$referrerSite=$_SERVER['SERVER_NAME'];
$referrerPath=$_SERVER['REQUEST_URI'];
header("Location: http://www.liamdelahunty.com/tips/fun_web_products.php?referrerSite=$referrerSite&referrerPath=$referrerPath");
}else{
print ("<noscript>");
<a href=\"http://www.liamdelahunty.com/tips/fun_web_products.php\">Removing FunWebProducts</a>.</p>");
print ("</noscript>");
}
?>
But it's probably a little nice just to give them a warning message by putting something like the following on your page.
<?php
if (eregi("FunWebProducts",$_SERVER['HTTP_USER_AGENT'])){
$referrerSite=$_SERVER['SERVER_NAME'];
$referrerPath=$_SERVER['REQUEST_URI'];
print("<h1>Warning FunWebProducts Browser Hijacker Detected</h1>
<p>We have detected a suspicious peice of software on your computer.
See <a href=\"http://www.liamdelahunty.com/tips/fun_web_products.php?referrerSite=$referrerSite&referrerPath=$referrerPath\" target=\"_blank\">removing fun web products</a> for more information.</p>");
}else{
print ("<noscript>");
<a href=\"http://www.liamdelahunty.com/tips/fun_web_products.php\">Removing FunWebProducts</a>.</p>");
print ("</noscript>");
}
?>
Share this!
|