Log in

View Full Version : Kill Attachments in Signatures


Sean335
07-29-2004, 10:00 PM
Replaces signature images using your board's attachements with a message telling them to stop.

open includes/functions_showthread.php
find: (on lines 517 and 518)
$post['signature'] = parse_bbcode($post['signature'], 'nonforum', $vboptions['allowsmilies']);
$sigcache["$post[userid]"] = $post['signature'];
and add above it:
$post['signature'] = preg_replace("/\(.*?)\/attachment.php(.*?)\[\/img\]/i", "[i]attached pictures not allowed in signatures.", $post['signature']);

Using this method will block any img tag that uses attachment.php, if you want to block just ones that use your site, use something like:
$post['signature'] = preg_replace("/\(.*?)www.3.8mustang.com\/forum\/attachment.php(.*?)\[\/img\]/i", "[i]attached pictures not allowed in signatures.", $post['signature']);

MindTrix
07-31-2004, 12:04 AM
Nifty little add on mate thank you. I think some people would request too see a screenshot of this in action also.

Sean335
07-31-2004, 12:46 AM
Nifty little add on mate thank you. I think some people would request too see a screenshot of this in action also.Thanks. There's not much to see, but I posted a screen shot.

Koutaru
07-31-2004, 02:13 AM
Thanks :) if I have any problems with users, I'll definately install this :)

Zachery
07-31-2004, 02:23 AM
Thanks :) if I have any problems with users, I'll definately install this :)
There is also the option of just not allowing dynamic images.

MindTrix
07-31-2004, 05:12 AM
There is also the option of just not allowing dynamic images.
some hacks require this to be turnt on though, such as the signature upload hack. This hack is a nice idea so lets keep on topic :rolleyes:

Martyjp
08-08-2004, 08:33 AM
Thanks, needed this :)

Quelyn
08-18-2004, 06:19 PM
Clicked install. Thanks, this is a nice simple one.

vau7
08-19-2004, 03:12 PM
Whats so bad if an user would take an attachment in the sig?

Sean335
08-20-2004, 12:51 AM
Whats so bad if an user would take an attachment in the sig?bandwidth, database load, messes with the counters. My site just isn't a sig host, and too many people started using attachments, so I wrote that line.

b4ne
08-20-2004, 05:28 AM
I may install this if I cannot find a hack that let's me restrict teh signatur wide and high and size ...

anyboy knows of a hack like that ?

teksigns
08-20-2004, 12:43 PM
how would i change that line to show the message for any signature
with any [img] tags .....?

we do not allow images at all in signatures

Sean335
08-21-2004, 09:16 PM
I may install this if I cannot find a hack that let's me restrict teh signatur wide and high and size ...

anyboy knows of a hack like that ?
you could try something like $post['signature'] = preg_replace("/\<img src=\"(.*?)\"\>/i", "<img onload=\"if(this.width > 500 || this.height > 200) {this.src='http://www.mysite.com/badimage.gif';}\" src=\"$1\">", $post['signature']); after line 518 of functions_showthread.php

(line 518 should be $post['signature'] = parse_bbcode($post['signature'], 'nonforum', $vboptions['allowsmilies']);). This will only work on javascript enabled browsers, though.

Sean335
08-21-2004, 09:18 PM
how would i change that line to show the message for any signature
with any [img] tags .....?

we do not allow images at all in signaturesthat option is built into your admincp as 'Allow [IMG] Code in Signatures' under User Profile Options.