Page 1 of 1

Indexing is disabling songs: enabled=false

PostPosted: Wed Jun 25, 2008 10:34 pm
by BrianDelShasta
I'm using the db.view to do a

select * from music_file_info

However, most of my songs are not enabled, the result being that they do not show up in the recently played list. If I do:
update music_file_info
set enabled = 'true'
where enabled like 'false'
the songs are then enabled, and show up in recently played again, but are disabled again at the next index.

Any ideas?

PostPosted: Thu Jun 26, 2008 7:51 pm
by sindre_mehus
Entries in music_file_info gets disabled by the nightly search index generator if the files they refer to doesn't exist on the disk. This can happen if you move files around, for instance to a different drive or directory. Is this the case for you?

Hope this helps,
Sindre

PostPosted: Fri Jun 27, 2008 3:30 pm
by BrianDelShasta
Yes, that is the case. I did move to a new server, drive, and directory. But I thought successfully changed the path using the db.view form. They at least display the correct new path.

It's no longer an issue though, I just re-indexed everything in a new directory and started the recently lists over, no big deal.
Thanks!