Question

how many concurrent sessions can one user open at the same Time?

Hi all, 

if I have a username  and password 

how many users can use it at the same time?

 

Like 0

Like

3 comments

Greetings, Michael!



Could you kindly elaborate on your question? Please describe it in more detail.

Михайло Зеленюк,

it's updated now 

Hello Michael,

There is no session limit unless you set it in web.config.

 

Since version 7.13.3, limiting multiple logins to one user account is possible. So when opening a new session, the old one is automatically closed on another device.

Enabled by the flag in web.config:

<add key="Feature-AllowOnlyOneSessionPerUser" value="true" />)

Show all comments