• Limit Login attempts keeps giving an error
    and login page sometimes keeps loading, so can’t always login.
    Have deleted plug-in for the time being,
    but would like a solution to the problem.

    Kind regards,
    Mark Roberts

    message is: An error of type E_ERROR was caused in line 1487 of the file /data/sites/web/blueberryhillbe/www/wp-content/plugins/limit-login-attempts-reloaded/core/LimitLoginAttempts.php. Error message: Uncaught Error: Cannot use a scalar value as an array in /data/sites/web/blueberryhillbe/www/wp-content/plugins/limit-login-attempts-reloaded/core/LimitLoginAttempts.php:1487

Viewing 1 replies (of 1 total)
  • I run into the same problem:
    – error log with the error you posted
    – backend setting page was not visible caused by an error

    Fixed it, by delete all the entries of the plugin inside the options-table:

    This is how to view the entries (change the table name if you have a prefix):
    SELECT * FROM wp_options WHERE option_name LIKE 'limit_login_%'

    To delete all that entries (change the table name if you have a prefix):
    DELETE FROM wp_options WHERE option_name LIKE 'limit_login_%'

    The code that causes the error assume a certain structure in one of the option fields (limit_login_lockouts). I think its best to start with complete fresh options – so deleting all the options of that plugin is advisable.

Viewing 1 replies (of 1 total)
  • The topic ‘E_ERROR was caused in line 1487’ is closed to new replies.