Is it possible to login in admin and frontend at the same time?

Hello,

I would like my users to have access to the admin panel to create and edit pages easily, and to have a few more options in the menu than regular visitors.

If I understand correctly, to do that the users must login in the admin and login in the frontend.
Is there a way for them to login to both at the same time?

1 Like

Another solution would be to detect in the frontend if people are connected to the admin, is this possible?

I found it.
It is a site global system configuration:
session.split = false
wonderful!

4 Likes

Hi @nix ! Could you be more explicit ? I don’t understand where to put session.split = false.
I’ve searched in system.yaml and found nothing.

Oops, I wasn’t searching in the right system.yaml ^^
I found this in /system/blueprint/config/system.yaml :

        session.split:
            type: toggle
            label: PLUGIN_ADMIN.SESSION_SPLIT
            help: PLUGIN_ADMIN.SESSION_SPLIT_HELP
            highlight: 1
            options:
                1: PLUGIN_ADMIN.YES
                0: PLUGIN_ADMIN.NO
            default: true
            validate:
                type: bool

Still, how to deactivate it ?

I guess it is by setting default: true to default: false ?

1 Like

I configured it using the admin interface, switching it from “yes” to “no” in the configuration -> system tab.