H
HaHa
Guest
Any out there, was curious what type of sig someone could do for me.
Any out there, was curious what type of sig someone could do for me.
lol i like that one hes sooo full of **** its coming out his eyes
9 out of 10???????? i hope those are just the people that dont know him!
lol whats that make me if i know better and still open themWell, at the rate we get new players to Siege, there's always gonna be at least ONE person who doesn't know him, that might be foolish enough to click on one of his links! The other 9 of us know better.![]()
It should include gerbling, beer, poo, kage’s mom, and check this link out.Any out there, was curious what type of sig someone could do for me.
and we have a winnerMy offering:
![]()
There is no Stratics Plus right now...but the new forum has some built in features that Plus used to have exclusively.You have to be a stratics plus user. otherwise you only get one
Kages mom ...... mmmmmmmmIt should include gerbling, beer, poo, kage’s mom, and check this link out.
I think this is the best hehe![]()
A few alterations as per Brook's suggestions!
Remember when i made one for myself when we were in BG? God that was a good one... why the hell does photobucket have rules against that anway..a sig for u? thats scary![]()
aww im wayyy sexier than that pancake gimme some cred shesh
LOL.. You look like a pimp!
![]()
Can you edit out the mysts mom comment on this one? I try not to offend anyone ya know?
I seen some rotating sigs on other php boards. But you need to have Geek skills to do it. I did a google search and found this scriptThere is no Stratics Plus right now...but the new forum has some built in features that Plus used to have exclusively.You have to be a stratics plus user. otherwise you only get one
-Skylark
Step 1)
Gather your collection of sigs.
Step 2)
Put them all in one folder on your webserver.
Step 3)
Cut and paste the below code in tyour favourite text editor:
<?php
*/
$extList = array();
$extList['gif'] = 'image/gif';
$extList['jpg'] = 'image/jpeg';
$extList['jpeg'] = 'image/jpeg';
$extList['png'] = 'image/png';
// You don't need to edit anything after this point.
// --------------------- END CONFIGURATION -----------------------
$img = null;
if (substr($folder,-1) != '/') {
$folder = $folder.'/';
}
if (isset($_GET['img'])) {
$imageInfo = pathinfo($_GET['img']);
if (
isset( $extList[ strtolower( $imageInfo['extension'] ) ] ) &&
file_exists( $folder.$imageInfo['basename'] )
) {
$img = $folder.$imageInfo['basename'];
}
} else {
$fileList = array();
$handle = opendir($folder);
while ( false !== ( $file = readdir($handle) ) ) {
$file_info = pathinfo($file);
if (
isset( $extList[ strtolower( $file_info['extension'] ) ] )
) {
$fileList[] = $file;
}
}
closedir($handle);
if (count($fileList) > 0) {
$imageNumber = time() % count($fileList);
$img = $folder.$fileList[$imageNumber];
}
}
if ($img!=null) {
$imageInfo = pathinfo($img);
$contentType = 'Content-type: '.$extList[ $imageInfo['extension'] ];
header ($contentType);
readfile($img);
} else {
if ( function_exists('imagecreate') ) {
header ("Content-type: image/png");
$im = @imagecreate (100, 100)
or die ("Cannot initialize new GD image stream");
$background_color = imagecolorallocate ($im, 255, 255, 255);
$text_color = imagecolorallocate ($im, 0,0,0);
imagestring ($im, 2, 5, 5, "IMAGE ERROR", $text_color);
imagepng ($im);
imagedestroy($im);
}
}
?>
Save it with whatever name you like with the extension of .php
Step 4)
Point your signature to http://www.yourwebserver.com/rotate.php
Actually, thats not true. I have rotating sigs, you just have to use php code.Currently you can't, which is why I'm using my 'Petra Fyde' sig everywhere instead of my 'Molly Fyde' sig here.
It's on the list of things to ask for when the craziness of getting everything actually working again is over.