Page 1 of 1
[SOLVED] Missing fields in Security module

Posted:
Tue Jul 11, 2006 5:53 am
Author: atomhead
[flash=,:akof7yn2]http://discordiaguild.org/images/security.jpg[/flash:akof7yn2]
Same thing happens with the default subice template.
Latest version of IM (as per DL section), patched to 2.0.21.
Also, disabling the sending of PMs does not work. I still get them. It's on for the screenshot but that is just a test.
Re: Missing fields in Security module

Posted:
Tue Jul 25, 2006 8:33 am
Author: atomhead
bump.
Re: Missing fields in Security module

Posted:
Tue Jul 25, 2006 11:31 am
Author: Teelk
Download the phpBB Security update again and upload all files from the root directory in the download package(don't use premodded). Before you do this though, delete the includes directory, as you don't want to copy over your phpbb_security.php file. It definately looks like some of the files weren't updated.
Re: Missing fields in Security module

Posted:
Tue Jul 25, 2006 12:59 pm
Author: atomhead
Thanks for the response.
I tried that, and am still having the problem. <img>
I noticed my phpbb_security is set to the default values and I'm pretty sure I changed them a bit. I might have forgotten to change the values back. However I can't remember what I chose during install. Is there any way to check what I have set in the DB?
Re: Missing fields in Security module

Posted:
Tue Jul 25, 2006 2:02 pm
Author: Teelk
Look for the entry sec_admin in your config table, it's value should be what you set admins to and sec_mods entry's value should be the one for moderators.
The values of those two columns also exist as columns themselves. The values of which are the numbers you can change through the ACP.
Re: Missing fields in Security module

Posted:
Tue Jul 25, 2006 2:50 pm
Author: atomhead
Thanks, I just checked those against what's in the php file and it's fine. So I'm stumped. <img>

Posted:
Thu Jul 27, 2006 3:28 am
Author: Kate
Do this code change:
- Code: Select all
#-----[ OPEN ]--------------------------------------------- # language/lang_english/lang_main.php ##-----[ FIND ]---------------------------------------------# $lang['PS_blocked_line2'] = '<a>Protected</a> by phpBB Security ÂÂÂ © <a href="http]---------------------------------------------# $lang['PS_blocked_line2'] = '<a>Protected</a> by phpBB Security ÂÂÂ © <a>phpBB-Tweaks</a>'; ##-----[ FIND ]---------------------------------------------# $lang['PS_backup_time'] = 'Time Every Day To Complete Backup';$lang['PS_backup_total'] = 'Clean Avaliable Backups: %N%'; ##-----[ AFTER, ADD ]---------------------------------------------# #==== Added in 1.0.3$lang['PS_modcp_verify'] = 'Please verify your password.';$lang['PS_modcp_verify_fail'] = 'Your Password Was Incorrect, Please Press Back & Try Again.';$lang['PS_guest_max'] = 'Max allowed sessions per guest IP.';$lang['PS_guest_max_exp'] = 'This is helpful for people who DDoS sites & get through. With alot of programs, all the guests will have the same IP. This will eliminate that problem.';$lang['PS_pass_match'] = 'Password Match';$lang['PS_pass_match_exp'] = 'If this is set to enabled, users passwords will not be allowed to be the same as their usernames when they make accounts.';$lang['PS_pass_min_length'] = 'Minimum Pass Length';$lang['PS_pass_min_length_exp'] = 'If this is set to enabled, then users will have to make passwords longer than what you set it to below.';$lang['PS_pass_length'] = 'Minimum Characters Allowed';$lang['PS_pass_force'] = 'It appears this is your first visit since the admins have forced all users to change their passwords. So please click %shere%s and update your password. Thanks.';$lang['PS_pass_force_error'] = 'You <b>have</b> to update your password. Please press back & try again.';$lang['PS_pass_length_error'] = 'Sorry, there is a %s minimum character requirement for passwords.';$lang['PS_pass_match_error'] = 'Sorry, your password can not be the same as your username.';$lang['PS_pass_error'] = 'You cant force a minimum password length and not have a minimum length set.';
Re: Missing fields in Security module

Posted:
Thu Jul 27, 2006 6:03 am
Author: atomhead
That did the trick. Thanks so much for the help. <img>