0
I search the forum but couldn't find anything that covers what I'm trying to do. I need to set a default pictures for all my missing album covers. I've done it before but don't remember how, I found the details in the forum .
Thanks
Thanks
Responses (1)
-
Accepted Answer
0the more practical thing (but you need some MySQL knowledge) is to make the field "image" on the mysql table "jos_muscol_albums" have a default value (when no value is specified), for instance, "no_image.jpg"
after doing that, you could perform a simple mysql query:
UPDATE jos_muscol_albums SET image = "no_image.jpg" WHERE image = ""
this way, we avoid to have to modify lots of files (album view, artist view, song, view, search view, also module templates...) not a good idea.
do you understand mysql?
Your Reply
Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »