Jump to content

IP Sig


eXPerience-XP

Recommended Posts

Create a PHP file and put this in it:

<?php phpinfo(); ?>

Scroll down to see if GD is enabled, if it isn't, then that is probably your main problem! :)

And you shouldn't put anything else in the .htaccess file except for what I mentioned above! :rolleyes:

Link to comment
Share on other sites


I just hate .htaccess only ave what you said to (with my own filename):

<Files siggy.jpg>

ForceType application/x-httpd-php

</Files>

and I made siggy.jpg:

<?php

Header ('Content-type: image/jpeg');

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');

// set the dimensions

$img_width = 240;

$img_height = 25;

// create the image

$image = imagecreate($img_width, $img_height);

// set the colours

$cool = imagecolorallocate($image, 81, 86, 96);

$black = imagecolorallocate($image, 0, 0, 0);

$white = imagecolorallocate($image, 255, 255, 255);

$red = imagecolorallocate($image, 255, 0, 0);

$grey = imagecolorallocate($image, 204, 204, 204);

$green = imagecolorallocate($image, 206, 129, 18);

$blue = imagecolorallocate($image, 0, 0, 255);

// set the background colour and border

imagefilledrectangle($image, 0, 0, $img_width, $img_height, $cool);

// set the font and print text

$font = 'Arial.ttf';

ImageTTFText ($image, 8, 0, 10, 17, $white, $font, "Your IP Address is... ".$REMOTE_ADDR);

// output and destroy

imagepng($image);

imagedestroy($image);

?>

and it just comes up with a blank page:

http://www.phazm.net/siggy.jpg

gah! :-P

Link to comment
Share on other sites

woot!

okay, adding the full path worked... I now have it working, but only under a .php file.. when I rename it to .jpg or .png and add the neccisary .htaccess file, it's just a blank page, with the php source in the source of the document.. without the .htaccess file telling it to act as if it were php, it displays the php source in the window, so it seems as if the file just isn't loading as if it was php.... suggestions?

(this board doesn't allow the .php extension for img tags :-/

Link to comment
Share on other sites

hey, a bit off topic maybe, but related... I want to add the CLIENT time in my sig, but I can't think of a way to get the client time in PHP, and I don't think I can use javascript in the image, can I? if no, what are my possible solutions, if any?

Link to comment
Share on other sites

woot!

okay, adding the full path worked... I now have it working, but only under a .php file.. when I rename it to .jpg or .png and add the neccisary .htaccess file, it's just a blank page, with the php source in the source of the document.. without the .htaccess file telling it to act as if it were php, it displays the php source in the window, so it seems as if the file just isn't loading as if it was php.... suggestions?

(this board doesn't allow the .php extension for img tags :-/

Glad it worked out...Please post your codes here so I can take a look at them...Is it the client time you want or the server time? I know its written CLIENT, just want to make sure! :)

Link to comment
Share on other sites

<Files siggy.jpg>

ForceType application/x-httpd-php

</Files>

...

and it just comes up with a blank page:

http://www.phazm.net/siggy.jpg

gah! :-P

If both siggy.jpg and siggy.php are in the same folder using the same .htaccess file, you must change the .htaccess file and input the following:

<Files siggy.jpg>
ForceType application/x-httpd-php
</Files>

<Files siggy.php>
ForceType application/x-httpd-php
</Files>

This way, it will parse both files! :)

Link to comment
Share on other sites

siggy.php ::

<?

Header ('Content-type: image/jpeg');

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');

$COUNT_FILE = "hitcounter.dat";

if (file_exists($COUNT_FILE)) {

$fp = fopen("$COUNT_FILE", "r+");

flock($fp, 1);

$count = fgets($fp, 4096);

$count += 1;

fseek($fp,0);

fputs($fp, $count);

flock($fp, 3);

fclose($fp);

} else {

echo "Can't find file, check '\$file'<BR>";

}

// set the dimensions

$img_width = 240;

$img_height = 25;

// create the image

$image = imagecreate($img_width, $img_height);

// set the colours

$cool = imagecolorallocate($image, 81, 86, 96);

$black = imagecolorallocate($image, 0, 0, 0);

$white = imagecolorallocate($image, 255, 255, 255);

$red = imagecolorallocate($image, 255, 0, 0);

$grey = imagecolorallocate($image, 204, 204, 204);

$green = imagecolorallocate($image, 206, 129, 18);

$blue = imagecolorallocate($image, 0, 0, 255);

// set the background colour and border

imagefilledrectangle($image, 0, 0, $img_width, $img_height, $blue);

// set the font and print text

$font = '/var/www/html/verdana.ttf';

// ImageTTFText ($image, 8, 0, 10, 17, $black, $font, "Your IP Address is... ".$visitors);

ImageTTFText ($image, 8, 0, 10, 17, $black, $font, "Views: ".$count);

// output and destroy

imagepng($image);

imagedestroy($image);

?>

END

This will just put a blue bar with a nice counter on there :) (if you have the hitcounter.dat file in the same dir)

example: http://www.phazm.net/signature/siggy.php

Link to comment
Share on other sites

crowman Posted on Nov 5 2003, 01:40 AM

  wow this sounds and looks very hard and confusing, I had a look at a site which was a tutorial for PHP and my god i think i will skip it

am wiv u crowman lol :)

Link to comment
Share on other sites

siggy.php ::

...

END

This will just put a blue bar with a nice counter on there :rolleyes:  (if you have the hitcounter.dat file in the same dir)

example:  http://www.phazm.net/signature/siggy.php

Mine's simpler:

<?php

Header ('Content-type: image/png');
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');

// create the image
$image = imagecreatefromgif("about-bg.gif");

// set the colours
$cool = imagecolorallocate($image, 87, 87, 87);
$black = imagecolorallocate($image, 0, 0, 0);
$white = imagecolorallocate($image, 255, 255, 255);
$red = imagecolorallocate($image, 255, 0, 0);
$grey = imagecolorallocate($image, 204, 204, 204);
$green = imagecolorallocate($image, 206, 129, 18);
$blue = imagecolorallocate($image, 0, 0, 255);

// counter
$viewss = file("views.txt");
$views = $viewss[0]; $views++;
$fp = fopen("views.txt", "w");
fwrite($fp, $views);
fclose($fp);
$counter = "GAMEHEAD200 || This sig has been viewed $views times!";

// define geek code
$geek = "-----BEGIN GEEK CODE BLOCK-----
Version: 3.1
GCS d+ s+:+ a---- C++ !U !P L+ E-- W+++$ N+ !o K- w++$
O--- M$ V? PS PE++ Y+ !PGP !t !5 !X !R tv+++ b++ DI !D
G e- h! r-- !y
------END GEEK CODE BLOCK------";

// line style line
$line = "________________________________________________________";

// set the font and print text
$font = 'font.ttf';

ImageTTFText ($image, 8, 0, 12, 45, $black, $font, $geek);
ImageTTFText ($image, 8, 0, 12, 148, $black, $font, $line);
ImageTTFText ($image, 8, 0, 12, 180, $black, $font, $counter);

// output and destroy
imagepng($image);
imagedestroy($image);

?>

Try to find out how it works! :) I'll try using yours tonight because right now I don't have the time...

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...