Popularity
2.0
Growing
Activity
0.0
Stable
24
21
5

Programming language: PHP
License: GNU General Public License v3.0 only
Latest version: v1.0.0

Firegento alternatives and similar libraries

Based on the "Composer Repositories" category.
Alternatively, view Firegento alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Firegento or a related project?

Add another 'Composer Repositories' Library

README

<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section --> All Contributors <!-- ALL-CONTRIBUTORS-BADGE:END -->

FireGento_Customer

This extension extends the core functionality of the customer module of Magento. It is possible to temporarily lock the user account after an number of failed login attempts during specified period of time. Additionally it is possible to check the complexity and length of the customer password when an account is created.

Branches

  • master => stable version of the extension
  • develop => contains new features

Facts

Description

This extension extends the core functionality of the customer module of Magento. The features of this extension are:

  • Customers are temporarily deactivated if wrong password is entered too often.
  • Password can be validated and rejected (password strength, password length, ..)

The extension can now be configured: System -> Configuration -> Customer -> Customer Configuration -> Password

The following extra options are available:

  • Lock after x attempts: The number of allowed failed login attempts before the customer account is locked
  • Lock attempt span: The time period within which the above attempts are allowed to be made
  • Lock time: The number of seconds for which the account will be locked
  • Check minimum Password length: Should the password length be checked (When the customer creates an account)
  • Minimum Password length: The minimum allowed password length. If this value is set below or equal to zero the default value (8) will be used.
  • Check Password complexity: Check password against the default complexity definition, where it should contain at least one uppercase character, one lowercase character and one digit.

[Customer Password Configuration](docs/img/customer_password_configuration.png "Customer Password Configuration")

Requirements

  • PHP >= 5.3.0

Compatibility

  • Magento >= 1.6

Installation Instructions

Install the files using one of the following methods:

Via modman

  • Install modman
  • Use the command from your Magento installation folder: modman clone https://github.com/firegento/firegento-customer.git

Via composer

  • Install composer
  • Create a composer.json into your project like the following sample:
{
    ...
    "require": {
        "firegento/customer":"*"
    },
    "repositories": [
        {
            "type": "composer",
            "url": "http://packages.firegento.com"
        }
    ],
    "extra":{
        "magento-root-dir": "./"
    }
}

  • Then from your composer.json folder: php composer.phar install or composer install

Manually

You can copy the files from the 'src' folder of this repository to the same folders of your installation

Once the files are installed:

  • Clear the cache, logout from the admin panel and then login again.

You can now configure the extension via System -> Configuration -> Customer -> Customer Configuration -> Password

Uninstallation

  1. Remove all extension files from your Magento installation
  2. Run the following sql script in your database:
DELETE FROM eav_attribute WHERE attribute_code = 'customer_active';
DELETE FROM eav_attribute WHERE attribute_code = 'customer_logins_failed';
DELETE FROM eav_attribute WHERE attribute_code = 'customer_last_login_failed';

Support

If you have any issues with this extension, open an issue on GitHub.

Contribution

Any contribution is highly appreciated. The best way to contribute code is to open a pull request on GitHub.

Contributors ✨

Thanks goes to these wonderful people (emoji key):

<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --> <!-- prettier-ignore-start --> <!-- markdownlint-disable --> Rouven Alexander Rieker💻 Mathis Klooß💻 Latenzio Gonzales💻 Vinai Kopp💻 Andre Flitsch💻 Matthias Zeis💻 Christian Münch💻 Kevin Krieger📖

<!-- markdownlint-enable --> <!-- prettier-ignore-end --> <!-- ALL-CONTRIBUTORS-LIST:END -->

This project follows the all-contributors specification. Contributions of any kind welcome!

Developer

FireGento Team

GNU General Public License, version 3 (GPLv3)

Copyright

(c) 2013 - 2020 FireGento Team


*Note that all licence references and agreements mentioned in the Firegento README section above are relevant to that project's source code only.