Owncloud

From James's Wiki

download it


mysql -u<username> -p<password>

MariaDB [(none)]> create database owncloud;

Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> create user owncloud@localhost identified by '12345';

Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> grant all privileges on owncloud.* to owncloud@localhost identified by '12345';

Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> flush privileges;

Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> exit;

Bye

navigate to your page

force owncloud to rescan file (use if you have maunally copied files in the owncloud directories)

this one dosen't work anymore:

sudo -u www-data php occ files:checksums:verify -r

use this one:

sudo -u www-data php occ files:scan --all