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)
-   -   Big tits programs that have random gallery generator? (https://gfy.com/showthread.php?t=562142)

The Duck 01-10-2006 05:16 PM

Big tits programs that have random gallery generator?
 
Spam me

8chars

Tempest 01-10-2006 05:47 PM

What do you mean "random gallery generator"? I don't know of any program that creates "random" galleries... However, a bunch have links you can use to a random gallery of the day/hour/moment.

The Duck 01-10-2006 05:48 PM

Quote:

Originally Posted by Tempest
What do you mean "random gallery generator"? I don't know of any program that creates "random" galleries... However, a bunch have links you can use to a random gallery of the day/hour/moment.

Thats what I want, gallery of the hour or moment.

Tempest 01-10-2006 06:15 PM

NastyDollars - gallery of the day
TopBucks - gallery of the day
ExtremePayChecks - gallery of the day
FetishHits - gallery of the day
PimpRoll - gallery of the day
EvilGeniusCash - gallery of the moment

and more.....

SmokeyTheBear 01-10-2006 06:19 PM

spacash has random hotlinkeable thumb galleries..

SmokeyTheBear 01-10-2006 06:22 PM

Example...

The Duck 01-10-2006 06:27 PM

Thanks Tempest!

The Duck 01-10-2006 06:28 PM

Quote:

Originally Posted by SmokeyTheBear

Awesome, thanks.

SmokeyTheBear 01-10-2006 06:50 PM

you also might want to try your own rotation script like this.

Basically the script chooses one random description from the list and one random link

You can add as many links and descriptions as you want , you can make it display more than one random gallery at the same time too.

like you could input 100 random galleries and make it choose to display 5 random links..
Code:

<SCRIPT LANGUAGE="Javascript"> 
 
    var stbL = new Array( 
     
    "http://www.gallery1.com", 
    "http://www.gallery2.com", 
    "http://www.gallery3.com", 
    "http://www.gallery4.com", 
    "http://www.gallery5.com", 
    "http://www.gallery6.com", 
    "http://www.gallery7.com", 
    "http://www.gallery8.com"
    );
       
          var stbT = new Array(     
         
    "Gallery description#1",
    "Gallery description#2",
    "Gallery description#3",
    "Gallery description#4",
    "Gallery description#5",
    "Gallery description#6",
    "Gallery description#7",
    "Gallery description#8"
         
    );
       
 
 
      var intRnd = Math.floor(Math.random()*8)+1;
          for( intX = 0; intX < 1; intX++ ){
          document.write( '<A TARGET="_blank" HREF="' + stbL[ intRnd - 1 ] + '">' + stbT[ intRnd - 1 ] + '</A>' ); 
          if( intRnd hahahaha 1 ){ intRnd = 0; } 
          intRnd = intRnd + 1;     
    }
         
   
 
</SCRIPT>


SmokeyTheBear 01-10-2006 06:52 PM

gfy parses out certain characters in the code above.. if you look where you see "HAHAHA" in the code that should read "=="

SmokeyTheBear 01-10-2006 06:54 PM

if you want to make it display more thn one gallery at a time just change "intX < 1;" to a higher number and also change "intRnd ==1" to the same number

SmokeyTheBear 01-10-2006 07:03 PM

example ....

Tempest 01-10-2006 07:08 PM

Javascript is ok but I don't like to have all that stuff on my pages... I actually have a php script I use that grabs galleries from files. So I can use any sponsors FHGs and have them rotate daily, hourly or be random for the moment. Pretty simple to write yet really powerful for traffic pumps etc.

<?php
$errorurl='http://www.yourdomain.com/errorpage.html';
$sitename=strtolower(trim($HTTP_SERVER_VARS['QUERY_STRING']));
$filename="../galfiles/".$sitename.".txt";
$utime=time()-(8*3600);
$updatetime=intval($utime/86400);
if($sitenamehahahaha"" || !file_exists($filename)){@header("Location: $errorurl");exit;}
$g='';$gal=array();$tmp=@file($filename);
for($i=0;$i<count($tmp);$i++){$t=trim(chop($tmp[$i]));if($t!=""&&strtolower(substr($t,0,7))hahahaha'h ttp://'){$gal[]=$t;}}
if(count($gal)<=0){@header("Location: $errorurl");exit;}
$g=$gal[($updatetime%count($gal))];
@header("Location: $g");
?>

This one rotates once a day around midnight PST.. Change the hahahaha to 2 equal signs, i.e. = = but without the space between them.

The files are stored in a directory ../galfiles/<filename>.txt

on your page you would put /gallery.php?filename

if you want it every hour, change this line to

$updatetime=intval($utime/3600);

Tempest 01-10-2006 07:14 PM

Oh yeah, I forgot to add that the file is just a plain text file with 1 url per line, no blank lines in it..

SmokeyTheBear 01-10-2006 07:24 PM

Quote:

Originally Posted by Tempest
Javascript is ok but I don't like to have all that stuff on my pages... I actually have a php script I use that grabs galleries from files. So I can use any sponsors FHGs and have them rotate daily, hourly or be random for the moment. Pretty simple to write yet really powerful for traffic pumps etc.

<?php
$errorurl='http://www.yourdomain.com/errorpage.html';
$sitename=strtolower(trim($HTTP_SERVER_VARS['QUERY_STRING']));
$filename="../galfiles/".$sitename.".txt";
$utime=time()-(8*3600);
$updatetime=intval($utime/86400);
if($sitenamehahahaha"" || !file_exists($filename)){@header("Location: $errorurl");exit;}
$g='';$gal=array();$tmp=@file($filename);
for($i=0;$i<count($tmp);$i++){$t=trim(chop($tmp[$i]));if($t!=""&&strtolower(substr($t,0,7))hahahaha'h ttp://'){$gal[]=$t;}}
if(count($gal)<=0){@header("Location: $errorurl");exit;}
$g=$gal[($updatetime%count($gal))];
@header("Location: $g");
?>

This one rotates once a day around midnight PST.. Change the hahahaha to 2 equal signs, i.e. = = but without the space between them.

The files are stored in a directory ../galfiles/<filename>.txt

on your page you would put /gallery.php?filename

if you want it every hour, change this line to

$updatetime=intval($utime/3600);

now add some matching descriptions please :) :thumbsup

Tempest 01-10-2006 07:28 PM

Quote:

Originally Posted by SmokeyTheBear
now add some matching descriptions please :) :thumbsup

he he he... I have a different set of scripts for doing that sort of listing because I want the SE benifits from the descriptions which you wouldn't get writing them with javascript.. The script I posted is to simply do random links in the same way as if he just used the links from sponsors with some "generic" text.

abz 01-11-2006 12:16 AM

Try Audrey she has big tits and a movie of the day!

okdesign 01-11-2006 02:23 AM

Gamma Cash and Extreme Pay Checks have exactly what are you looking for :thumbsup

Markit 01-11-2006 03:35 AM

Recurring Dollars

Depraved Dollars

Busty.pl

Silicon Free

DDF Cash


:)


All times are GMT -7. The time now is 06:35 PM.

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