Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 01-24-2007, 05:13 PM   #1
xlogger
Confirmed User
 
Join Date: Jul 2004
Location: NY
Posts: 9,507
How to let surfer know if he has zango installed?

No drama please.

Lets say a surfer has zango installed. Is there anyway to let him know he has it, on ones site, without redirecting him?

Like on the top of the site it can say "warning you have bla..." and thats only visible to people who have zango.
__________________

----------
XLOGGER [REFLECTED] [OH]
xlogger is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-24-2007, 05:14 PM   #2
MattO
The O is for Oohhh
 
Join Date: Feb 2003
Location: AUSTIN TEJAS
Posts: 10,861
I check their useragent and if I see Zango in the string then I post em a message.
MattO is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-24-2007, 05:20 PM   #3
MattO
The O is for Oohhh
 
Join Date: Feb 2003
Location: AUSTIN TEJAS
Posts: 10,861
To elaborate, I use ColdFusion and use this code:


Code:
<CFIF  ("#findnocase("zango", "#CGI.HTTP_USER_AGENT#")#" is not "0")>

ZANG WARNING MESSAGE 

</cfif>
MattO is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-24-2007, 05:26 PM   #4
xlogger
Confirmed User
 
Join Date: Jul 2004
Location: NY
Posts: 9,507
Quote:
Originally Posted by MattO View Post
To elaborate, I use ColdFusion and use this code:


Code:
<CFIF  ("#findnocase("zango", "#CGI.HTTP_USER_AGENT#")#" is not "0")>

ZANG WARNING MESSAGE 

</cfif>
cool, yeah thats what i want.

How do i put this in a php or html page?
__________________

----------
XLOGGER [REFLECTED] [OH]
xlogger is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-24-2007, 05:31 PM   #5
MattO
The O is for Oohhh
 
Join Date: Feb 2003
Location: AUSTIN TEJAS
Posts: 10,861
Quote:
Originally Posted by xlogger View Post
cool, yeah thats what i want.

How do i put this in a php or html page?
Yea that you have to ask Smokey what the php version of it is... I believe it has been posted on GFY before.
MattO is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-24-2007, 05:37 PM   #6
MattO
The O is for Oohhh
 
Join Date: Feb 2003
Location: AUSTIN TEJAS
Posts: 10,861
Smokey put some Javascript action in this thread:

http://www.gofuckyourself.com/showthread.php?t=668659

Quote:
Originally Posted by SmokeyTheBear
<script>
var agt=navigator.userAgent.toLowerCase();
if (agt.indexOf("zango")!=-1)
alert("WARNING - do not close this message - please read - You have what many people call dangerous spyware known as ZANGO installed on your system. We are not here to sell you anything you can remove it for free simply go to google and type REMOVE ZANGO into the search box and you will find many websites to help you remove it.");
</script>

----------------------------------

This next script does the same thing but instead of just informing them it takes them to a page of your choice , this way if you wanted you could make money by selling them some adware removal program ( again it doesnt disrupt traffic in any way )

---------------------------------------

<script>
var agt=navigator.userAgent.toLowerCase();
if (agt.indexOf("zango")!=-1) {
alert("WARNING - do not close this message - please read -ACCESS TO THIS WEBSITE HAS BEEN DENIED You have what many people call dangerous spyware known as ZANGO installed on your system. We are not here to sell you anything you can remove it for free simply go to google and type REMOVE ZANGO into the search box and you will find many websites to help you remove it.")
window.open('http://www.google.com/search?q=remove+zango','_top');
}
</script>
MattO is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-24-2007, 06:14 PM   #7
TheDoc
Too lazy to set a custom title
 
TheDoc's Avatar
 
Industry Role:
Join Date: Jul 2001
Location: Currently Incognito
Posts: 13,827
This puts a warning straight on your webpage..

Code:
  <? if(stristr($_SERVER[HTTP_USER_AGENT],'zango')) { ?>
	<br /><br /><div style="margin: 0 auto; padding: 5px 5px 5px 5px; width:575px; background: white; border: 1px solid red;"><div align="center"><b>WARNING - WARNING - WARNING</b></div><br />
	<div align="left">Our system has detected that you have <i>scum-ware</i> installed on your PC, called <b>"Zango"</b>. Zango causes all those annoying popup windows and slow downs you have been experiencing. You can easily <a href="http://www.411-spyware-remove.com/remove-zango/" target="_blank">remove Zango here for free</a>. Then read how <a href="http://www.ftc.gov/opa/2006/11/zango.htm" target="_blank">Zango was fined $3m</a> for adware installs or read about Zango on <a href="http://blogs.zdnet.com/Spyware/?p=856" target="_blank">ZDNet</a>. Then stop by my <a href="http://www.thedocblog.com/thedocblog-news/2006/10/20/adware-spyware-malware/" target="_blank">Webmaster Blog</a> for a personal view on Zango scum-ware.<br /><br /></div>
	<div align="center"><a href="http://www.411-spyware-remove.com/remove-zango/" target="_blank"><b>CLICK HERE TO REMOVE ZANGO FROM YOUR COMPUTER</b></a><br /><br /></div></div>
  <? } ?>
__________________
~TheDoc - ICQ7765825
It's all disambiguation
TheDoc is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-24-2007, 06:22 PM   #8
xlogger
Confirmed User
 
Join Date: Jul 2004
Location: NY
Posts: 9,507
Quote:
Originally Posted by TheDoc View Post
This puts a warning straight on your webpage..

Code:
  <? if(stristr($_SERVER[HTTP_USER_AGENT],'zango')) { ?>
	<br /><br /><div style="margin: 0 auto; padding: 5px 5px 5px 5px; width:575px; background: white; border: 1px solid red;"><div align="center"><b>WARNING - WARNING - WARNING</b></div><br />
	<div align="left">Our system has detected that you have <i>scum-ware</i> installed on your PC, called <b>"Zango"</b>. Zango causes all those annoying popup windows and slow downs you have been experiencing. You can easily <a href="http://www.411-spyware-remove.com/remove-zango/" target="_blank">remove Zango here for free</a>. Then read how <a href="http://www.ftc.gov/opa/2006/11/zango.htm" target="_blank">Zango was fined $3m</a> for adware installs or read about Zango on <a href="http://blogs.zdnet.com/Spyware/?p=856" target="_blank">ZDNet</a>. Then stop by my <a href="http://www.thedocblog.com/thedocblog-news/2006/10/20/adware-spyware-malware/" target="_blank">Webmaster Blog</a> for a personal view on Zango scum-ware.<br /><br /></div>
	<div align="center"><a href="http://www.411-spyware-remove.com/remove-zango/" target="_blank"><b>CLICK HERE TO REMOVE ZANGO FROM YOUR COMPUTER</b></a><br /><br /></div></div>
  <? } ?>
that works, thx
__________________

----------
XLOGGER [REFLECTED] [OH]
xlogger is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.