-
Notifications
You must be signed in to change notification settings - Fork 198
Debugging and resetting the database
Morris Jobke edited this page Sep 5, 2013
·
6 revisions
- Go to the administrator settings page (i.e. example.org/index.php/settings/admin)
- In the section "Log" chose "Debug" as loglevel
- Now you can simply provide your owncloud.log Note: Have a look at it! It provides the extracted metadata for music files!
Run following SQL statements on your ownCloud database. This deletes all music app generated data. After you reset the database for music app, the metadata scan will be triggered the next time you access the music app.
DELETE FROM *PREFIX*music_artists;
DELETE FROM *PREFIX*music_albums;
DELETE FROM *PREFIX*music_album_artists;
DELETE FROM *PREFIX*music_tracks;
DELETE FROM *PREFIX*music_scanned_users;
Note: Replace *PREFIX*
with your prefix - usually oc_
.