Migrating ownCloud from uberspace 6 to uberspace 7

Moin,

… which leads to Access to files not possible after upgrade and the therein mentioned link to https://doc.owncloud.com/server/10.0/admin_manual/maintenance/manually-moving-data-folders.html

Update the oc_accounts table

says:
UPDATE oc_accounts SET home='/mnt/data/files/super-admin' WHERE id=1;

this of course has to be done for every single user account, as all home-dirs are in the new data-dir

Next:

Update the oc_jobs table

says:
UPDATE oc_jobs SET argument = '/your/new/data/path' WHERE id = <id of the incorrect record>;

at least in my db the “/” are espcaped by " \ " so path should read \/your\/new\/data\/path

I’m sure there’s a need for updating both the migration page as the How to Move Data-Dir page in the admin manual :wink:. /cc @settermjd

Besides that: what would be the suggestion to get the migrated instance up and running?

best regards Stefan