# Paymenter Login History
This is a login history extension for Paymenter 1.4.7.
Installation location /var/www/paymenter/extensions/Others/LoginHistory
## Features
## Deletion Cycle
- Maintained compatibility with Laravel
## Server Cron Required
Either the official Paymenter cron or the Laravel scheduler cron must be running. Paymenter Officially Recommended Cron:
If you are using a standard Laravel scheduler, the following is also possible:
This is a login history extension for Paymenter 1.4.7.
Installation location /var/www/paymenter/extensions/Others/LoginHistory
## Features
- Saves records of successful logins
- Login failures are also recorded.
- Displays in the Admin Panel under
System > Login History - Sets the deletion cycle in the Admin Panel under
System > Login History Settings - Scheduler-based automatic cleanup
## Deletion Cycle
- Default: 30 days
- Set to
0for permanent retention without automatic deletion - Automatically deletes login records after the set retention period has expired.
- Enhanced to ensure deletion is executed within the default Paymenter cron job,
php artisan app:cron-job.
- Maintained compatibility with Laravel
schedule:run environments.## Server Cron Required
Either the official Paymenter cron or the Laravel scheduler cron must be running. Paymenter Officially Recommended Cron:
Bash:
* * * * * cd /var/www/paymenter && php artisan app:cron-job >> /dev/null 2>&1
Bash:
* * * * * cd /var/www/paymenter && php artisan schedule:run >> /dev/null 2>&1
