-
☆ A M B ☆
- 427 Posts
I have a domain with evo running at old.domain.com and revo running at domain.com
The evo correctly places the $_SESSION at /home/username/tmp/sessions whereas revo is not placing them anywhere I can find.
Where exactly does revo place $_SESSIONs? It appears to be ignoring the value set in the php.ini file.
I also see part of the $_SESSION being placed in the db, but have not seen the rest of it.
For what ever reason I like to look at my manipulations as they happen (with a tail -f command) instead of constantly having to pull them via a print_r.
-
MODX Staff
- 10,725 Posts
Revolution uses a custom database session handler by default that stores all of the session data in the modx_session table. You can customize the session settings under System Settings (and/or Context Settings). You can also provide your own session handler classes if you need to override or completely replace the current handler.
-
☆ A M B ☆
- 427 Posts
I found the table, but haven’t ran into the handlers -- tho I can guess half of what the table holds in the data field.
I will definitely have to read up on the handlers as I develop plenty of toys storing data in the $_SESSION.