Comments and Rating

Alexander
Alexander
Offline
0
That's what I noticed. It turns out to comment on the song in the album and can vote only for registered users.Can I make and unregistered users can also leave comments songs and vote for the songs that they liked?

This is a very important question for me. This built my entire site. :huh:
Responses (16)
  • Accepted Answer

    Monday, July 05 2010, 04:36 PM - #Permalink
    0
    hello

    music collection only allows ratings and votings to registered users.

    if you want this you'd need custom work...
    (its a security thing: otherwise everybody could post...)
    The reply is currently minimized Show
  • Accepted Answer

    Alexander
    Alexander
    Offline
    Tuesday, July 06 2010, 08:33 AM - #Permalink
    0
    germi wrote:
    hello

    music collection only allows ratings and votings to registered users.

    if you want this you'd need custom work...
    (its a security thing: otherwise everybody could post...)

    How much will it cost? How long will I have to wait?
    The reply is currently minimized Show
  • Accepted Answer

    Thursday, July 08 2010, 03:04 PM - #Permalink
    0
    allowing everybody to post ratins and comments would cost about 150eur, BUT YOU HAVE TO KNOW that in this case you could have a lot of SPAM problems... just warning you.. :)

    I guess it would take a couple of weeks. in any case, for custom work you have to contact us through the custom form :)

    Germi
    The reply is currently minimized Show
  • Accepted Answer

    Alexander
    Alexander
    Offline
    Friday, July 09 2010, 08:45 AM - #Permalink
    0
    germi wrote:
    allowing everybody to post ratins and comments would cost about 150eur, BUT YOU HAVE TO KNOW that in this case you could have a lot of SPAM problems... just warning you.. :)

    I guess it would take a couple of weeks. in any case, for custom work you have to contact us through the custom form :)

    Germi

    I see/ I'll think about it.
    The reply is currently minimized Show
  • Accepted Answer

    Alexander
    Alexander
    Offline
    Friday, July 09 2010, 08:47 AM - #Permalink
    0
    Way. About comments/
    On the albums and songs, users can leave comments. How to limit the number of comments on the page?
    The reply is currently minimized Show
  • Accepted Answer

    Monday, July 12 2010, 04:05 PM - #Permalink
    0
    well, you can add small code on the mysql statement that makes the request.

    but, if you really want to have PAGINATION on comments (AND also allow nonregistered users to post), I would suggest you to give a try at JomComment, because it includes all this out of the box, and MC is compatible with it:

    http://www.azrul.com/products/jom-comment.html
    The reply is currently minimized Show
  • Accepted Answer

    Alexander
    Alexander
    Offline
    Tuesday, July 13 2010, 10:29 AM - #Permalink
    0
    germi wrote:
    well, you can add small code on the mysql statement that makes the request.

    but, if you really want to have PAGINATION on comments (AND also allow nonregistered users to post), I would suggest you to give a try at JomComment, because it includes all this out of the box, and MC is compatible with it:

    http://www.azrul.com/products/jom-comment.html


    I do not need JomComment,
    I want a component that I have bought you limit the number of comments on the page.
    What should I do?
    The reply is currently minimized Show
  • Accepted Answer

    Tuesday, July 13 2010, 04:10 PM - #Permalink
    0
    the component that you bought does not have this option. that's it. it looks like you want a lot (I mean, A LOT) of small things/features/changes that are not there on MC. I have no problem at all on telling you how to achieve these, if they are easy (as a matter of fact, I believe I have helped you in all I could... really..) but maybe you should go for some custom if you need so many modifications!!

    I say this in a happy :) way! just noticing that you need so many small changes (I'm not talking about "problems" or "non-working" things...I'm talking about modifications on the core code and behavior! :)

    anyway, that's what you need:

    on /models/album.php line 382 there's is a query:


    $query = ' SELECT c.*,u.name as username FROM #__muscol_comments as c ' .
    ' LEFT JOIN #__users as u ON u.id = c.user_id ' .
    ' WHERE c.album_id = ' . $this->_id . ' AND (c.comment_type = "album" OR c.comment_type = "") ' .
    ' ORDER BY c.date ' ;


    just add a "LIMIT = 10" clause, like this:


    $query = ' SELECT c.*,u.name as username FROM #__muscol_comments as c ' .
    ' LEFT JOIN #__users as u ON u.id = c.user_id ' .
    ' WHERE c.album_id = ' . $this->_id . ' AND (c.comment_type = "album" OR c.comment_type = "") ' .
    ' ORDER BY c.date LIMIT 10 ' ;
    The reply is currently minimized Show
  • Accepted Answer

    Alexander
    Alexander
    Offline
    Wednesday, July 14 2010, 11:28 AM - #Permalink
    0
    This limits the comments. Others simply disappear. This is not the answer to my question.

    And You are wrong when you say what I too many want. I'm talking about obvious details that should be in your component. All comments in other plugins and modules are always by page navigation. This is obvious.

    It's all the same, that sell a car without wheels and then blame the buyer that he asks too much. ;) :S
    The reply is currently minimized Show
  • Accepted Answer

    Wednesday, July 14 2010, 11:31 AM - #Permalink
    0
    well I offered the help I could.
    pagination on comments is not included.
    adding this is much more complicated.
    if this component is causing you so much trouble maybe you should go for another one
    bye.
    The reply is currently minimized Show
  • Accepted Answer

    Alexander
    Alexander
    Offline
    Wednesday, July 14 2010, 11:45 AM - #Permalink
    0
    germi wrote:
    well I offered the help I could.
    pagination on comments is not included.
    adding this is much more complicated.
    if this component is causing you so much trouble maybe you should go for another one
    bye.


    Which example would you recommend I buy? :P
    The reply is currently minimized Show
  • Accepted Answer

    Wednesday, July 14 2010, 11:47 AM - #Permalink
    0
    no idea, as far as I concern, Music COllection has the best features all over the options available. I dont know other components!
    The reply is currently minimized Show
  • Accepted Answer

    Alexander
    Alexander
    Offline
    Wednesday, July 14 2010, 11:58 AM - #Permalink
    0
    germi wrote:
    no idea, as far as I concern, Music COllection has the best features all over the options available. I dont know other components!


    All right. :dry:
    The reply is currently minimized Show
  • Accepted Answer

    Alexander
    Alexander
    Offline
    Wednesday, July 14 2010, 12:25 PM - #Permalink
    0
    By the way, how many songs you can add to the album. Much? Then the page will also be too long. By analogy with the comments.
    The reply is currently minimized Show
  • Accepted Answer

    Friday, July 16 2010, 10:04 AM - #Permalink
    0
    there's no limit on the number of songs, and there's no pagination.

    the reason for that is, well... there are no albums with 1000 songs! ;) I've rarely seen an album with more than 50 songs... ;)
    The reply is currently minimized Show
  • Accepted Answer

    Alexander
    Alexander
    Offline
    Friday, July 16 2010, 10:36 AM - #Permalink
    0
    germi wrote:
    there's no limit on the number of songs, and there's no pagination.

    the reason for that is, well... there are no albums with 1000 songs! ;) I've rarely seen an album with more than 50 songs... ;)


    Indeed so. Now I understand. You thought of everything. However, the number of songs probably could also limit how and comments?
    The reply is currently minimized Show
Your Reply