Roundcube Community Forum

 

Whats wrong - Your browser does not accept cookies...

Started by thejojk, March 23, 2008, 03:33:20 PM

Previous topic - Next topic

Galerius

I think I've found the problem. In FF and IE the cookie of rouncubes roundcube_sessid is stored local (path C:\WINDOWS\Temp) and not on the server. In Crome the path is /roundcube so it takes it from there.

For the record I've got the latest roundcube (v0.2).

The server environment is:
Windows 2003 Server
Apache 2.2.10
PHP 5.2.6
MySQL 5.0.67

createch

One quick and dirty way to solve the problem is (think twice before you do):

edit index.php of the roundcubemail and find:-

=============
if (empty($_COOKIE))
{
$OUTPUT->show_message("cookiesdisabled", 'warning');
}
==============
and change to

==============
if (empty($_COOKIE)   && 1==2 )
{
$OUTPUT->show_message("cookiesdisabled", 'warning');
}
==============

It works for me. Enjoy.
Createch