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 08-09-2002, 11:45 AM   #1
Rocco Strange
Confirmed User
 
Join Date: May 2002
Posts: 105
When to 404 a gallery?

I know that you are supposed to keep a page up after submitting it, but for how long?

I know that I still get traffic to my first gallery every, but I never get anymore conversions from the really old pages. I suspect that this type of surfer is just crusing archives and will never convert.

so, should I 404 a gallery after some arbitrary amount of time? Like autodelete after 3 months?

Will this get me banned on the bigger TGP sites?

Any comments or thoughts?
Rocco Strange is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-09-2002, 11:48 AM   #2
hyper
Confirmed User
 
Join Date: Mar 2002
Location: Mass Ass
Posts: 5,294
smack
__________________
hyper is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-09-2002, 11:52 AM   #3
ronaldo
Confirmed User
 
Join Date: Jan 2002
Location: ICQ#: 272000271
Posts: 5,475
I leave mine up for good.

If someone archives your gallery or "steals" it from another site, you may find yourself blacklisted somewhere you've never even submitted before, but may want to in the future.

I've got pages over a year old and they still pop up in the weirdest places.

I deleted galleries ONCE to clear up some disk space and spent the entire next day writing emails trying to clear my name. I'll never go through that again. A dedicated box is worth it if only for that reason alone.

I'd suggest YOU archive your old galleries on to one page, and then when someone asks "I need galleries for my tgp", send them on to your site.

Just my
ronaldo is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-09-2002, 11:52 AM   #4
Yourfreehost
Registered User
 
Join Date: Jul 2002
Location: Mars
Posts: 53
It will definately get you banned
Yourfreehost is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-09-2002, 11:52 AM   #5
dantheman
OG
 
Industry Role:
Join Date: May 2002
Posts: 3,308
i have galleries that get hundreds of google hits a month. I dont think I'd want to 404 any of them.


__________________
M3server.com
VPS>Get your 2nd month free
Ded>$100 off your 2nd month
since 1996
icq-25135623
dannyh at~m3server DOT com
dantheman is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-09-2002, 01:37 PM   #6
Rocco Strange
Confirmed User
 
Join Date: May 2002
Posts: 105
See! Thats why I ask!

I'll leave them up
Rocco Strange is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-09-2002, 02:40 PM   #7
TFCash
Confirmed User
 
Industry Role:
Join Date: Apr 2001
Posts: 1,738
Quote:
Originally posted by Rocco Strange
See! Thats why I ask!

I'll leave them up
Yeap leave them up, but you need to make your pages a bit more sale friendly after 90 days !!!!

You can use php and have it do some really cool stuff with your galleries, I have it wrap the pictures in html after 90 days, and it add's 2 more text links to the page after it's 90 days old. After 1 year I have a pop under that comes up to my traffic hub, I currently get around 1000 unq a day just to that hub from my old galleries, and SE stuff that has found me through spidering the site.

This is another reason to have your own paid hosting, or at least use one of the freehosts that allow you to use your own domain, so you don't loose that valuable SE traffic !!

If you'd like a sample of the php page, just let me know and I'll post one.



Tim
TFCash is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-09-2002, 02:43 PM   #8
Fletch XXX
GFY HALL OF FAME DAMMIT!!!
 
Fletch XXX's Avatar
 
Join Date: Jan 2002
Location: that 504
Posts: 60,840
6 months.
__________________

Want an Android App for your tube, membership, or free site?

Need banners or promo material? Hit us up (ICQ Fletch: 148841377) or email me fletchxxx at gmail.com - recent work - About me
Fletch XXX is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-09-2002, 02:46 PM   #9
Trenton
Confirmed User
 
Join Date: Jul 2001
Location: Albany
Posts: 471
Quote:
Originally posted by Rocco Strange
I know that you are supposed to keep a page up after submitting it, but for how long?

I know that I still get traffic to my first gallery every, but I never get anymore conversions from the really old pages. I suspect that this type of surfer is just crusing archives and will never convert.

so, should I 404 a gallery after some arbitrary amount of time? Like autodelete after 3 months?

Will this get me banned on the bigger TGP sites?

Any comments or thoughts?
Fuck yeah it will get you banned
Trenton is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-09-2002, 05:12 PM   #10
TFCash
Confirmed User
 
