Joe Belmaati wrote: No, but the upgrade is simple: Upload all the new files.
Warning: preg_replace(): Compilation failed: missing terminating ] for character class at offset 22 in /home/policeco/public_html/phpBB2/admin/admin_spamwords_log.php on line 241
Warning: preg_replace(): Compilation failed: missing terminating ] for character class at offset 31 in /home/policeco/public_html/phpBB2/admin/admin_spamwords_log.php on line 241
Warning: preg_replace(): Compilation failed: range out of order in character class at offset 21 in /home/policeco/public_html/phpBB2/admin/admin_spamwords_log.php on line 241
Warning: preg_replace(): Compilation failed: missing terminating ] for character class at offset 24 in /home/policeco/public_html/phpBB2/admin/admin_spamwords_log.php on line 241
There's a fix for this a couple of pages back.noth wrote: Warning: preg_replace(): Compilation failed: missing terminating ] for character class at offset 22 in /home/policeco/public_html/phpBB2/admin/admin_spamwords_log.php on line 241
Joe Belmaati wrote: OPEN
admin_spamwords.php
FIND
REPLACE WITHCode: Select all
$list = preg_split("#[^A-Za-z-\*]#", $HTTP_POST_VARS['massad']);
..basically, just add all the characters that you don't want to act as a delimiter for a new word/entry. Beware that the regex special characters need to be backslash escaped. Do a google search to find the special characters...Code: Select all
$list = preg_split("#[^A-Za-z-\*@]#", $HTTP_POST_VARS['massad']);
Code: Select all
warn_user();
ban_user();
Code: Select all
// warn_user();
// ban_user();
AND p.post_flagged <> " . TRUE . "
Fatal error: Cannot redeclare class emailer in /home/ftp/uncommon/www.uncommonforum.com/testversion/includes/emailer.php on line 28
promarky wrote: Hi,
This looks like a great Mod, however being a newbie I have a question.
For the SQL part at the beginning of the instructions, what do I do? I know for the rest you just modify the documents, etc. . .but the beginning just says SQL and doesn't tell me what to do with it?
Does anyone know how to get things started with this MOD?
Thanks,
Mark