Godaddy Installation
Jamroom Hosting
If you're feeling ambitious -
https://www.jamroom.net/brian/documentation/guides/1188/high-performance-jamroom-on-digitalocean
updated by @paul: 02/25/14 11:50:21AM
but I'm talking about a music player that lists all songs from an artist when you visit his/her profile. On the actual MUSIC section you have to click the play button each time you want to listen a song.
{jrCore_include template="meta.tpl"}
<body>
<div style="background-color:#c8d088;">
{jrCore_image image="logo.png" class="img_scale" alt=$_conf.jrCore_system_name title=$_conf.jrCore_system_name style="max-width:425px;max-height:80px;"}
<h1 style="color:#222;">
{if isset($id) && $id == 'all'}
All Tracks Radio
{elseif isset($album)}
{$album|urldecode}
{elseif isset($id) && $id == 'latest'}
New Tracks Radio
{else}
{$genre|ucwords} Radio
{/if}
</h1>
</div>
<div class="container">
<div class="row">
<div class="col12 last">
{if isset($id) && $id == all}
{jrCore_media_player type="jrAudio_player_dark" module="jrAudio" field="audio_file" order_by="audio_title random" limit=100 autoplay=true}
{elseif isset($id) && $id == latest}
{jrCore_media_player type="jrAudio_player_dark" module="jrAudio" field="audio_file" order_by="_item_id desc" limit=100 autoplay=true}
{elseif isset($genre)}
{jrCore_media_player type="jrAudio_player_dark" module="jrAudio" field="audio_file" search="audio_genre = `$genre`" order_by="_item_id desc" limit=100 autoplay=true}
{elseif isset($album)}
{jrCore_media_player type="jrAudio_player_dark" module="jrAudio" field="audio_file" search="audio_album = `$album`" order_by="audio_order numerical_asc" limit=100 autoplay=true}
{/if}
</div>
</div>
</div>
</body>
</html>