Roundcube Community Forum

 

Upgraded to 0.9.3 - RCM still tells me its 0.9.1 in "about" dialog

Started by mercury_19811, September 01, 2013, 12:38:43 PM

Previous topic - Next topic

mercury_19811

Hi!

Today I upgraded from 0.9.1 to 0.9.3 - I followed the instructions in the UPGRADING document:

First I encountered a problem that when I executed "update.sh" I was asked which version I was using.

What version are you upgrading from? Type '?' if you don't know.
0.9.1
Nothing to be done here. Bye!

What version are you upgrading from? Type '?' if you don't know.
?
Nothing to be done here. Bye!


Then I switched to the manual update as described:
copied the following files / directories:
+ index.php
+ bin
+ SQL
+ program
+ skins
+ plugins

I enabled installer in main.inc.php and tested the config => success

Then I logged in again and checked the "about" dialog => still 0.9.1
I restarted apache2 service and checked again => still 0.9.1

Can somebody please help or give some hints? Do you need further information in order to be able to help?

Thanks a lot!

SKaero


mercury_19811


<?php
/*
 +-------------------------------------------------------------------------+
 | Roundcube Webmail IMAP Client                                           |
 | Version 0.9.3                                                           |
 |                                                                         |
 | Copyright (C) 2005-2013, The Roundcube Dev Team                         |
 |                                                                         |
 | This program is free software: you can redistribute it and/or modify    |
 | it under the terms of the GNU General Public License (with exceptions   |
 | for skins & plugins) as published by the Free Software Foundation,      |
 | either version 3 of the License, or (at your option) any later version. |
 |                                                                         |
 | This file forms part of the Roundcube Webmail Software for which the    |
 | following exception is added: Plugins and Skins which merely make       |
 | function calls to the Roundcube Webmail Software, and for that purpose  |
 | include it by reference shall not be considered modifications of        |
 | the software.                                                           |
 |                                                                         |
 | If you wish to use this file in another project or create a modified    |
 | version that will not be part of the Roundcube Webmail Software, you    |
 | may remove the exception above and use this source code under the       |
 | original version of the license.                                        |
 |                                                                         |
 | This program is distributed in the hope that it will be useful,         |
 | but WITHOUT ANY WARRANTY; without even the implied warranty of          |
 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the            |
 | GNU General Public License for more details.                            |
 |                                                                         |
 | You should have received a copy of the GNU General Public License       |
 | along with this program.  If not, see http://www.gnu.org/licenses/.     |
 |                                                                         |
 +-------------------------------------------------------------------------+
 | Author: Thomas Bruederli <[email protected]>                          |
 +-------------------------------------------------------------------------+
*/

// include environment
require_once 'program/include/iniset.php';

// init application, start session, init output class, etc.
$RCMAIL rcmail::get_instance();

// Make the whole PHP output non-cacheable (#1487797)
$RCMAIL->output->nocacheing_headers();

// turn on output buffering
ob_start();


... and 
so on

mercury_19811


SKaero


mercury_19811

Strange - here it tells me 0.9.1

<?php

/*
 +-----------------------------------------------------------------------+
 | program/include/iniset.php                                            |
 |                                                                       |
 | This file is part of the Roundcube Webmail client                     |
 | Copyright (C) 2008-2013, The Roundcube Dev Team                       |
 |                                                                       |
 | Licensed under the GNU General Public License version 3 or            |
 | any later version with exceptions for skins & plugins.                |
 | See the README file for a full license statement.                     |
 |                                                                       |
 | PURPOSE:                                                              |
 |   Setup the application environment required to process               |
 |   any request.                                                        |
 +-----------------------------------------------------------------------+
 | Author: Till Klampaeckel <[email protected]>                               |
 |         Thomas Bruederli <[email protected]>                        |
 +-----------------------------------------------------------------------+
*/

// application constants
define('RCMAIL_VERSION''0.9.1');
define('RCMAIL_START'microtime(true));

if (!
defined('INSTALL_PATH')) {

SKaero

It looks like the files didn't get overwritten correctly, try the upgrade again.

mercury_19811