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)
-   -   What to do with Google images traffic? (https://gfy.com/showthread.php?t=735563)

DickShoke 05-22-2007 10:02 PM

What to do with Google images traffic?
 
i'm getting alot of hits from Google images that just eats up bandwidth. Is there a way to make some money off this traffic?

sicone 05-22-2007 10:05 PM

.htaccess and redirect to the sites main page

cocky 05-22-2007 10:09 PM

A lot of the bandwidth is just google hotlinking image on google rather than hits to your page so .htaccess may not help but there are smater people than I. Check your log file. You'll probably see hits direct to your image rather than a page.

Fat Panda 05-22-2007 10:43 PM

i would like a nice simple answer to this problem too!

TampaToker 05-22-2007 10:46 PM

Quote:

Originally Posted by SAC (Post 12473165)
i would like a nice simple answer to this problem too!

yeah no shit last few days image traffic pouring in never had that before...

DickShoke 05-23-2007 12:58 AM

Quote:

Originally Posted by cocky (Post 12473037)
A lot of the bandwidth is just google hotlinking image on google rather than hits to your page so .htaccess may not help but there are smater people than I. Check your log file. You'll probably see hits direct to your image rather than a page.

this is what i meant is happening.

janosik 05-23-2007 04:27 AM

Just make a thumb TGP with top quality thumb previews and redirect all traffic there. I started few TGPs this way ;) There are also some other way how to monetize this traffic but it is my secret :)

Michaelious 05-23-2007 04:28 AM

I don't know much about this but I can say there is a way to block pictures etc that you don;t want people to see without visiting your sites...

NTSS 05-23-2007 06:00 AM

Quote:

Originally Posted by sicone (Post 12473027)
.htaccess and redirect to the sites main page


I have the same problem...can you tell me the code?

Jarmusch 05-23-2007 06:04 AM

I use htaccess and redirect it to *******.

polle54 05-23-2007 06:22 AM

how much is much?

MrChips 05-23-2007 06:48 AM

Seriously - delete/rename the image - theres fucking zero reason to give google a single fucking image for free when they display it in a fucking frame of their own.

Out of interest, does the page which your image is on (on your domain) rank anywhere for any terms?

PH-GNXS 05-23-2007 06:57 AM

google images convert nicely
 
but my content is celeb so that could be a reason I have like 250,000 open thumbs so im all over google images

polle54 05-23-2007 10:42 AM

Quote:

Originally Posted by MrChips (Post 12474374)
Seriously - delete/rename the image - theres fucking zero reason to give google a single fucking image for free when they display it in a fucking frame of their own.

Out of interest, does the page which your image is on (on your domain) rank anywhere for any terms?

I disagree

I hold a $8-10CPM on my image traffic

that is 20 times the bandwidth cost or so, works for me.

DickShoke 05-23-2007 11:49 AM

Quote:

Originally Posted by polle54 (Post 12474285)
how much is much?

1-2k a day

polle54 05-23-2007 04:15 PM

Quote:

Originally Posted by DickShoke (Post 12475762)
1-2k a day

just by redirecting to fling tour 4, that should be around $10 a day I think...

that's better than nothing and it doesn't eat so much bw if you redirect it.

Nicky 05-24-2007 06:33 PM

Quote:

Originally Posted by polle54 (Post 12477423)
just by redirecting to fling tour 4, that should be around $10 a day I think...

that's better than nothing and it doesn't eat so much bw if you redirect it.

And how do you redirect it? id love a .htaccess code, if thats what used

mattz 05-24-2007 06:35 PM

doesn't google images send some real traffic though? I know they show the preview of the pic but isn't their a link like "view this site" or something like that

Shankz 05-24-2007 07:00 PM

Quote:

Originally Posted by mattz (Post 12484208)
doesn't google images send some real traffic though? I know they show the preview of the pic but isn't their a link like "view this site" or something like that

