+ Reply to Thread
Results 1 to 7 of 7

Thread: Settings and addressbook lost

  1. #1
    DSW
    DSW is offline Registered User
    Join Date
    Nov 2008
    Location
    Nieuwegein, Netherlands
    Posts
    5
    Downloads
    0
    Uploads
    0

    Default Settings and addressbook lost

    Hi after updating to svn 2090 My addressbook is empty, my password reminder email is gone, and some personal settings.


    Please advice,

    btw I updated from svn 2011.

    I now only updated our own webmail client, but need to do my clients too.

    Also myroundcube seems to be very slow. Rosali can you check it?
    I pm you a login.

    Dennis

  2. #2
    rosali's Avatar
    rosali is offline Super Moderator
    Join Date
    Dec 2007
    Location
    Germany
    Posts
    2,392
    Downloads
    36
    Uploads
    0

    Default

    I have updated my own test environment and nothing was lost ... Also I can't imagine how this could happen. MyRoundCube does not touch the database tables ...

    I logged into the test account you sent me. I did not notice any speed issues. Maybe you used a browser on "localhost" to test your setup? Login from another box within your LAN to check performance.

    I PM'ed you also.
    Last edited by rosali; 11-30-2008 at 09:03 AM.

  3. #3
    rosali's Avatar
    rosali is offline Super Moderator
    Join Date
    Dec 2007
    Location
    Germany
    Posts
    2,392
    Downloads
    36
    Uploads
    0

    Default

    When testing your installation I noticed, that you still have localhost in plugin "check_identities" configuration ...

    Code:
    /* RoundCube URL */
    $rcmail_config['roundcube_url'] = "http://localhost/webmail/trunk/roundcubemail/"; // trailing slash !!!
    So, activation of identies from outside will not work and in addition it really seems you do your performance tests from a browser on localhost.

  4. #4
    DSW
    DSW is offline Registered User
    Join Date
    Nov 2008
    Location
    Nieuwegein, Netherlands
    Posts
    5
    Downloads
    0
    Uploads
    0

    Default Addressbook is still in the database

    Hi,
    My addressbook is still in the database, but somehow it does not show up in my webmail.
    Also I noticed my extra identity was missing.
    I changed the Identity config by the way. It does work now but not totally fine. I added:

    function curServerNAME() {
    $pageURL = 'http';
    if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
    $pageURL .= "://";
    if ($_SERVER["SERVER_PORT"] != "80") {
    $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"];
    } else {
    $pageURL .= $_SERVER["SERVER_NAME"];
    }
    return $pageURL;
    }

    $rcmail_config['roundcube_url'] = "http://".curServerNAME()."/";


    Only the url in the email shows up in the expected way, but the email link isn't good.

    Dennis

    Found the problem:

    $rcmail_config['roundcube_url'] = "http://".curServerNAME()."/"; needs to be: $rcmail_config['roundcube_url'] = curServerNAME()."/";
    Last edited by DSW; 12-01-2008 at 09:47 AM. Reason: Found solution

  5. #5
    DSW
    DSW is offline Registered User
    Join Date
    Nov 2008
    Location
    Nieuwegein, Netherlands
    Posts
    5
    Downloads
    0
    Uploads
    0

    Default maybe problem in plugins folder?

    I looked at the upgrade method, probably i made a mistake by also overwriting the myplugins folder.
    Can this be??
    What should I change?

  6. #6
    rosali's Avatar
    rosali is offline Super Moderator
    Join Date
    Dec 2007
    Location
    Germany
    Posts
    2,392
    Downloads
    36
    Uploads
    0

    Default

    Overwriting "myplugins" folder does not affect database at all. It seems you have lost your user database table. The only step where this could happen by mistake is here (see update notes);

    Code:
    -- Updates from version 0.2-beta (InnoDB only)
    
    ALTER TABLE `cache`
        DROP `session_id`;
        
    ALTER TABLE `session`
        ADD INDEX `changed_index` (`changed`);
    
    ALTER TABLE `cache`
        ADD INDEX `created_index` (`created`);
    
    ALTER TABLE `users`
        CHANGE `language` `language` varchar(5);
    Last edited by rosali; 12-01-2008 at 11:47 PM.

  7. #7
    DSW
    DSW is offline Registered User
    Join Date
    Nov 2008
    Location
    Nieuwegein, Netherlands
    Posts
    5
    Downloads
    0
    Uploads
    0

    Default found the problem

    I changed my config:

    from $rcmail_config['default_host'] = 'localhost';
    to $rcmail_config['default_host'] = 'mail.wissit.nl';

    that caused the accounts to be remade by myroundcube and so lost the connection to the settings and the contacts. after changing this in the mysql database and deleting the newly made double accounts (identities), it all worked again.


    Thx for your help
    Last edited by DSW; 12-01-2008 at 02:29 PM. Reason: explaination is better

+ Reply to Thread

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