0
I am using Muscol 2.2 for J 1.6. When I first submit a search, it appears ok. But when the form comes up it will give you the option to "Search Only:" there's a checkbox for artist, album and songs. But if any of the three are checked, I get this error:

"Warning: array_merge() [function.array-merge]: Argument #3 is not an array in /home/plugins/search/albums/albums.php on line 154"

and there are no results.

I also have tried RokAjaxSearch which is supposed to use the same results as the core search but it won't find any artists. It only finds albums.

Germi has tried to figure out what is wrong but has not found anything yet.

I have attached a screenshot.

Thanks,
Tom http://www.joomlamusicsolutions.com/images/fbfiles/images/screenshot-20110618.jpg
Attachments:
Responses (4)
  • Accepted Answer

    Jason
    Jason
    Offline
    Tuesday, August 23 2011, 09:06 PM - #Permalink
    0
    I do get the error. I dont know how to fix it sorry.
    The reply is currently minimized Show
  • Accepted Answer

    Tuesday, August 23 2011, 09:08 PM - #Permalink
    0
    this is still on my to-do list, sorry about that.
    for some reasons, it works OK on some Joomla 1.6 distributions, but not on others. pretty weird.

    I'll get back to this to try to find a quick fix.

    sorry for the delay guys!

    Germi
    The reply is currently minimized Show
  • Accepted Answer

    G
    G
    Offline
    Wednesday, May 23 2012, 04:56 AM - #Permalink
    0
    not sure if this issue has been resolved but:

    only the rows array gets initialized, u need to initialize the rows2 and rows3 arrays.

    from this:


    if(!$areas){
    $buscar = true ;
    $areas = array();
    }

    $rows = array();



    to this:


    if(!$areas){
    $buscar = true ;
    $areas = array();
    }

    $rows = array();
    $rows2 = array();
    $rows3 = array();
    The reply is currently minimized Show
  • Accepted Answer

    Friday, July 20 2012, 02:25 AM - #Permalink
    0
    Awesome. I was having the same problem and cannibus' code fixed it. Big thumbs up! Thank you B)
    The reply is currently minimized Show
Your Reply