Stuck on owncloud 9.0.4-1.1

I can find repo’s that will download owncloud 10 file for me… but they won’t work as an upgrade from 9.0.4.1, they just tell me that I need to upgrade from 9.0.8. But I can’t find a way to get to 9.0.8. I’ve linked several repo’s, cleared apt cache and updated but nothing will update my packages to 9.0.8. The install goes back to 6.0.

Server configuration

Operating system: Wheezy

Web server: Apache2.2.22-13

Database: MySQL 5.5

PHP version: 5.4.45

ownCloud version: ownCloud 9.0.4 (stable)

Updated from an older ownCloud or fresh install: Updated from older

Where did you install ownCloud from: Repo’s long ago

Signing status (ownCloud 9.0 and above): N/A

http://example.com/index.php/settings/integrity/failed 
No errors have been found.

The content of config/config.php: No thank you!

If you have access to your command line run e.g.:
sudo -u www-data php occ app:list
from within your ownCloud installation folder.

  - activity: 2.2.1
  - comments: 0.2
  - contacts: 1.3.1.0
  - dav: 0.1.6
  - documents: 0.12.0
  - federatedfilesharing: 0.1.0
  - files: 1.4.4
  - files_external: 0.5.2
  - files_pdfviewer: 0.8.1
  - files_sharing: 0.9.1
  - files_texteditor: 2.1
  - files_trashbin: 0.8.0
  - files_versions: 1.2.0
  - files_videoplayer: 0.9.8
  - firstrunwizard: 1.1
  - gallery: 14.5.0
  - notifications: 0.2.3
  - provisioning_api: 0.4.1
  - systemtags: 0.2
  - templateeditor: 0.1
  - updatenotification: 0.1.0
Disabled:
  - encryption
  - external
  - federation
  - files_antivirus
  - user_external
  - user_ldap


**Are you using external storage, if yes which one:** local/smb/sftp/...

**Are you using encryption:** yes/no

**Are you using an external user-backend, if yes which one:** LDAP/ActiveDirectory/Webdav/...

With access to your command line run e.g.:
sudo -u www-data php occ ldap:show-config
from within your ownCloud installation folder
  [Symfony\Component\Console\Exception\CommandNotFoundException]  
  There are no commands defined in the "ldap" namespace. 

Without access to your command line download the data/owncloud.db to your local
computer or access your SQL server remotely and run the select query:
SELECT * FROM `oc_appconfig` WHERE `appid` = 'user_ldap';
Empty set (0.00 sec)

Hey,

maybe you can use the 9.0.11 archive linked at https://owncloud.org/download/older-versions/ to do an intermediate step to the latest 9.0 release and then use the 10.3 repositories to do the final upgrade to ownCloud 10?

1 Like

Thank you, using the Attic I was able to manually download and manually update to 9.0.11.2.

sudo dpkg -i owncloud-files_9.0.11-1.1_all.deb
sudo -u www-data php /space2/www/owncloud/occ upgrade

I ran into issues using the attic owncloud repo for Debian 7 to update, which I detail below.

wget --no-check-certificate -nv https://download.owncloud.org/download/repositories/9.0/Debian_7.0/Release.key -O Release.key
GnuTLS: A TLS fatal alert has been received.
Unable to establish SSL connection.

Results in a zero byte key. Getting it with curl:

curl --insecure  https://download.owncloud.org/download/repositories/9.0/Debian_7.0/Release.key -O Release.key

cat Release.key 
<a href="https://attic.owncloud.org/download/repositories/9.0/Debian_7.0/Release.key">Moved Permanently</a>.

Getting the moved key…

curl --insecure https://attic.owncloud.org/download/repositories/9.0/Debian_7.0/Release.key -O Release.key

Modifying the apt add to suit:

sudo bash -c "echo 'deb http://attic.owncloud.org/download/repositories/9.0/Debian_7.0/ /' > /etc/apt/sources.list.d/owncloud.list"

sudo apt-get update
...
Err http://attic.owncloud.org  Packages                                                     
  301  Moved Permanently [IP: 195.201.36.192 80]

Visiting https://195.201.36.192/download/repositories/9.0/Debian_7.0/ results in a 404.

However I was able to manually grab owncloud-files_9.0.11-1.1_all.deb so I will look into a manual upgrade next.

1 Like