+ Reply to Thread
Page 2 of 2 FirstFirst 1 2
Results 11 to 17 of 17

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

  1. #11
    Philippe23 is offline Registered User
    Join Date
    Apr 2008
    Posts
    9
    Downloads
    0
    Uploads
    0

    Default Re: Whats wrong - Your browser does not accept cookies...

    I tried having Firefox drop all cookies and everything, but I still have the problem.

    If I nuke my ~/.mozilla folder, I don't have this problem anymore from my Linux machine. So it's some strange state browser/cookie issue.

    Now I just have to decide if the information that Firefox remembers for me is worth being able to log into roundcube from this machine....

  2. #12
    dhavalbsolanki is offline Registered User
    Join Date
    Apr 2008
    Posts
    1
    Downloads
    0
    Uploads
    0

    Default Re: Whats wrong - Your browser does not accept cookies...

    Hi,

    I was facing same problem, then tried this change in config file,
    ------------------------------------
    change in your "main.inc.php" file.

    $rcmail_config['default_host'] = 'localhost';

    change with

    $rcmail_config['default_host'] = 'your domain name';
    ------------------------------------

    then try to open login page with your domain name

    eg : http://your domain name/index.php

    Hope this will work for you .....



  3. #13
    jimcavoli is offline Registered User
    Join Date
    Oct 2007
    Location
    Hudson, Ohio, USA
    Posts
    39
    Downloads
    0
    Uploads
    0

    Default Re: Whats wrong - Your browser does not accept cookies...

    Sorry for being out so long, guys, but dhavalbsolanki has actually raised an interesting point; if the domain or some other config setting is inconsistent, there may be a problem with the server setting or reading it's cookies, but that's equally a browser issue as a server issue, since it's the browser's responsibility to send the requested cookie back.
    Honestly, very strange; thejojk - did your error get cleaned up as a result of this thread, or is it still happening?

  4. #14
    Simsen is offline Registered User
    Join Date
    May 2008
    Posts
    2
    Downloads
    0
    Uploads
    0

    Default Same problem?

    Hi. Just letting you know that I keep getting redirected back to the log in page on one of my computers. I have just changed

    $rcmail_config['default_host'] = "mail.host.com";

    to

    $rcmail_config['default_host'] = "host.com";

    I'll let you know if it that did the trick when I get back to the "offending" computer.

    Cheers all.

    And thanks for a very promising web mail solution.

  5. #15
    Galerius is offline Registered User
    Join Date
    Dec 2008
    Posts
    3
    Downloads
    0
    Uploads
    0

    Default

    I also have the same problem. Neither in Firefox (v3.0.4) or in Internet Explorer (v7) it works, but in Google Chrome it works like a charm...

    And the solutions above here doesn't work either. So frustrating that it doesn't work.

  6. #16
    Galerius is offline Registered User
    Join Date
    Dec 2008
    Posts
    3
    Downloads
    0
    Uploads
    0

    Default

    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

  7. #17
    createch is offline Roundcube Newcomer
    Join Date
    Jan 2009
    Posts
    2
    Downloads
    0
    Uploads
    0

    Smile

    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

+ Reply to Thread
Page 2 of 2 FirstFirst 1 2

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts