Author Topic: Whats wrong - Your browser does not accept cookies...  (Read 16515 times)

Offline Galerius

  • Newbie
  • *
  • Posts: 3
Whats wrong - Your browser does not accept cookies...
« Reply #15 on: December 13, 2008, 08:22:37 AM »
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

Offline createch

  • Newbie
  • *
  • Posts: 2
Whats wrong - Your browser does not accept cookies...
« Reply #16 on: January 19, 2010, 12:01:46 AM »
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