|
|
|
||||
|
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. |
![]() |
|
|||||||
| Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
|
Thread Tools |
|
|
#1 |
|
Adult Content Provider
Industry Role:
Join Date: May 2005
Location: Europe
Posts: 18,243
|
Big tits programs that have random gallery generator?
Spam me
8chars |
|
|
|
|
|
#2 |
|
Too lazy to set a custom title
Industry Role:
Join Date: May 2004
Location: West Coast, Canada.
Posts: 10,217
|
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.
|
|
|
|
|
|
#3 | |
|
Adult Content Provider
Industry Role:
Join Date: May 2005
Location: Europe
Posts: 18,243
|
Quote:
|
|
|
|
|
|
|
#4 |
|
Too lazy to set a custom title
Industry Role:
Join Date: May 2004
Location: West Coast, Canada.
Posts: 10,217
|
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..... |
|
|
|
|
|
#5 |
|
►SouthOfHeaven
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
|
spacash has random hotlinkeable thumb galleries..
__________________
hatisblack at yahoo.com |
|
|
|
|
|
#7 |
|
Adult Content Provider
Industry Role:
Join Date: May 2005
Location: Europe
Posts: 18,243
|
Thanks Tempest!
|
|
|
|
|
|
#9 |
|
►SouthOfHeaven
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
|
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>
__________________
hatisblack at yahoo.com |
|
|
|
|
|
#10 |
|
►SouthOfHeaven
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
|
gfy parses out certain characters in the code above.. if you look where you see "HAHAHA" in the code that should read "=="
__________________
hatisblack at yahoo.com |
|
|
|
|
|
#11 |
|
►SouthOfHeaven
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
|
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
__________________
hatisblack at yahoo.com |
|
|
|
|
|
#13 |
|
Too lazy to set a custom title
Industry Role:
Join Date: May 2004
Location: West Coast, Canada.
Posts: 10,217
|
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); |
|
|
|
|
|
#14 |
|
Too lazy to set a custom title
Industry Role:
Join Date: May 2004
Location: West Coast, Canada.
Posts: 10,217
|
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..
|
|
|
|
|
|
#15 | |
|
►SouthOfHeaven
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
|
Quote:
__________________
hatisblack at yahoo.com |
|
|
|
|
|
|
#16 | |
|
Too lazy to set a custom title
Industry Role:
Join Date: May 2004
Location: West Coast, Canada.
Posts: 10,217
|
Quote:
|
|
|
|
|
|
|
#18 |
|
ICQ 278367136
Industry Role:
Join Date: May 2002
Posts: 24,773
|
__________________
|
|
|
|
|
|
#19 |
|
Confirmed User
Join Date: Oct 2003
Posts: 1,305
|
__________________
|
|
|
|