Tomas Kuliavas wrote:
> Are you testing your PHP setup according to
> http://www.squirrelmail.org/wiki/TestPHPSettings ?
>
> Could you explain how do you set session.cookie_path to 'no value'? Default
> is '/'
>
> Could you open SquirrelMail functions/global.php, find lines with
> ----
> /** set the name of the session cookie */
> if(isset($session_name) && $session_name) {
>     ini_set('session.name' , $session_name);
> } else {
>     ini_set('session.name' , 'SQMSESSID');
> }
> ----
>
> and add one more line after them
> ----
> /** set the name of the session cookie */
> if(isset($session_name) && $session_name) {
>     ini_set('session.name' , $session_name);
> } else {
>     ini_set('session.name' , 'SQMSESSID');
> }
> ini_set('session.cookie_path' , '/webmail/');
> ----
>
> Warning. This change is specific to your current layout. If you change
> webmail location, you will have to change that line. Good fix is different,
> but I don't want to introduce complex function calls in that part of code.
>
>   
Tomas,

Thank you very much.  You are the man!
So the only thing that I had to do was set the session.cookie_path to 
root and everything worked perfectly.

Thanks again.

Tim


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
--
squirrelmail-users mailing list
Posting Guidelines: 
http://www.squirrelmail.org/wiki/MailingListPostingGuidelines
List Address: squirrelmail-users@lists.sourceforge.net
List Archives: 
http://news.gmane.org/thread.php?group=gmane.mail.squirrelmail.user
List Archives:  http://sourceforge.net/mailarchive/forum.php?forum_id=2995
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users

Reply via email to