Reset Stats for Plays, Views, Etc. in JR 6
Using Jamroom
Unfortunately not. Also, in JR6, there is no one table to reset them all in. The various 'stats' for each modue are saved in the modules' datastore tables (jr_jraudio_item_key for example). What you need to look for in these tables are 'key' fields ending in '_count', so in the Audio datastore table, 'audio_file_stream_count' is the number of times that item has been streamed, so in this case you could run the query -
UPDATE jr_jraudio_item_key SET `value` = 0 WHERE `key` = 'audio_file_stream_count'
Standard warning when suggesting users update their databases directly - be careful - its easy to break things