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 03-08-2006, 04:55 PM   #1
Dirty F
Too lazy to set a custom title
 
Dirty F's Avatar
 
Industry Role:
Join Date: Jul 2001
Posts: 59,204
Tip of the day - blog related

I'm sure most of you know it already but for those who don't:

Always add alt descriptions to all the pics on your blog (or on any other site for that matter).

Eventhough my blog is dead, i dont update it anymore, im getting 1000's of image hits a day which i redirect. They are making me easily 500+ a month.
Dirty F is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-08-2006, 05:24 PM   #2
Dirty F
Too lazy to set a custom title
 
Dirty F's Avatar
 
Industry Role:
Join Date: Jul 2001
Posts: 59,204
I'm happy you all enjoy my money making tips!
Dirty F is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-08-2006, 05:36 PM   #3
QualityMpegs
Confirmed User
 
Join Date: Feb 2003
Location: Orlando, Florida
Posts: 3,521
Quote:
Originally Posted by Franck
I'm sure most of you know it already but for those who don't:

Always add alt descriptions to all the pics on your blog (or on any other site for that matter).

Eventhough my blog is dead, i dont update it anymore, im getting 1000's of image hits a day which i redirect. They are making me easily 500+ a month.
you redirecting with .htaccess? may we have the code?
__________________

PAYSITES CATEGORIZED AND THUMBNAILED BY NICHE - 69767780
QualityMpegs is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-08-2006, 05:39 PM   #4
dissipate
The Dirty Frenchman
 
dissipate's Avatar
 
Industry Role:
Join Date: Nov 2005
Location: Lost Angeles
Posts: 8,904
Quote:
Originally Posted by QualityMpegs
you redirecting with .htaccess? may we have the code?
You'd be redirecting any google searches through .htaccess - this will block google spidering in the future, but it will also redirect google image traffic.
dissipate is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-08-2006, 05:39 PM   #5
cool1
sex is good
 
Join Date: Sep 2001
Location: Carman, MB Canada
Posts: 24,939
Thanks for the tip
I had forgot to add a few
__________________
cool1 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-08-2006, 05:40 PM   #6
Dirty F
Too lazy to set a custom title
 
Dirty F's Avatar
 
Industry Role:
Join Date: Jul 2001
Posts: 59,204
Quote:
Originally Posted by dissipate
You'd be redirecting any google searches through .htaccess - this will block google spidering in the future, but it will also redirect google image traffic.

No its java, google bot dont read java.
Dirty F is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-08-2006, 05:41 PM   #7
Dirty F
Too lazy to set a custom title
 
Dirty F's Avatar
 
Industry Role:
Join Date: Jul 2001
Posts: 59,204
Quote:
Originally Posted by cool1
Thanks for the tip
I had forgot to add a few

Its really worth it...it tooks a long time though before you get it.
Dirty F is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-08-2006, 05:44 PM   #8
fuzebox
making it rain
 
fuzebox's Avatar
 
Industry Role:
Join Date: Oct 2003
Location: seattle
Posts: 22,113
I do the same thing across all my domains, redirect google images hits to a page which busts out of the frame and redirects the traffic to specific pages depending on the search string.
fuzebox is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-08-2006, 05:45 PM   #9
fuzebox
making it rain
 
fuzebox's Avatar
 
Industry Role:
Join Date: Oct 2003
Location: seattle
Posts: 22,113
Quote:
Originally Posted by dissipate
You'd be redirecting any google searches through .htaccess - this will block google spidering in the future
Untrue...
fuzebox is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-08-2006, 05:46 PM   #10
QualityMpegs
Confirmed User
 
Join Date: Feb 2003
Location: Orlando, Florida
Posts: 3,521
or, i guess you could just cloak your page
Code:
<?php

function redirect($loc, $ref)
{

   if (strstr(strtolower($ref), 'google.')
      || strstr(strtolower($ref), 'yahoo.')
      || strstr(strtolower($ref), 'msn.')
      || strstr(strtolower($ref), 'altavista.')
      || strstr(strtolower($ref), 'ask.')
      || strstr(strtolower($ref), 'aol.')
      || strstr(strtolower($ref), 'looksmart.')
      || strstr(strtolower($ref), 'dogpile.')
      || strstr(strtolower($ref), 'lycos.')
      || strstr(strtolower($ref), 'netscape.')
      || strstr(strtolower($ref), 'hotbot.')
      || strstr(strtolower($ref), 'alltheweb.')
      || strstr(strtolower($ref), 'freeserve.'))
   {
      header("Location: $loc");
   }
}
?>
To call it from any page of your website, or from a template, save the above file as cloak.php (or whatever) and put this code at the top of the page:
Code:
<?php
ob_start();

include("cloak.php");

$ref = $HTTP_REFERER;
redirect("http://www.urltoredirect.com", $ref);

ob_end_flush();
?>
__________________

