solved Music Charts not showing properly and counter not counting accordinaly

alt=
@luis890
10 years ago
57 posts
For some reason the Weekly and and Yearly Music Charts show the same. Monthly charts does not shows in order see link: http://ecuamusica.com/music_charts
In addition to that, the number of plays sometimes counts, and sometimes not.
Link: http://ecuamusica.com/artists
Any Ideas.?

updated by @luis890: 12/20/14 09:26:30PM
michael
@michael
10 years ago
7,715 posts
There are check in place to make sure that users cant scam the system by clicking many times on their own stuff to increase the rank.

If one user listens to a song 5 times it will only show as 1 play.
SteveX
SteveX
@ultrajam
10 years ago
2,584 posts
There is some smarty code in the comments here:
https://www.jamroom.net/the-jamroom-network/documentation/modules/274/jrcharts

If you put that in your charts row for a few days you will be able to see how the charts are working with that data to produce the chart.

If your site is already live wrap the code in a check so that the info only shows for the master admin:
{if jrUser_is_master()}
...code here...
{/if}


--
¯\_(ツ)_/¯ Education, learning resources, TEL, AR/VR/MR, CC licensed content, panoramas, interactive narrative, sectional modules (like jrDocs), lunch at Uni of Bristol. Get in touch if you share my current interests or can suggest better :)
alt=
@luis890
10 years ago
57 posts
michael:
There are check in place to make sure that users cant scam the system by clicking many times on their own stuff to increase the rank.

If one user listens to a song 5 times it will only show as 1 play.

Thanks for the info. It explains the counting. But how about the graphics.

Why would monthly http://ecuamusica.com/music_charts and Weekly charts showed uneven..http://ecuamusica.com/music_charts_monthly
Does not makes any sense. I tried on Nova skin and it shows fine.
michael
@michael
10 years ago
7,715 posts
Bit more info on what your seeing and what your expecting to see please. Hard to just guess at stuff.
alt=
@luis890
10 years ago
57 posts
michael:
Bit more info on what your seeing and what your expecting to see please. Hard to just guess at stuff.

I'm sorry for the confusion. What I'm trying to explain is that some how JR5 is grabbing or recording only the counts for yearly charts, and placing on Weekly and monthly charts. That is why the positions shows right, but the number of plays for that particular instance it is not displaying. This confuses people. On jamroom 4 and Media pro and Projam. JR4 used to display counts for Weekly, monthly, and Yearly. As you click on each charts the number of plays changed for that specific time. On my site the same artist is showing on different positions for weekly, monthly and yearly, but with the same number of plays for each chart.
charts.png
charts.png  •  558KB


updated by @luis890: 02/13/14 06:45:26AM
Developer Networks
Developer Networks
@developer-networks
10 years ago
566 posts
It takes the total songs chart position and breaks down the list based on 7, 30, or 365 days. Not plays in those days like your thinking. So you wont get different play counts on seperate returns (7,30, or 365) only a different position return on the list based on the days included in the search parameter.

The chart system based on plays yes. But your generating a return here on a list that is based on days not on plays with in those parameters.


updated by @developer-networks: 02/13/14 07:21:21AM
SteveX
SteveX
@ultrajam
10 years ago
2,584 posts
Put this into your chart row template, look at it over the course of a few days, and how the chart is working will be much clearer:
{if jrUser_is_master()}
chart_count: {$item.chart_count}
chart_position: {$item.chart_position}
chart_new_entry: {$item.chart_new_entry}
chart_change: {$item.chart_change}
chart_direction: {$item.chart_direction}
{/if}



--
¯\_(ツ)_/¯ Education, learning resources, TEL, AR/VR/MR, CC licensed content, panoramas, interactive narrative, sectional modules (like jrDocs), lunch at Uni of Bristol. Get in touch if you share my current interests or can suggest better :)

updated by @ultrajam: 02/13/14 07:27:06AM

Tags