Industry Role:
Join Date: Apr 2001
Posts: 1,738
I've had a couple of people email me about how to do this, so I will just post it here. It's pretty simple actually, all you have to do is deciede what you want the page to look like before the time deadline and what you want to look like after and put some if statements in Hope it helps.


Tim



PHP Code:
<?
// Get the current file name of the page that was called
$file_name = $_SERVER['SCRIPT_FILENAME'];
// Get info about the page that was called
$file_info = stat("$file_name"); 
// Get the date the file was last changed
$file_date = $file_info[mtime];
// Today's day to offset with
$todays_date = date(U);
// Set the amount of time diff to switch page format (time is in seconds, so 90 days = 7776000)
$offset_seconds = 7776000;
if(($todays_date - $file_date) > $offset_seconds){
    $site_upsell = "YES";
    }else{
    $site_upsell = "NO";
}
?>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
        <title>Nasty Teen Sluts</title>
</head>
<body>

<? // use the $site_upsell variable to plugin new text links or to change them up after 90 days ?>
<? if($site_upsell == "YES"):?>
<div align="center">
<a href="/scripts/out.php?sponsor="amateurpages">Check out the website for more free pic's !!!</a>
</div>
<? endif; ?>

<table align="center" cellspacing="2" cellpadding="2" border="0">
<tr>
    <td>
        <? if($site_upsell == "NO"):?>
        <? // Just show link the pic straight from the thumbnail ?>
        <a href="pic01.jpg"><img src="thumb_pic01.jpg" border="0" alt="Click Here For Hot Teens"></a>
        <? else: ?>
<?        // Use this to wrap the picture with some html so you can put another banner
        // or some more text links to the sponsors site ?>
        <a href="show_picture.html?pic=pic01.jpg"><img src="thumb_pic01.jpg" border="0" alt="Click Here For Hot Teens"></a>
        <? endif; ?>
    </td>
    <td>
        <? if($site_upsell == "NO"):?>
        <? // Just show link the pic straight from the thumbnail ?>
        <a href="pic02.jpg"><img src="thumb_pic02.jpg" border="0" alt="Click Here For Hot Teens"></a>
        <? else: ?>
<?        // Use this to wrap the picture with some html so you can put another banner
        // or some more text links to the sponsors site ?>
        <a href="show_picture.html?pic=pic02.jpg"><img src="thumb_pic02.jpg" border="0" alt="Click Here For Hot Teens"></a>
        <? endif; ?>
    </td>
    <td>
    
    </td>
    <td>
    
    </td>
</tr>
</table>

<? // use the $site_upsell variable to upsize the text after 90 days ?>
<? if($site_upsell == "YES"):?>
<div align="center">
<a href="/scripts/out.php?sponsor="amateurpages"><font size="+2">Get more free pics of this hot teen here</font></a>
</div>
<? else: ?>
<div align="center">
<a href="/scripts/out.php?sponsor="amateurpages">Get more free pics of this hot teen here</a>
</div>
<? endif; ?>

</body>
</html>
TFCash is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-09-2002, 05:34 PM   #11
ChrisH
Confirmed User
 
Join Date: Aug 2001
Location: New York
Posts: 1,355
I think the better question is. If and when you see your older galleries in a search. Do you remove any recips to it?

I guess you could look and see if the page is still listed and go by that.
ChrisH is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-09-2002, 05:43 PM   #12
Vendot
Confirmed User
 
Industry Role:
Join Date: May 2002
Location: Malaysia
Posts: 3,376
> should I 404 a gallery after some arbitrary amount of time?
> Like autodelete after 3 months?

Never 404..... old & archive galleries do convert better than people say. You always end up with the odd good few signs if youre galleries were worth anything to start with (design-wise).

Put em up and keep em live ....
Vendot is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-09-2002, 05:54 PM   #13
Theo
HAL 9000
 
Industry Role:
Join Date: May 2001
Posts: 34,515
its advisable not to redirect/remove any page
Theo is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-09-2002, 05:58 PM   #14
Krome
Confirmed User
 
Join Date: Jul 2001
Location: London - UK
Posts: 2,851
Quote:
Originally posted by ChrisH
I think the better question is. If and when you see your older galleries in a search. Do you remove any recips to it?

I guess you could look and see if the page is still listed and go by that.
I agree leave old galleries up and just change the banners, personally I have them all pulling from a central cgi based script anyway so at the flick of a switch they all change.
Krome 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.