A Flash Developer Resource Site

Results 1 to 10 of 10

Thread: Where are these footers coming from ?

  1. #1
    ¿
    Join Date
    Jan 2003
    Location
    UK
    Posts
    45

    Where are these footers coming from ?

    Hi,

    They're appearing everywehre, these footers with that sign that tells you your IP, Browser and ISP. Where are they coming from?!?!

    They annoying me now....


  2. #2
    Maverick Hunter jcsco0's Avatar
    Join Date
    Aug 2001
    Location
    AU
    Posts
    189
    Ah yes, i would also like to know this. They are quite creepy, although they are very wrong if you are behind a proxy.
    the sig... its broken...

  3. #3
    Information Architect Subway's Avatar
    Join Date
    Feb 2000
    Location
    Switzerland
    Posts
    4,779
    I even use this "technology" as a fundament for a website design: http://www.rogotworld.com/main.php (The IP on the top part)

    Only thing you have to do different for a footer is to tell php to php .txt files so you can use it on forums as a footer.

    Fredi
    Mind Share Projects [ <- my latest projects ] [ my splash page -> ] Fredi Bach
    OS X Code (r,s) [ my Mac, web 2.0 and programming blog ]
    Not A Blog [ my personal weblog ]
    jMe Feed Aggregator [ my latest most famous project ]
    Web Command Line [ use the web like a real geek ]

  4. #4
    ¿
    Join Date
    Jan 2003
    Location
    UK
    Posts
    45
    Cool,

    No one knows yet though, they must be getting out from somewhere ?

  5. #5
    Information Architect Subway's Avatar
    Join Date
    Feb 2000
    Location
    Switzerland
    Posts
    4,779
    That's how I did it:

    PHP Code:
    <?php

        $text 
    $_SERVER['REMOTE_ADDR'];
        
    $chars strlen($text);
        
    $fontsize 50;
        
    $fontfile "/home/rogotwld/public_html/redesign_pics/ArialHB.ttf";
        
        
    $im imagecreatefromjpeg ('/home/rogotwld/public_html/redesign_pics/m3_template.jpg');
        
    imagealphablending ($imtrue);
        
        
    $c_outline imagecolorresolvealpha ($im18818818899);
        
    $c_text imagecolorresolvealpha ($im2372372370);
        
        if (
    $chars == 14){     
            
    $startx 120;
            
    $starty 40;
        } else if (
    $chars == 15){     
            
    $startx 102;
            
    $starty 40;
        } else if (
    $chars == 13){     
            
    $startx 135;
            
    $starty 40;
        } else if (
    $chars == 12){     
            
    $startx 157;
            
    $starty 40;
        } else if (
    $chars == 11){     
            
    $startx 179;
            
    $starty 40;
        } else if (
    $chars == 10){     
            
    $startx 202;
            
    $starty 40;
        } else if (
    $chars == 9){     
            
    $startx 225;
            
    $starty 40;
        } else if (
    $chars == 8){     
            
    $startx 248;
            
    $starty 40;
        } else if (
    $chars == 7){     
            
    $startx 271;
            
    $starty 40;            
        } else if (
    $chars == 16){     
            
    $startx 80;
            
    $starty 40;
        } else{     
            
    $startx 60;
            
    $starty 40;
        }
        
        for (
    $ox = -1$ox <= 1$ox++) {
            for (
    $oy = -1$oy <= 1$oy++) {
                
    imagefttext ($im$fontsize0$startx+$ox$starty+$oy$c_outline$fontfile$text, array());
            }
        }
        
        
    imagefttext ($im$fontsize0$startx$starty$c_text$fontfile$text, array());
        
        
    header("Content-type: image/jpeg");
        
    imagejpeg($imNULL75);
        
    ?>
    All those if else for the positioning could be done easyer, but I was to lazy to make perfect code. (And for whatever reson, the function to calculate the width was not working)

    Fredi
    Mind Share Projects [ <- my latest projects ] [ my splash page -> ] Fredi Bach
    OS X Code (r,s) [ my Mac, web 2.0 and programming blog ]
    Not A Blog [ my personal weblog ]
    jMe Feed Aggregator [ my latest most famous project ]
    Web Command Line [ use the web like a real geek ]

  6. #6
    Follower squidlips's Avatar
    Join Date
    Oct 2001
    Location
    Rockhampton, Queesland, Australia
    Posts
    664
    Got an example/link?
    subgenius.com

  7. #7
    Information Architect Subway's Avatar
    Join Date
    Feb 2000
    Location
    Switzerland
    Posts
    4,779
    Originally posted by squidlips
    Got an example/link?
    From the site I've posted above.

    The dynamic jpeg: http://www.rogotworld.com/redesign_p...dynamic_ip.php

    The template jpeg: http://www.rogotworld.com/redesign_pics/m3_template.jpg

    Fredi
    Mind Share Projects [ <- my latest projects ] [ my splash page -> ] Fredi Bach
    OS X Code (r,s) [ my Mac, web 2.0 and programming blog ]
    Not A Blog [ my personal weblog ]
    jMe Feed Aggregator [ my latest most famous project ]
    Web Command Line [ use the web like a real geek ]

  8. #8
    Follower squidlips's Avatar
    Join Date
    Oct 2001
    Location
    Rockhampton, Queesland, Australia
    Posts
    664
    Very unique... did you do that out of interest or take insparation from another site etc?
    subgenius.com

  9. #9
    Information Architect Subway's Avatar
    Join Date
    Feb 2000
    Location
    Switzerland
    Posts
    4,779
    It was just popping into my mind, like thousands of other things each day. (Most of them are just a waste of time, but that's how I work)

    Fredi
    Mind Share Projects [ <- my latest projects ] [ my splash page -> ] Fredi Bach
    OS X Code (r,s) [ my Mac, web 2.0 and programming blog ]
    Not A Blog [ my personal weblog ]
    jMe Feed Aggregator [ my latest most famous project ]
    Web Command Line [ use the web like a real geek ]

  10. #10
    is not a good designer. No-Tec's Avatar
    Join Date
    Aug 2002
    Posts
    1,349
    thats cool, i always wondered how the did dynamic pics.
    maybe.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center