there is no Customer Account Locking possible, in a default OpenCart at least,
and so no Database Field, where such could be changed, as I am aware of.
You might therefore better get in touch with Joocart about this, I assume ...
Ernie
I am no longer active at the Forum. Please do NOT send me Personal Mails,
they will no longer be replied to.
My Github OC Site: https://github.com/IP-CAM
3'780 FREE OC Extensions, on the World's largest Github OC Repository Archive Site.
In your admin - > systems - > settings - > edit settings page. As for the time interval between the last and the next attempt, it is set automatically to one hour in your catalog/controller/account/login.php file:
if ($login_info && ($login_info['total'] >= $this->config->get('config_login_attempts')) && strtotime('-1 hour') < strtotime($login_info['date_modified'])) {
The most generated errors being found on Opencart forum originates from contributed programming. The increased post counters are caused by redundancies of the same solutions that were already provided prior.
Regards,
Straightlight
Programmer / Opencart Tester
Code: Select all
// Check if customer has been approved.
$customer_info = $this->model_account_customer->getCustomerByEmail($this->request->post['email']);
if ($customer_info && !$customer_info['status']) {
$this->error['warning'] = $this->language->get('error_approved');
Crystal Light Centrum Taiwan
Extensions: MailQueue | SUKHR | VBoces
“Data security is paramount at [...], and we are committed to protecting the privacy of anyone who is associated with our [...]. We’ve made a lot of improvements and will continue to make them.”
When you know your life savings are gone.
After 5 (default) invalid attempts the account becomes locked for 1 hour(default), in admin customers/customers the "unlock" button becomes active in the dropdown under Action to the right of customer.
When this button is pressed the relevant entry in the customer_login table is deleted, and the customer account is unlocked.
This only seems to happen when invalid login attempts are made, logging in with correct credentials does not get logged in the customer_login table
So you should be able to delete all entries in the customer_login table which will unlock all accounts
Always make a backup of db BEFORE making any edits to it (just in case)
Maybe someone else can also confirm this ?
Users browsing this forum: No registered users and 30 guests