PDA

View Full Version : Mandatory comment fields


firequall
09-29-2005, 03:05 AM
I'm not all that great with PHP, so I'm asking you guys how I would go about making the email field in the comments mandatory before posting?

Also, is it possible/is there a hack to block certain IPs from posting comments?

GeoS
09-29-2005, 08:07 AM
Blocking IPs shouldnt be useful as PP 1.5 will have comments moderation queue.

raminia
09-29-2005, 08:13 AM
mandatory fields is a nice thing to have

firequall
09-29-2005, 06:49 PM
Blocking IPs shouldnt be useful as PP 1.5 will have comments moderation queue.Okay, well until then is there something that will block IPs from posting until PP 1.5 is released?

mandatory fields is a nice thing to haveSo how do I implement them on my site?

raminia
09-30-2005, 04:51 PM
right now only the message field is mandatory you can do the same inside index.php for email or names

Nemesis
09-30-2005, 10:50 PM
Drop this into your .htaccess file:

order allow,deny
deny from 123.456.789.00
allow from all

Replace 123.456.789.00 with the IP you want to block.