georgringer/login-link

Fast way to login as different backend or frontenduser by generating a link including a one-time token within the backend.

1.0.1 2023-06-05 18:03 UTC

This package is auto-updated.

Last update: 2024-04-03 14:10:30 UTC


README

This extensions makes it possible to login into any BE or FE user by a link generated in the backend.

The following screenshots show the list of backend and frontend users. After clicking the additional icon with the lock, a modal opens with the login link.

Backend users Frontend users

Installation

Install this extension via composer by using the following command:

composer require georgringer/login-link

Usage

Login links for BE users

The login link can only be generated for non admin users

!! Currently nothing is logged when a user logs in via a login link !!

Disable feature by setting LOGINLINK_DISABLE_BE=1 in your .env file.

Login links for FE users

Set the following Page TsConfig to enable the login link for FE users:

# 123 is the page which is used to login users, e.g. the login page
tx_loginlink.fe.loginPage = 123

Disable feature by setting LOGINLINK_DISABLE_FE=1 in your .env file.