PDA

View Full Version : send post with images for validation


almqdad
09-23-2005, 02:18 PM
Hi

automatically send post with images to validation

this is very helpful to stop member who insist to post sex images

is that possible

Andreas
09-23-2005, 02:19 PM
Yes, it's possible.

almqdad
09-23-2005, 02:21 PM
hello

waw

that is great when can i see that true

Andreas
09-23-2005, 02:26 PM
Really easy one

In functions_newpost.php

FIND

// ### DUPE CHECK ###


ABOVE that ADD

if (strpos(strtolower($post['message']), '[img]') !== false)
{
$post['visible'] = 0;
}


That should send all Posts that have [img] Tags into moderation.

almqdad
09-23-2005, 03:44 PM
Thank KirbyDE

I will try that , but what if the pic is alink some thing like this

http://www.roshn.com/vb/uploaded/Abu-Dhabi10.jpg

is there a way to send it to moderation

pic could be of different ext.

jpg
jepg
gif
png

and more

i hope you can do some thing about that

Andreas
09-23-2005, 03:55 PM
That would be more difficult.
Too much work for me ATM, sorry.

T3MEDIA
10-09-2005, 06:53 PM
Now this is cool. You can do so much with that code! Thanks.