Okay, most of the subscribers are off the site now, so I added the session_save_path where you suggested. I’m having problems getting the right path to the directory, just under public_html.
I’ve tried:
/sesstmp
/sesstmp/
./sesstmp
../sesstmp
../../sesstmp
and no joy so far. I’m not sure how I should refer to in php be none of these are working for me.
I *think* I’ve fixed it with this:
session_save_path(realpath(dirname($_SERVER[’DOCUMENT_ROOT’]) . ’/sesstmp’));
I’m going to get one of the other users to check and will let you know for sure. Hopefully this will all prove useful to someone else.
-
☆ A M B ☆
- 24,524 Posts
You can find your actual path in Reports -> System info, and you can use the full path. You could also use the defined constant MODX_BASE_PATH, as that is calculated before the function is defined.
Is that better than using the $_SERVER stuff that I used? It seems to work so I’m loathe to change it now - unless there’s a good reason to, of course.
...and still I’m struggling to get this to work.
Despite garbage collection not being set, something is cleaning up the files. Despite setting the timeout to a very long time, people are still having to log in (less often, granted, but still regularly, whereas the old site just accepted them even if they hadn’t viewed the site for a week).
Would I be right in saying that I have to add something to the cookie that’s stored on the user’s computer in order for this to happen? If so, how do I do that?
Ignore that last bit - a hangover to the problem, but probably better discussed in another area.