Yes, if you click the preview on google images it loads your site with a google frame at the top and a link to "see the full size image". Most people click that before your page even loads... Basically bypassing your page to see the pic.

Dirty F 05-24-2007 07:03 PM

I love google image traffic.

fuzebox 05-24-2007 07:11 PM

Because half of GFY is already using my htaccess code but I never get thanked :(

This will bust out of the google images frame...

1) create a file called googleimages.php in your root directory:

<html><head><title>Loading Site...</title>
<script language="Javascript">
<!--
if (top.location != location) top.location.href = 'http://<? print $_SERVER["SERVER_NAME"] . $url;?>';
//-->
</script>
</head>
<body><center><a target=_top href="http://<? print $_SERVER["SERVER_NAME"] . $url; ?>">Click Here To Load The Site</a></center>
</body></html>


2) add this to your .htaccess:

RewriteEngine On
RewriteCond %{HTTP_REFERER} ^http://images.google
RewriteCond %{REQUEST_URI} !googleimages.php
RewriteCond %{REQUEST_URI} (.*)
RewriteRule /* /googleimages.php?url=%1 [R,L]

Shankz 05-25-2007 03:37 PM

Quote:

Originally Posted by fuzebox (Post 12484342)
Because half of GFY is already using my htaccess code but I never get thanked :(

Thanks! :thumbsup

vvq 05-25-2007 03:40 PM

pop it out of the frame and send it directly to a sponsor

EBORG9 05-25-2007 04:16 PM

Quote:

Originally Posted by fuzebox (Post 12484342)
Because half of GFY is already using my htaccess code but I never get thanked :(

This will bust out of the google images frame...

1) create a file called googleimages.php in your root directory:

<html><head><title>Loading Site...</title>
<script language="Javascript">
<!--
if (top.location != location) top.location.href = 'http://<? print $_SERVER["SERVER_NAME"] . $url;?>';
//-->
</script>
</head>
<body><center><a target=_top href="http://<? print $_SERVER["SERVER_NAME"] . $url; ?>">Click Here To Load The Site</a></center>
</body></html>


2) add this to your .htaccess:

RewriteEngine On
RewriteCond %{HTTP_REFERER} ^http://images.google
RewriteCond %{REQUEST_URI} !googleimages.php
RewriteCond %{REQUEST_URI} (.*)
RewriteRule /* /googleimages.php?url=%1 [R,L]

Thank you also. :thumbsup

Screaming 05-25-2007 04:31 PM

fuzebox pwns

tranza 05-25-2007 05:26 PM

Quote:

Originally Posted by sicone (Post 12473027)
.htaccess and redirect to the sites main page

Wouldn't Google just stop listing you if you started redirecting that traffic??

Also: how does that eat up bandwith???? It links to your site!!

Love Sex 05-25-2007 05:58 PM

Quote:

Originally Posted by tranza (Post 12489488)
Wouldn't Google just stop listing you if you started redirecting that traffic??

Also: how does that eat up bandwith???? It links to your site!!

What happens is most people just click the pic and never see your site.

It doesnt redirect it unless you make it, it just sends the person directly to your site without the google frame, instead of just to the picture.

faxxaff 05-25-2007 06:32 PM

There is a very simple solution to this: Open the images in your picture editing program like photoshop and save it with a different compression rate. Than upload the image to your server. Google Image will see that the photo was changed in size and will suspend sending hits to you. It will take a week or two to be in effect and usually traffic will be much lower afterwards.

It's much safer than redirecting in my own experience as you will not raise red flags for getting banned on google .... just my experience.

TTiger 05-25-2007 06:46 PM

Quote:

Originally Posted by fuzebox (Post 12484342)
Because half of GFY is already using my htaccess code but I never get thanked :(

This will bust out of the google images frame...

1) create a file called googleimages.php in your root directory:

<html><head><title>Loading Site...</title>
<script language="Javascript">
<!--
if (top.location != location) top.location.href = 'http://<? print $_SERVER["SERVER_NAME"] . $url;?>';
//-->
</script>
</head>
<body><center><a target=_top href="http://<? print $_SERVER["SERVER_NAME"] . $url; ?>">Click Here To Load The Site</a></center>
</body></html>


2) add this to your .htaccess:

RewriteEngine On
RewriteCond %{HTTP_REFERER} ^http://images.google
RewriteCond %{REQUEST_URI} !googleimages.php
RewriteCond %{REQUEST_URI} (.*)
RewriteRule /* /googleimages.php?url=%1 [R,L]

thank you nice trick here

Phil 05-25-2007 06:53 PM

hmm.. I'm going to try that

IllTestYourGirls 07-16-2007 10:58 AM

Do I need to change the code at all because it does not seem to be working for me. Thanks for the tip :)

DomP_nl 07-16-2007 11:06 AM

Just break the frame, put this between y're head tags

<SCRIPT LANGUAGE="JAVASCRIPT">
<!-- Hide from old Browsers
if (top != self) top.location.href = location.href;
// Stop hiding from old browsers -->
</SCRIPT>

bigalownz 07-29-2007 10:54 PM

Quote:

Originally Posted by fuzebox (Post 12484342)
Because half of GFY is already using my htaccess code but I never get thanked :(

This will bust out of the google images frame...

1) create a file called googleimages.php in your root directory:

<html><head><title>Loading Site...</title>
<script language="Javascript">
<!--
if (top.location != location) top.location.href = 'http://<? print $_SERVER["SERVER_NAME"] . $url;?>';
//-->
</script>
</head>
<body><center><a target=_top href="http://<? print $_SERVER["SERVER_NAME"] . $url; ?>">Click Here To Load The Site</a></center>
</body></html>


2) add this to your .htaccess:

RewriteEngine On
RewriteCond %{HTTP_REFERER} ^http://images.google
RewriteCond %{REQUEST_URI} !googleimages.php
RewriteCond %{REQUEST_URI} (.*)
RewriteRule /* /googleimages.php?url=%1 [R,L]

what do you put for yahoo images and msn images etc

Blue Player 07-29-2007 11:04 PM

Quote:

Originally Posted by DomP_nl (Post 12769468)
Just break the frame, put this between y're head tags

<SCRIPT LANGUAGE="JAVASCRIPT">
<!-- Hide from old Browsers
if (top != self) top.location.href = location.href;
// Stop hiding from old browsers -->
</SCRIPT>

That is what I do and have been doing so for years and it rocks. I have a frame breaker on every page fo my site. The last thing I ever what is to be trapped in someone frameset.

tenderobject 07-29-2007 11:13 PM

Quote:

Originally Posted by polle54 (Post 12475373)
I disagree

I hold a $8-10CPM on my image traffic

that is 20 times the bandwidth cost or so, works for me.

yay thats good. how do you monetise google image traffc? wanna know ioll hit you up later on :P

StarkReality 07-30-2007 01:53 AM

Quote:

Originally Posted by tenderobject (Post 12841266)
yay thats good. how do you monetise google image traffc? wanna know ioll hit you up later on :P

I send it to fake thumb TGPs and dating/cam sponsors, really depends on how much and how targetted, but for large ammounts from all different niches dating works best for me.

Tanker 07-30-2007 01:44 PM

Fuzebox thank you very much for this tip

Indecent 07-30-2007 01:58 PM

Wow, i'm glad that you guys brought this up. I've noticed a huge increase in google images hits this week, and it seems to be some automated scraping going on.

Check out these terms:

00:45 Google Search: fuck+ hot+ g
00:49 Google Search: le
00:52 Google Search: naked+ b
01:41 Google Search: gir
01:56 Google Search: wow+ women+ nak
02:13 Google Search: girls+ s

WTF? Anyway, thanks a lot for the frame breaker, DomP_nl!

Klen 07-30-2007 02:43 PM

Thank fuzebox finaly i will use that damn traffic :)


All times are GMT -7. The time now is 09:08 AM.

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