#5057 - Extended session for admin/staff accounts
0 guests and 0 members have recently viewed this.
The top 3 point earners from 14th Dec 2025 to 21st Dec 2025.
| PDStig |
|
|
|---|---|---|
| Gabri |
|
|
| sholzy |
|
|
There are no events at this time
"Cannot write to comcode_safelist.txt. File permissions for it (or the directory it is in) have not been set correctly."
Quite a list of files that cannot be written to according to initial install checks, this happens on Step 5. v10 installs without issue on the same Bitnami Wampstack. I imagine you gents are running it from the repo.
What may be happening is your IP is changing, and you have the "Enforce IP addresses for sessions" option on. If you use Cloudflare that's likely, as Cloudflare's DNS TTL is 5 minutes, after which you may hit a different Cloudflare IP to proxy your website against.
v11 has automatically got a Cloudflare workaround in place that shows Composr your correct IP. On v10 it has to be manually configured.
When accessing this page (locally or live):-
Your server is failing to connect to itself through it's base URL, with an error code of “404”. Try setting the “Work-around IP forwarding” option. There can be other causes, such as your server blocking web requests to itself. If problems persist, contact your webhost.
Enable 1:-
Similar message but the error code is "".
Looking at the code I could only think of 4 things that would break this:
1) Some kind of browser extension/feature clicking the log out button secretly for you (I wouldn't put it past some web accelerator plugins, if you have one)
2) An unreliable persistent cache that is reverting to an older version of the sessions list. If you have the persistent cache enabled, you could try disabling it. $SITE_INFO['use_persistent_cache'] = '0'; in _config.php
3) IP address changing (which I know you say is not happening). If you are logged out you could see if the REMOTE_ADDR setting is different in phpinfo when you log back in.
4) Something like a browser extension messing with the session cookie in your browser, clearing it out.