PAYSITES CATEGORIZED AND THUMBNAILED BY NICHE - 69767780
QualityMpegs is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-08-2006, 05:46 PM   #11
More Booze
Confirmed User
 
Join Date: Mar 2004
Posts: 5,116
Quote:
Originally Posted by Franck
No its java, google bot dont read java.
would you like to share that script?
More Booze is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-08-2006, 05:46 PM   #12
Dirty F
Too lazy to set a custom title
 
Dirty F's Avatar
 
Industry Role:
Join Date: Jul 2001
Posts: 59,204
Quote:
Originally Posted by fuzebox
I do the same thing across all my domains, redirect google images hits to a page which busts out of the frame and redirects the traffic to specific pages depending on the search string.

Yeah thats even better. I didnt do that, i just send it to a page with several sponsor links, banners etc. Several different niches.
Dirty F is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-08-2006, 05:46 PM   #13
$5 submissions
I help you SUCCEED
 
$5 submissions's Avatar
 
Industry Role:
Join Date: Nov 2003
Location: The Pearl of the Orient Seas
Posts: 32,195
Quote:
Originally Posted by fuzebox
I do the same thing across all my domains, redirect google images hits to a page which busts out of the frame and redirects the traffic to specific pages depending on the search string.
SWEET script
$5 submissions is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-08-2006, 05:47 PM   #14
Dirty F
Too lazy to set a custom title
 
Dirty F's Avatar
 
Industry Role:
Join Date: Jul 2001
Posts: 59,204
Quote:
Originally Posted by fuzebox
I do the same thing across all my domains, redirect google images hits to a page which busts out of the frame and redirects the traffic to specific pages depending on the search string.

Do you sell the script?
Dirty F is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-08-2006, 05:50 PM   #15
jrap
Confirmed User
 
Join Date: Feb 2005
Location: Toledo, Ohio
Posts: 448
Just don't go overboard with alt tags
jrap is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-08-2006, 05:53 PM   #16
Grisey
Confirmed User
 
Join Date: Jan 2004
Location: Uk
Posts: 1,805
Nice tip Franck
__________________
Segpay Suck Ass Worse Billing Company
Allurecash Scammers and don't pay
Grisey is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-08-2006, 05:59 PM   #17
jrap
Confirmed User
 
Join Date: Feb 2005
Location: Toledo, Ohio
Posts: 448
http://seoblackhat.com/2005/11/13/fr...vascript-ever/

There is a good article on frame busting
jrap is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-08-2006, 07:09 PM   #18
More Booze
Confirmed User
 
Join Date: Mar 2004
Posts: 5,116
scriritiotvm
More Booze is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-08-2006, 07:12 PM   #19
fr0gman
Confirmed User
 
Join Date: Feb 2005
Posts: 2,093
Quote:
Originally Posted by Franck
No its java, google bot dont read java.
I use Flash for the same reason
__________________
Earn up to $.03 per Visitor -> No Click Monetization!
"Because the World Wide Web is all about two things: horrifyingly stupid psychodrama, and naked chicks."
Wild College Videos | ICQ: 7746696
fr0gman is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-08-2006, 07:29 PM   #20
BigBen
Confirmed User
 
Join Date: Nov 2004
Location: scv
Posts: 2,299
Quote:
Originally Posted by fuzebox
I do the same thing across all my domains, redirect google images hits to a page which busts out of the frame and redirects the traffic to specific pages depending on the search string.
Something along these lines?

Code:
<?
function url($referer)
{
   if $referer = "some query string";
   return "http://querystringpage.com";
}
?>

<script type="text/javascript">
if( window != window.top ) { top.location.href = "<? url($_SERVER['HTTP_REFERER']); ?>"; }
</script>
BigBen is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-08-2006, 07:40 PM   #21
nico-t
emperor of my world
 
Join Date: Aug 2004
Location: nethalands
Posts: 29,903
a while ago i looked into the known frame buster code, and i didnt put it on my blogs yet but id figure its perfect to force the surfer to the page of the blog where the images are at when u put it in the blog header. Since every page of the blog uses the header.

But, i also have a domain with a shitload of galleries and free site pages on it that gets loads of google image hits. But since these gals and free sites dont share headers i cant frame bust the google image traffic directly to the page the images are at.. would be great if anyone has tips on this.

Quote:
Originally Posted by fuzebox
I do the same thing across all my domains, redirect google images hits to a page which busts out of the frame and redirects the traffic to specific pages depending on the search string.
plus this looks like a perfect script.. but i guess you also have to put a code on every page too with this one? Or is it strictly a htaccess code (dont know if this possible in htaccess)?
nico-t is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-09-2006, 07:18 AM   #22
nico-t
emperor of my world
 
Join Date: Aug 2004
Location: nethalands
Posts: 29,903
those 100 useless threads of some "funny" fake nick kicked this thread down so heres a bump.
nico-t 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.