After initial log in, session ends when I click on any item in the dashboard

Permalink
This just started happening and I don't know why. I log in and can see the dashboard, but when I click on anything I am immediately kicked back to the log-in page. I try again and receive this message: "Your session has expired. Please sign in again." It goes on like this as an endless loop. So now I can't log in and edit any pages. Why did this happen? (Note: Since setting up this site, I have always had to log in twice in order to start editing - but now I am shut out completely.)

 
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
Check out this thread it could give you some ideas..
https://www.concrete5.org/community/forums/customizing_c5/instant-lo...
scotthodgdon replied on at Permalink Reply
Here's what I ended up doing and it worked - Access this file:
...application/concrete/config/generated_overrides/concrete.php
and add the following code:

return array(
'security' => array(
'session' => array(
'invalidate_on_ip_mismatch' => false,
),
),
);
chrishyndman replied on at Permalink Reply
Did you ever resolve this one? - I am experiencing the same issue but haven't found a resolution yet.
scotthodgdon replied on at Permalink Reply
yes - I added this code to the concrete.php in the generated_overrides folder which is located in the config folder which is located in the application folder. It worked for me.

return [
'version_installed' => '8.3.2',
'version_db_installed' => '20180122213656',
'security' => [
'session' => [
'invalidate_on_ip_mismatch' => false,
],
],
'misc' => [
'do_page_reindex_check' => false,
],
];
Necron99 replied on at Permalink Reply
I just came across this. Worked really well!

Thank you!
suhass replied on at Permalink Reply
gr8, solution work for me