GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Google Images sends 1 person every 2 seconds to me. (https://gfy.com/showthread.php?t=679933)

Quick Buck 11-22-2006 11:43 PM

smokey... redirect them to a non porn domain and make a site that looks "an awful lot like google", get those searchers to do another search and make a ton of money from it... hell.. just use the google adsense for search, javascript the search box to be focused and put up a bogus error message like "the image could not be displayed, please search again" :)

SmokeyTheBear 11-22-2006 11:45 PM

Quote:

Originally Posted by warlock5 (Post 11375259)
Are you trying to send all this traffic to one location? This should definately be niched.

yes and yes, the only problem is its across tons of different niche's so its alot of work to seperate into individual niche's ( approx 500-1000 keywords )

fr0gman 11-22-2006 11:47 PM

Quote:

Originally Posted by Quick Buck (Post 11375281)
smokey... redirect them to a non porn domain and make a site that looks "an awful lot like google", get those searchers to do another search and make a ton of money from it... hell.. just use the google adsense for search, javascript the search box to be focused and put up a bogus error message like "the image could not be displayed, please search again" :)

No offense but that is a TOTAL violation of Google TOS. You can't display any Adsense elements on an Error Page nor can you put a search box on a page alone, nor can you manipulate the search code....

I am thrilled that it works for you but please do not lead others astray.

There are lots of ways to make money from that traffic and still stay within the lines.

fr0gman 11-22-2006 11:48 PM

Quote:

Originally Posted by austinth (Post 11375008)
the adsense system is working well for me, but you're right you've really gotta work on ad integration. i've had good luck with a certain layout with a few sets of ads on the page, but everyones traffic is different.

I have adsense templates that consistently produce in excess of 20% CTR.

SmokeyTheBear 11-22-2006 11:49 PM

Quote:

Originally Posted by Quick Buck (Post 11375281)
smokey... redirect them to a non porn domain and make a site that looks "an awful lot like google", get those searchers to do another search and make a ton of money from it... hell.. just use the google adsense for search, javascript the search box to be focused and put up a bogus error message like "the image could not be displayed, please search again" :)

hold on a sec im having a seizure trying to read your post..


ok i'm better now.. heh

thats kind of what i was doing but using my own search box instead of google's but i need to work on my ad integration first

leedsfan 11-22-2006 11:53 PM

Quote:

Originally Posted by Quick Buck (Post 11375281)
smokey... redirect them to a non porn domain and make a site that looks "an awful lot like google", get those searchers to do another search and make a ton of money from it... hell.. just use the google adsense for search, javascript the search box to be focused and put up a bogus error message like "the image could not be displayed, please search again" :)


and wait for the litigation....

fr0gman 11-22-2006 11:57 PM

Quote:

Originally Posted by leedsfan (Post 11375309)
and wait for the litigation....

There would be no litigation. Google would just let you run it for a month and build up some nice revenue then pull the plug under the TOS and you would be left holding your weenie.

Oh and you will have to send me an ICQ message since mine if screwed up and I can't add new people.

High Plains Drifter 11-23-2006 12:04 AM

I notice a large percentage of your surfers are enjoying the services of smiley central.

emthree 11-23-2006 12:22 AM

I get alot of adult google img searches as well. Seems to be mostly freeloaders.
Do you use a framebreaker code? I really need one. I've been too lazy to look into it...

tenderobject 11-23-2006 12:46 AM

Quote:

Originally Posted by emthree (Post 11375419)
I get alot of adult google img searches as well. Seems to be mostly freeloaders.
Do you use a framebreaker code? I really need one. I've been too lazy to look into it...

im looking for one as well!

fr0gman 11-23-2006 01:43 AM

<?
$guy = $_SERVER["HTTP_REFERER"];

if (preg_match ("/search/", $guy)) {
?>
<script>
if (top.location != location) {
top.location.href = 'http://yoursite.com' ;
}

</script>
<?php
}
?>

Page 2... yahooooooo Join www.wetboxbucks.com

MyNameIsNobody 11-23-2006 01:54 AM

Are there any firemen visiting the site?
http://www.marquettecountyfair.com/images/fire.gif

Nicky 11-23-2006 04:16 AM

Quote:

Originally Posted by fr0gman (Post 11375742)
<?
$guy = $_SERVER["HTTP_REFERER"];

if (preg_match ("/search/", $guy)) {
?>
<script>
if (top.location != location) {
top.location.href = 'http://yoursite.com' ;
}

</script>
<?php
}
?>

Page 2... yahooooooo Join www.wetboxbucks.com

I've always been bad on the scripting, so where do I put this? In a text file in the img folders or on my domain roots index, or on all my html pages?

SmokeyTheBear 11-23-2006 04:44 AM

Quote:

Originally Posted by Nicky (Post 11376318)
I've always been bad on the scripting, so where do I put this? In a text file in the img folders or on my domain roots index, or on all my html pages?

i think this should work for javascript , just put it in your head ( i havent tested it but try it and see )

Code:

<script language="Javascript">
var myRegExp = /google/;
var string1 = document.referrer;
var matchPos1 = string1.search(myRegExp);

if(matchPos1 != -1)
        top.location="http://yoursite.com";

</script>


X37375787 11-23-2006 05:53 AM

Quote:

Originally Posted by fr0gman (Post 11375742)
<?
$guy = $_SERVER["HTTP_REFERER"];

if (preg_match ("/search/", $guy)) {
?>
<script>
if (top.location != location) {
top.location.href = 'http://yoursite.com' ;
}

</script>
<?php
}
?>

Page 2... yahooooooo Join www.wetboxbucks.com


Nice, I always used a non-conditional frame breaker, which got really lame at times, especially when working with iframe previews. :thumbsup

Thanks!

Nicky 11-23-2006 05:59 AM

Quote:

Originally Posted by SmokeyTheBear (Post 11376415)
i think this should work for javascript , just put it in your head ( i havent tested it but try it and see )

Code:

<script language="Javascript">
var myRegExp = /google/;
var string1 = document.referrer;
var matchPos1 = string1.search(myRegExp);

if(matchPos1 != -1)
        top.location="http://yoursite.com";

</script>


Thanks, and this would be in the head tag of the html page with the thumbnails?

djroof 11-23-2006 06:03 AM

Great man!

V_RocKs 11-23-2006 06:16 AM

Are these people looking for images of porn or shit like suitcases, sunglasses, mainstream?


All times are GMT -7. The time now is 07:26 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123