up vote 0 down vote favorite
share [g+] share [fb]

In cakePHP, does anyone have any experience creating a custom Session handler that records extra information to the database.

Say you wanted to record the IP and the User Id (if they login using Auth) to the sessions table using a custom handler. Where would you start?

I have seen the cakebook, but it doesn't talk about custom database session handlers.

link|improve this question

50% accept rate
feedback

2 Answers

Apparently it is possible to extend the CakePHP session management. The below links go into some detail but do not provide any concrete examples.

http://bakery.cakephp.org/articles/view/how-to-bend-cakephp-s-session-handling-to-your-needs http://www.mail-archive.com/cake-php@googlegroups.com/msg35067.html

link|improve this answer
feedback

Could you give a more specific example? I mean.... your concept is basic cakePHP programming, but I am thinking that you are seeing something that is more specific and seems out of the ordinary....

It is in the CakePHP manual under request handling. The IP is under additional client information.

Take a look -- if you need some help with code, I can post an example later this afternoon... just let me know....

link|improve this answer
I want to record the IP and User Id to the sessions table, and have the "custom" session handler take care of the for me. Is that specific enough? – bucho Dec 24 '09 at 17:14
How do you override the basic CakePHP database session management to write more info to the database. – bucho Dec 24 '09 at 17:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.