disconnect dashboard everytime

Permalink
Hello, I work with the latest version of concrete and I have a big problem. I am disconnected from the dasboard at an infernal frequency. Even if I check "stay connected 2 weeks". I already had the problem with the previous version but not with version 5.6.
I had an AdBlock on Firefox. I disconnected thinking that it came from that but no.
I am not in blocked IP addresses ..
Any ideas ?
Thank you

Elstud
 
hutman replied on at Permalink Reply
hutman
Is your IP address changing mid session? By default when your IP address changes you are logged out.
Elstud replied on at Permalink Reply
Elstud
Thank You Human,

My IP is always the same.
When I am login, sometime i stay connected 30 minutes, but often I am disconnect after 10 seconds or 1 minutes..
depending action i need to to in dashboard..

Perhaps something wrong with advanced right.
Clicking on "keep the connection for 2 weeks" does not change anything. the disconnection is very random.

I have this message >
Session Invalidated. Session IP "2a01:cb18:3c3:4b00:f0ce:cc70:a65a:a4f0" did not match provided IP "2a01:cb18:3c3:4b00:2d2b:1715:f5ca:d95f".
hutman replied on at Permalink Best Answer Reply
hutman
It would appear that they system thinks your IP address is changing. You can adjust that setting by adding this to your application/config/concrete.php

'security' => [
    'session' => [
        'invalidate_on_ip_mismatch' => false,
    ],
],


If this file doesn't exist create it with this inside

<?php
return [
    'security' => [
        'session' => [
            'invalidate_on_ip_mismatch' => false,
        ],
    ],
];
Elstud replied on at Permalink Reply
Elstud
Thank you Human !!!

It seem better now :)
I cross my finger !!