Changeset 448467
- Timestamp:
- 10/07/2011 02:58:50 PM (14 years ago)
- Location:
- limit-login-attempts/trunk
- Files:
-
- 3 edited
-
limit-login-attempts-admin.php (modified) (1 diff)
-
limit-login-attempts.php (modified) (2 diffs)
-
readme.txt (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
limit-login-attempts/trunk/limit-login-attempts-admin.php
r428626 r448467 211 211 /* Should we clear log? */ 212 212 if (isset($_POST['clear_log'])) { 213 update_option('limit_login_logged', array());213 limit_login_store_array('logged', array()); 214 214 limit_login_admin_message(__('Cleared IP log', 'limit-login-attempts')); 215 215 } -
limit-login-attempts/trunk/limit-login-attempts.php
r428626 r448467 72 72 */ 73 73 74 limit_login_setup();74 add_action('init', 'limit_login_setup'); 75 75 76 76 … … 810 810 return $a; 811 811 812 $a = array(); 813 $autoload = limit_login_is_array_autoload($array_name) ? 'yes' : 'no'; 814 add_option($real_array_name, $a, '', $autoload); 815 816 return $a; 812 return array(); 817 813 } 818 814 -
limit-login-attempts/trunk/readme.txt
r428626 r448467 11 11 12 12 THIS IS A BETA VERSION! 13 14 Additional security features for many parts of user handling: login, signup, password reset and more. 13 15 14 16 Limit the number of login attempts possible both through normal login as well as using auth cookies. … … 85 87 Truly advanced users can edit the 'disable_pwd_reset' entry in the serialized array. 86 88 89 Plugin options are stored in `limit_login_options` option in the wordpress options table. You can remove this in a default setup using: `DELETE FROM wp_options WHERE option_name = 'limit_login_options'`. PLEASE BE CAREFUL OR YOU WILL SCREW UP YOUR WORDPRESS INSTALL! 90 91 Truly advanced users can edit the 'disable_pwd_reset' entry in the serialized array of course. 92 87 93 == Screenshots == 88 94 … … 113 119 * Update screenshots 114 120 * Update site 121 122 * track registrations 123 * track last login 115 124 116 125 == Change Log == … … 123 132 * Only autoload the necessary option table entries 124 133 * Log time of last lockout for each IP in log; keep track of last increase + last clear for statistics 125 * Forward-merged changes from versions 1.5 - 1.6. 1134 * Forward-merged changes from versions 1.5 - 1.6.2 126 135 * Move translations to separate directory 127 136 * Updated Swedish translation … … 148 157 * filter registration error messages to avoid possible way to brute force find user login name 149 158 * list of privileged users show which login names can be discovered from user displayname, nickname or "url name"/nicename 159 160 = 1.6.2 = 161 * Fix bug where log would not get updated after it had been cleared 162 * Do plugin setup in 'init' action 163 * Small update to Spanish translation file, thanks to Marcelo Pedra 164 * Tested against WordPress 3.2.1 165 166 = 1.6.1 = 167 * (WordPress 3.0+) An invalid cookie can sometimes get sent multiple times before it gets cleared, resulting in multiple failed attempts or even a lockout from a single invalid cookie. Store the latest failed cookie to make sure we only count it as one failed attempt 168 * Define "Text Domain" correctly 169 * Include correct Dutch tranlation file. Thanks to Martin1 for noticing. Thanks again to Bjorn Wijers for the translation 170 * Updated POT file for this version 171 * Tested against WordPress 3.1-RC4 150 172 151 173 = 1.6.0 =
Note: See TracChangeset
for help on using the changeset viewer.