Ugrade from owncloud 9 to 10 with difficulties

Steps to reproduce

  1. Expanding htaccess file

I am using PHP 7 and had to add following lines in the htaccess file to start the upgrade process. Otherwise it was not possible because I've got a server error.

IfModule mod_php7.c
php_value upload_max_filesize 513M
php_value post_max_size 513M
php_value memory_limit 512M
php_value mbstring.func_overload 0
php_value default_charset 'UTF-8'
php_value output_buffering 0
IfModule mod_env.c
SetEnv htaccessWorking true
IfModule
IfModule

=> like mod_php5.c in the htaccess file

  1. Endless loading for calendar and contact app

After upgrade and installation of the calendar and contact app it was not possible to work with them. There was only an endless loading. Data of appointments and contacts are still in the database.

  1. Curious integrity report

Before the upgrade I have deleted every file and folder except /data and /config. After the first login I've got an curious integrity warning about some files. But this files were from the original ownCloud installation package.

At least I had to reinstall ownCloud Version 9 because I could not solve the problems.

Server configuration

Operating system: Debian with Plesk

Web server: Apache

Database: MySQL

PHP version: 7

ownCloud version: 9.1.5

Please wait for the upcoming 10.0.1 where all that mentioned issues are already solved.

Sounds good. I will wait. :slight_smile:

After upgrade to 10.0.1 I had exactly the same problems. :unamused:

for the endless loading try this ( after you logged in to mysql) :

use owncloud;

ALTER TABLE oc_dav_shares ADD publicuri VARCHAR(255) NOT NULL AFTER principaluri;

That resolved the loading issue for me.