Compilations - Serious BUG

0
Hey Germi,

There's a serious bug about the use of Compilations.

When I create a compilation of various artists, I set the album's artist to VARIOUS ARTISTS.

Then, I add the songs inside it, like 10 songs of 10 different artists.

If you go to artists view, you see 0 songs and 0 albums for this 10 artists that are inside the compilation.

Is there any IM or Chat we can speak? I have to figure out a way for making that work out correctly.

Regards,

Elias Hatem
Responses (7)
  • Accepted Answer

    Monday, December 21 2009, 05:03 PM - #Permalink
    0
    yes, this is a known bug.

    I have it solved on my local beta version for 1.5.2, but I havent publish it yet.

    do this:

    open /components/com_muscol/models/artists.php

    go to line 134 approx and replace the query for this one:

    $query = 	' SELECT COUNT(*) '.
    ' FROM #__muscol_songs as s '.
    ' LEFT JOIN #__muscol_albums as al ON al.id = s.album_id ' .
    ' WHERE s.artist_id = '.$this->_data[$i]->id


    be careful!! ;)
    The reply is currently minimized Show
  • Accepted Answer

    Monday, December 21 2009, 05:07 PM - #Permalink
    0
    Hmm, looks like I'm getting an error:

    Parse error: syntax error, unexpected T_VARIABLE in /home/content/m/e/t/metropoliscrew/html/recs/components/com_muscol/models/artists.php on line 143
    The reply is currently minimized Show
  • Accepted Answer

    Monday, December 21 2009, 05:10 PM - #Permalink
    0
    I have replaced this:

    $query = ' SELECT al.id,al.name,al.image '.
    ' FROM #__muscol_albums as al '.
    ' LEFT JOIN #__muscol_format as f ON f.id = al.format_id '.
    ' WHERE al.artist_id = '.$this->_data[$i]->id .
    ' ORDER BY f.order_num, al.year, al.month'
    ;

    ......

    with this:


    $query = ' SELECT COUNT(*) '.
    ' FROM #__muscol_songs as s '.
    ' LEFT JOIN #__muscol_albums as al ON al.id = s.album_id ' .
    ' WHERE s.artist_id = '.$this->_data[$i]->id
    ;
    The reply is currently minimized Show
  • Accepted Answer

    Monday, December 21 2009, 05:15 PM - #Permalink
    0
    NOOOO!!! :lol:

    you have to replace a very similar query, wich says WHERE s
    al.artist_id instead of WHERE s.artist_id

    maybe I didnt tell you the right line, sorry. just search it
    The reply is currently minimized Show
  • Accepted Answer

    Monday, December 21 2009, 05:20 PM - #Permalink
    0
    Ok, found it. It was at line 122.

    It fixed the counter. Now an artist inside a compilation has "albums=0 and songs=1" in the artists listing.

    But, still, I don't see the compilation in the listing and, if I click on the artist, I see zero albums related to him.

    Can you help me out?
    The reply is currently minimized Show
  • Accepted Answer

    Monday, December 21 2009, 05:21 PM - #Permalink
    0
    the albums will be 0, because the album is not from that artist. so, this is the normal behaviour. is the SONG what is related to the artist, not the album.
    The reply is currently minimized Show
  • Accepted Answer

    Monday, December 21 2009, 05:25 PM - #Permalink
    0
    Ok, got it.

    Anyway, here's a suggestion for next version:

    http://www.discogs.com/artist/gustavo+assis

    "Tracks appear on..."

    and then lists albums.
    The reply is currently minimized Show
Your Reply