Charts acting strange after 6.5 Upgrade
Using Jamroom
Hello Michael. If that is the case then the number of plays should be "0" right? But this not the case. 1 and 7 days charts shows the total plays, 14 days seems to be right, but 365 shows plays for the month.
I tried on you demo site and it seems to be working okay.
http://demo.jamroom.net/jrAudioPro2/chart/days=1
Does your demo site has the latest version of Jamrom 6.5.5 with the AudioPro skin 1.1.6?
Just wondering.
I was also testing with the Media Pro Light skin 1.6 domain/music_charts and the charts for 1 week, 1 month and one year do not show any data.
Modifying the code in the music_charts.tpl
from this:
{if isset($_conf.jrMediaProLight_require_images) && $_conf.jrMediaProLight_require_images == 'on'}
{if isset($_post.search_area) && $_post.search_area == 'audio_genre'}
{jrCore_list module="jrAudio" chart_field="audio_file_stream_count" chart_days="30" quota_id=$_conf.jrMediaProLight_artist_quota search1="audio_genre like `$_post.search_string`" template="music_chart_row.tpl" require_image="audio_image" pagebreak=$_conf.jrMediaProLight_default_pagebreak page=$_post.p}
{else}
{jrCore_list module="jrAudio" chart_field="audio_file_stream_count" chart_days="30" quota_id=$_conf.jrMediaProLight_artist_quota template="music_chart_row.tpl" require_image="audio_image" pagebreak=$_conf.jrMediaProLight_default_pagebreak page=$_post.p}
{/if}
{else}
{if isset($_post.search_area) && $_post.search_area == 'audio_genre'}
{jrCore_list module="jrAudio" chart_field="audio_file_stream_count" chart_days="30" quota_id=$_conf.jrMediaProLight_artist_quota search1="audio_genre like `$_post.search_string`" template="music_chart_row.tpl" pagebreak=$_conf.jrMediaProLight_default_pagebreak page=$_post.p}
{else}
{jrCore_list module="jrAudio" chart_field="audio_file_stream_count" chart_days="30" quota_id=$_conf.jrMediaProLight_artist_quota template="music_chart_row.tpl" pagebreak=$_conf.jrMediaProLight_default_pagebreak page=$_post.p}
{/if}
{/if}
to this:
{if isset($_conf.jrMediaProLight_require_images) && $_conf.jrMediaProLight_require_images == 'on'}
{if isset($_post.search_area) && $_post.search_area == 'audio_genre'}
{jrCore_list module="jrAudio" chart_field="audio_file_stream_count" chart_days="30" template="music_chart_row.tpl" pagebreak=$_conf.jrMediaProLight_default_pagebreak page=$_post.p}
{else}
{jrCore_list module="jrAudio" chart_field="audio_file_stream_count" chart_days="30" template="music_chart_row.tpl" pagebreak=$_conf.jrMediaProLight_default_pagebreak page=$_post.p}
{/if}
{else}
{if isset($_post.search_area) && $_post.search_area == 'audio_genre'}
{jrCore_list module="jrAudio" chart_field="audio_file_stream_count" chart_days="30" template="music_chart_row.tpl" pagebreak=$_conf.jrMediaProLight_default_pagebreak page=$_post.p}
{else}
{jrCore_list module="jrAudio" chart_field="audio_file_stream_count" chart_days="30" template="music_chart_row.tpl" pagebreak=$_conf.jrMediaProLight_default_pagebreak page=$_post.p}
{/if}
seems to display data but with the same wrong plays counts.
I tried on your demo site
http://demo.jamroom.net/jrMediaProLight/music_charts
and it seems to work fine.
Now I'm not sure if the jamroom core and skin are current.
Just wondering