Signature Testing & Design Test your sigs here!

Random Sig Generator

Thread Tools
 
Search this Thread
 
Old 08-27-2007, 12:22 PM
  #1  
TECH Senior Member
Thread Starter
iTrader: (42)
 
Brian2006's Avatar
 
Join Date: Dec 2004
Location: Tomball/Nacogdoches TX
Posts: 5,064
Likes: 0
Received 0 Likes on 0 Posts
Default Random Sig Generator

test.
Old 08-27-2007, 12:22 PM
  #2  
TECH Senior Member
Thread Starter
iTrader: (42)
 
Brian2006's Avatar
 
Join Date: Dec 2004
Location: Tomball/Nacogdoches TX
Posts: 5,064
Likes: 0
Received 0 Likes on 0 Posts
Default

testing
Old 08-27-2007, 12:24 PM
  #3  
TECH Senior Member
Thread Starter
iTrader: (42)
 
Brian2006's Avatar
 
Join Date: Dec 2004
Location: Tomball/Nacogdoches TX
Posts: 5,064
Likes: 0
Received 0 Likes on 0 Posts
Default

********
Old 08-27-2007, 12:25 PM
  #4  
TECH Senior Member
Thread Starter
iTrader: (42)
 
Brian2006's Avatar
 
Join Date: Dec 2004
Location: Tomball/Nacogdoches TX
Posts: 5,064
Likes: 0
Received 0 Likes on 0 Posts
Default

test test test
Old 08-27-2007, 12:41 PM
  #5  
TECH Senior Member
Thread Starter
iTrader: (42)
 
Brian2006's Avatar
 
Join Date: Dec 2004
Location: Tomball/Nacogdoches TX
Posts: 5,064
Likes: 0
Received 0 Likes on 0 Posts
Default

test...
Old 08-27-2007, 12:50 PM
  #6  
TECH Senior Member
iTrader: (10)
 
cyphur's Avatar
 
Join Date: Mar 2003
Location: North Texas
Posts: 8,009
Likes: 0
Received 0 Likes on 0 Posts
Default

Just a heads up - our message board does not accept HTML code in the signature field. You have to use vBulletin code.

In any event, you're already at the limit for signature images, any additional images would exceed the guidelines unless you shrank your current image.
Old 08-27-2007, 05:38 PM
  #7  
TECH Senior Member
Thread Starter
iTrader: (42)
 
Brian2006's Avatar
 
Join Date: Dec 2004
Location: Tomball/Nacogdoches TX
Posts: 5,064
Likes: 0
Received 0 Likes on 0 Posts
Default

Originally Posted by cyphur
Just a heads up - our message board does not accept HTML code in the signature field. You have to use vBulletin code.

In any event, you're already at the limit for signature images, any additional images would exceed the guidelines unless you shrank your current image.
Well that explains it.

I'm not trying to add another image. Just have it there until I get it figured out. I just have too many signatures and don't ever know which one I want to use. So now I'm trying to create a random sig generator
Old 08-27-2007, 06:43 PM
  #8  
11 Second Club
iTrader: (118)
 
Havok2's Avatar
 
Join Date: Jan 2004
Location: RGV texas
Posts: 2,994
Likes: 0
Received 0 Likes on 0 Posts
Default

shut up brian
Old 08-27-2007, 10:07 PM
  #9  
TECH Senior Member
 
2MuchRiceMakesMeSick's Avatar
 
Join Date: Apr 2004
Location: Texas
Posts: 6,157
Likes: 0
Received 0 Likes on 0 Posts
Default

You would have to do that on the server side. The vbulletin markup is not powerful enough. Try looking into cgi-bin (perl) for something like that.

EDIT: PHP would work also as long as the last server side parm ended in .jpg

Last edited by 2MuchRiceMakesMeSick; 08-27-2007 at 10:13 PM.
Old 08-28-2007, 02:46 PM
  #10  
TECH Senior Member
Thread Starter
iTrader: (42)
 
