Author Topic: Upgraded to 0.9.3 - RCM still tells me its 0.9.1 in "about" dialog  (Read 5482 times)

Offline mercury_19811

  • Jr. Member
  • **
  • Posts: 19
Upgraded to 0.9.3 - RCM still tells me its 0.9.1 in "about" dialog
« on: September 01, 2013, 12:38:43 PM »
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.

Code: [Select]
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!

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,879
    • SKaero - Custom Roundcube development
Re: Upgraded to 0.9.3 - RCM still tells me its 0.9.1 in "about" dialog
« Reply #1 on: September 01, 2013, 12:49:08 PM »
What does the top of the index.php say?

Offline mercury_19811

  • Jr. Member
  • **
  • Posts: 19
Re: Upgraded to 0.9.3 - RCM still tells me its 0.9.1 in "about" dialog
« Reply #2 on: September 01, 2013, 12:55:45 PM »
Code: [Select]
<?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 <roundcube@gmail.com>                          |
 +-------------------------------------------------------------------------+
*/

// 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

Offline mercury_19811

  • Jr. Member
  • **
  • Posts: 19
Re: Upgraded to 0.9.3 - RCM still tells me its 0.9.1 in "about" dialog
« Reply #3 on: September 01, 2013, 04:11:52 PM »
Is that the information you were looking for?

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,879
    • SKaero - Custom Roundcube development
Re: Upgraded to 0.9.3 - RCM still tells me its 0.9.1 in "about" dialog
« Reply #4 on: September 01, 2013, 04:13:40 PM »
What about the <RC root>/program/include/iniset.php?

Offline mercury_19811

  • Jr. Member
  • **
  • Posts: 19
Re: Upgraded to 0.9.3 - RCM still tells me its 0.9.1 in "about" dialog
« Reply #5 on: September 02, 2013, 12:04:39 PM »
Strange - here it tells me 0.9.1

Code: [Select]
<?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 <till@php.net>                               |
 |         Thomas Bruederli <roundcube@gmail.com>                        |
 +-----------------------------------------------------------------------+
*/

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

if (!
defined('INSTALL_PATH')) {

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,879
    • SKaero - Custom Roundcube development
Re: Upgraded to 0.9.3 - RCM still tells me its 0.9.1 in "about" dialog
« Reply #6 on: September 02, 2013, 12:16:31 PM »
It looks like the files didn't get overwritten correctly, try the upgrade again.

Offline mercury_19811

  • Jr. Member
  • **
  • Posts: 19
Re: Upgraded to 0.9.3 - RCM still tells me its 0.9.1 in "about" dialog
« Reply #7 on: September 02, 2013, 12:32:57 PM »
Thank you - it works now - problem solved!