I've fixed that too on my current board.

And yes, I have set the post limit factor as a board configuration option now, so I don't have to edit the code.
Thanks for the feedback.
Code: Select all
<!-- <tr>
<td class="row1"><span class="gen">{L_WEBSITE}:</span></td>
<td class="row2">
<input type="text" class="post"style="width: 200px" name="website" size="25" maxlength="255" value="{WEBSITE}" />
</td>
</tr>
<tr>
<td class="row1"><span class="gen">{L_LOCATION}:</span></td>
<td class="row2">
<input type="text" class="post"style="width: 200px" name="location" size="25" maxlength="100" value="{LOCATION}" />
</td>
</tr>
-->
Code: Select all
if ($website != "")
{
echo "DIE, SPAMMER, DIE !!!\r\n";
$website = 'spammer - no URL website addresses allowed';
mysql_close(); ob_clean(); exit();
Ramon Fincken wrote: LVZ,
... but I think you might want to take a look at this one :
http://www.phpbb.com/phpBB/viewtopic.php?t=186683
LVZ wrote: File #2: includes/functions_validate.php --- about line 190, insert this kill code (start at echo):Code: Select all
if ($website != "") { echo "DIE, SPAMMER, DIE !!!\r\n"; $website = 'spammer - no URL website addresses allowed'; mysql_close(); ob_clean(); exit();
Code: Select all
if (isset($website) && ($mode == 'register'))
{
message_die (GENERAL_MESSAGE, 'Registration Attempt Ignored');
}
drathbun wrote: If you change functions_validate, as you suggest, then nobody - ever - can put in a web site.
LVZ wrote: Yes, no URLs - the simplest solution for my forums. I don't need anything more complicated.
Code: Select all
alter table phpbb_users
drop user_website;