Brian2006's Avatar
 
Join Date: Dec 2004
Location: Tomball/Nacogdoches TX
Posts: 5,064
Likes: 0
Received 0 Likes on 0 Posts
Default

Originally Posted by 2MuchRiceMakesMeSick
You would have to do that on the server side. The vbulletin markup is not powerful enough. Try looking into cgi-bin (perl) for something like that.


EDIT: PHP would work also as long as the last server side parm ended in .jpg

That's what I tried:

Code:
<?php

$base="www.ledvault.com/Brian/Sigs";

#construct the sig. pages Array
$pages=array("sig1.html","sig2.html","sig3.html","sig4.html");

$n=count($pages);
$num=rand(0, ($n-1));
$page=$pages[$num];

$url=$base.$page;

print "<embed src='$url'>";
?>
Oh well
Old 08-28-2007, 03:41 PM
  #11  
'Bird Director
iTrader: (80)
 
y2k_ta's Avatar
 
Join Date: Dec 2001
Location: Central Indiana Honors: 4th grade spelling bee contestant
Posts: 12,824
Received 24 Likes on 16 Posts

Default

A random sig generator might throw up a red flag since that's a borderline animated sig (which isn't allowed on this site). I'd hate for you to do all that work, and then have all your sigs removed.
Old 08-29-2007, 10:40 AM
  #12  
TECH Senior Member
Thread Starter
iTrader: (42)
 
Brian2006's Avatar
 
Join Date: Dec 2004
Location: Tomball/Nacogdoches TX
Posts: 5,064
Likes: 0
Received 0 Likes on 0 Posts
Default

Originally Posted by y2k_ta
A random sig generator might throw up a red flag since that's a borderline animated sig (which isn't allowed on this site). I'd hate for you to do all that work, and then have all your sigs removed.

I don't understand why because it only changes everytime the page is refreshed. Doesn't take a page any longer to load than it did before.

Oh well, I gave up
Old 08-29-2007, 11:09 AM
  #13  
TECH Senior Member
 
2MuchRiceMakesMeSick's Avatar
 
Join Date: Apr 2004
Location: Texas
Posts: 6,157
Likes: 0
Received 0 Likes on 0 Posts
Default

Originally Posted by Brian2006
That's what I tried:

Code:
<?php

$base="www.ledvault.com/Brian/Sigs";

#construct the sig. pages Array
$pages=array("sig1.html","sig2.html","sig3.html","sig4.html");

$n=count($pages);
$num=rand(0, ($n-1));
$page=$pages[$num];

$url=$base.$page;

print "<embed src='$url'>";
?>
Oh well

No it has to be done on the server side... as in the server that is hosting the image
Old 08-29-2007, 02:12 PM
  #14  
On The Tree
iTrader: (2)
 
VeitSSki8701's Avatar
 
Join Date: Jun 2007
Location: Colonial Beach, VA
Posts: 155
Likes: 0
Received 0 Likes on 0 Posts
Default

i hope this works
Old 08-29-2007, 02:47 PM
  #15  
TECH Senior Member
iTrader: (10)
 
cyphur's Avatar
 
Join Date: Mar 2003
Location: North Texas
Posts: 8,009
Likes: 0
Received 0 Likes on 0 Posts
Default

A random signature generator would be fine, I think. Since it's only going to rotate what image it serves out each time the "signature" image is requested(which is only once per page load, hence no animation).


Why not change your output to something vBulletin can handle? Right now your output is html, you need to output something in img tags that vBulletin can parse.
Old 08-29-2007, 05:18 PM
  #16  
Banned
 
Asmodeus's Avatar
 
Join Date: Apr 2006
Location: Naperville, IL
Posts: 1,875
Likes: 0
Received 1 Like on 1 Post
Default

You can use something like the slogan generator I use, it's linked off another site that refreshes every 30 seconds to a new slogan.



Quick Reply: Random Sig Generator



All times are GMT -5. The time now is 01:56 PM.