Re: [users@httpd] Apache 2.2.3 Session tracking

2011-11-16 Thread Tom Evans
On Wed, Nov 16, 2011 at 2:41 PM, Pranesh Vadhirajan wrote: > I did not know that I need to have my list in shared memory (I assume that's > what you're referring to as shm in your response).  This is the type of thing > that I wanted to know in my question.  Is there a way to add my linked list

RE: [users@httpd] Apache 2.2.3 Session tracking

2011-11-16 Thread Pranesh Vadhirajan
web, but a quick heads-up on how to do this would be much appreciated. Also, what is modules@ ? Respectfully, Pranesh -Original Message- From: Tom Evans [mailto:tevans...@googlemail.com] Sent: Wednesday, November 16, 2011 7:26 AM To: users@httpd.apache.org Subject: Re: [users@httpd] Ap

Re: [users@httpd] Apache 2.2.3 Session tracking

2011-11-16 Thread Tom Evans
On Tue, Nov 15, 2011 at 8:40 PM, Pranesh Vadhirajan wrote: > Should something be modified in Apache modules when maintaining persistent > memory?  I am having a problem with a linked list implementation that I > wrote which I am linking with my apache module to maintain a list of > sessions so tha

[users@httpd] Apache 2.2.3 Session tracking

2011-11-15 Thread Pranesh Vadhirajan
Should something be modified in Apache modules when maintaining persistent memory? I am having a problem with a linked list implementation that I wrote which I am linking with my apache module to maintain a list of sessions so that I can track web sessions connecting to our web site at work. I ha

Re: [users@httpd] Apache 2.2.3 Session tracking with mod_session produces load error on module load

2011-10-24 Thread Mark Montague
On October 24, 2011 12:01 , "Pranesh Vadhirajan" wrote: Anyway, all I need to do is to correlate "clicks" with their user, so I really just need a way to find a user's session info somehow to track requests of a user. If I don't need mod_session for this, then I have no need to use it. If you

RE: [users@httpd] Apache 2.2.3 Session tracking with mod_session produces load error on module load

2011-10-24 Thread Pranesh Vadhirajan
] Sent: Monday, October 24, 2011 11:20 AM To: users@httpd.apache.org Subject: Re: [users@httpd] Apache 2.2.3 Session tracking with mod_session produces load error on module load On October 24, 2011 10:44 , "Pranesh Vadhirajan" wrote: > > I am trying to use the mod_session module.

Re: [users@httpd] Apache 2.2.3 Session tracking with mod_session produces load error on module load

2011-10-24 Thread Mark Montague
On October 24, 2011 10:44 , "Pranesh Vadhirajan" wrote: I am trying to use the mod_session module. Since mod_session is built into Apache for versions 2.3 or later, in order for me to use it on our Apache 2.2.3 server, I tried to build it from source. [...] I'm getting the following error: er

Re: [users@httpd] Apache 2.2.3 Session tracking with mod_session produces load error on module load

2011-10-24 Thread Nick Kew
On Mon, 24 Oct 2011 10:44:02 -0400 "Pranesh Vadhirajan" wrote: > error: httpd: Syntax error on line 217 of /etc/httpd/conf/httpd.conf: Cannot > load /usr/lib64/httpd/modules/mod_session.so into server: > /usr/lib64/httpd/modules/mod_session.so: undefined symbol: session_module. Could there be a

[users@httpd] Apache 2.2.3 Session tracking with mod_session produces load error on module load

2011-10-24 Thread Pranesh Vadhirajan
We are using Apache server 2.2.3 at work as our web server. Currently I am tasked to track metrics for our website's content access. I am able to gather some information (client's ip, request type, uri, etc.) from the request_rec structure. I also need to correlate "clicks" on the web site w