PDA

View Full Version : vB problem: Attaching images to signature.


Kedmyster
07-12-2003, 04:03 PM
My members at Devay.com (http://www.devay.com) complained they can't attach an image to their signature, but I of course can.
I don't know what is the problem so I wondered if someone ever came accross with this problem.
As well, I installed a Signature Check Hack, so members wont be able to insert images above the dimensions I chosed.

If anyone know what to do and can share his knowledge with me i'll be greatful ;)

thanks in advance!
-Kedmyster
-Devay.com (http://www.devay.com)

Kedmyster
07-13-2003, 12:46 PM
Anyone?

Gary King
07-14-2003, 12:00 AM
Does uninstalling that hack fix the problem?

Kedmyster
07-14-2003, 09:25 AM
Well, I didn't try it yet but i'll check.
Thanks!

***EDIT***
I just tried and it didn't work =\

Gary King
07-14-2003, 01:55 PM
I just visited your board, and things look fine for me now.

Kedmyster
07-14-2003, 08:01 PM
Well, try to register and attach a signature, you'll get it then.

Gary King
07-14-2003, 08:33 PM
No thanks then. You could take a screenshot.

Kedmyster
07-15-2003, 01:27 PM
there's nothing to screen shot, it just doesn't give you to attach a sig.
Well, it does allow you but hen it says "the image is not found" or something.

Gary King
07-15-2003, 01:57 PM
Then take a screenshot of the message received. Please refer to the last line in my signature as well.

DaveRobbo
07-15-2003, 01:57 PM
Then it sounds like you are using the wrong vB code in your signature.

Show us here the code you are using ... or if the sig shows a red cross where the image should be, right-click it, choose "properties" .. and see what URL it THINKS the picture should be

Gary King
07-15-2003, 02:10 PM
I think it's the signature check hack that is causing the problems still. Try replacing the files that you modified for that hack, with originals and see what happens.

Kedmyster
07-15-2003, 03:31 PM
you were right, I just re-check and the hack does made that error.
here is the part -

function size_check($image) {


global $maxsigheight, $maxsigwidth;

//parse_all img tags

$image_xy=@getimagesize($image);

if ($image_xy==NULL)
{
return "Image not found";
}
else {
//ok, the image exists! Lets do it eh!!
$im_width=$image_xy[0];
$im_height=$image_xy[1];

if ($im_width > $maxsigwidth)
{
return "Sorry, image size exceeds maximum width of ".$maxsigwidth.".";
}

if ($im_height > $maxsigheight)
{
return "Sorry, image size exceeds maximum height of ".$maxsigheight.".";
}

}


return "" . $image . "";
}


It always goes to the
if ($image_xy==NULL)
{
return "Image not found";
}

the error is "Image not found" if I didn't clarify that already.
I don't know if someone had mention it on the support thread so i'll go check now and will edit my post later to let you know if more help is needed.

Thanks again if someone knows how to fix it