How Do I?

Discussion in 'General Discussion' started by WhiT3MisT, Oct 1, 2005.

  1. WhiT3MisT

    WhiT3MisT Well-Known Member

    Age:
    33
    Posts:
    2,586
    Likes Received:
    0
    Joined:
    Mar 13, 2005
    Location:
    Wisconsin
    get a sig rotater?
     
  2. HBRedRider

    HBRedRider Well-Known Member

    Posts:
    2,038
    Likes Received:
    0
    Joined:
    Jul 1, 2005
  3. WhiT3MisT

    WhiT3MisT Well-Known Member

    Age:
    33
    Posts:
    2,586
    Likes Received:
    0
    Joined:
    Mar 13, 2005
    Location:
    Wisconsin
    not like that. like the mods have, where if you refresh the page i have a different sig on
     
  4. EcKo™

    EcKo™ Well-Known Member

    Posts:
    315
    Likes Received:
    0
    Joined:
    Aug 16, 2005
     
  5. mttviper

    mttviper Well-Known Member

    Age:
    34
    Posts:
    3,037
    Likes Received:
    0
    Joined:
    Jul 24, 2004
    Well, reedutopia used to be one, but it's no longer in commision. It takes php to do it. I have all the stuff from redutopia that IS legal, if you want it to use on your own.
     
  6. FrozenFlame

    FrozenFlame Well-Known Member

    Age:
    34
    Posts:
    1,235
    Likes Received:
    0
    Joined:
    Jul 12, 2004
    Location:
    South wales
    I use http://www.azupload.com/
    Very easy to do
    just make an account and make sure u have uploaded ur sigs to imageshack or photobucket. Stick the urls in and poof use the url they give you :D
     
  7. Gangstarrr

    Gangstarrr Well-Known Member

    Age:
    19
    Posts:
    2,662
    Likes Received:
    0
    Joined:
    Sep 3, 2005
    Location:
    United Kingdom
    thats what i was gonna suggest. i used to do that.
     
  8. Delusion.09

    Delusion.09 Well-Known Member

    Posts:
    187
    Likes Received:
    0
    Joined:
    Jul 13, 2005
    @ Ecko. Dood job, I'd +Rep but I don't have enough posts.
     
  9. SwAT

    SwAT Well-Known Member

    Posts:
    2,689
    Likes Received:
    0
    Joined:
    May 9, 2005
    Location:
    Connecticut, USA
    i have a sig rotator it really doesnt matter as long as you get a host that you can upload image files too and use .php. For this to work in the main area of your files in a foler called images and and in that same foler (not images) put this .php code

    Code:
    <?php
    
    // Header info, forces no cache and image type of GIF
    header("Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0");
    header("Expires: Thu, 19 Nov 1981 08:52:00 GMT");
    header("Pragma: no-cache");
    header("Content-Type: image/gif");
    
    // Define the subdirectory to where we store the images..
    $dir = "images";
    
    // Set a random seed up
    srand((double)microtime()*1000000);
    
    // Set our counter to 0
    $i = 0;
    
    // Open the images directory
    $dirHandle = opendir($dir);
    
    // Read in image filenames
    while(($im = readdir($dirHandle)))
    {
        // Don't read in the 2 directories ".." and "."
        if($im != ".." && $im != ".")
        {
            // Add that image filename to the array
            $image[$i] = $im;
            // Increment our counter
            $i++;
        }
    }
    // Close the directory handle
    closedir($dirHandle);
    // Create a random number from 0 to the size of the array
    $n = rand(0,(count($image)-1));
    
    // Read in a file and output it to the output buffer..
    if(!readfile($dir."/".$image[$n]))
    
    // If we can't for some reason use the error.gif file in the error directory
    readfile($dir."error/error.gif");
    ?> 
    
    if you need help i have one that im not using or i can help you set up your own

    edit: i didn't write that code
     
  10. mkjt88

    mkjt88 Well-Known Member

    Posts:
    45
    Likes Received:
    0
    Joined:
    Aug 28, 2005
    I think he wants a random sig changer. There is a code for it i no.
     
  11. SwAT

    SwAT Well-Known Member

    Posts:
    2,689
    Likes Received:
    0
    Joined:
    May 9, 2005
    Location:
    Connecticut, USA
    yes there is i just posted it :P
     

Share This Page