Perrin,
I have installed Apache::Session manger but somehow it is not working. I am not being prompted for password after the specified timeout. Is there a way to debug this issue. I have added the following in the httpd.conf file ************************ PerlSetVar SessionManagerTracking On PerlSetVar SessionManagerExpire 90 PerlSetVar SessionManagerInactivity 90 **************************
FYI: I have added the following code to the Smb.pm script. I did this to stop the password request popups in case of multi frame web pages ****************************************** use Fcntl qw(:flock); open S, "> /home/gaccr1/fdmg/web2/logs/AuthenSmb.lck" or die "Can't open AuthenSmb.lck: $!\n"; flock S, LOCK_EX; close S; ************************************ Any direction would be greatly appreciated.
I don't think you understood what I was saying. Have you made any effort to connect the sessions to SMB?
I meant for you to stop using AuthenSMB, take the SMB code from it, and use that to write your own login system that is tracked with cookies using Apache::SessionManager.
If you want to do it without writing any code, the only thing available is Apache::AuthExpire, but it will not work with all browsers.
- Perrin