Owncloud: Difference between revisions
From James's Wiki
No edit summary |
No edit summary |
||
Line 22: | Line 22: | ||
force owncloud to rescan file (use if you have maunally copied files in the owncloud directories) | 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 | sudo -u www-data php occ files:checksums:verify -r | ||
use this one: | |||
sudo -u www-data php occ files:scan --all |
Latest revision as of 12:58, 24 September 2023
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