Forum Activity for @michael

michael
@michael
12/04/13 03:47:53PM
7,832 posts

Jplayer Android fix (Music wont play)


Using Jamroom

Yes jplayer is the default player.

If that fixes something (cant check, dont have a smartphone sorry.) then its a good thing to have.

Opened a ticket for it here:
https://www.jamroom.net/the-jamroom-network/tracker/208/android-fix-for-jplayer
michael
@michael
12/03/13 08:07:14PM
7,832 posts

Audio Pages Problem


Design and Skin Customization

mtcore:...Any idea how to show single audio?...
Is this the same problem or the start of a different problem, im having trouble following.
michael
@michael
12/03/13 08:04:00PM
7,832 posts

Blank Page


Using Jamroom

That means something in that template is broken. The easiest way to fix it would be different depending on how you changed the template.

If you changed it from the template editor in the ACP then click the reset:

ACP - AUDIO SUPPORT - TEMPLATES
site.com/audio/admin/templates

locate the one with a button in the Reset column and click RESET.
michael
@michael
12/03/13 02:20:40AM
7,832 posts

Audio Pages Problem


Design and Skin Customization

Both of those links play for me.

starts with "..er e he hem he hem"
screenshot_musicloud.png screenshot_musicloud.png - 156KB

updated by @michael: 12/03/13 02:24:22AM
michael
@michael
12/02/13 11:16:12PM
7,832 posts

Audio Pages Problem


Design and Skin Customization

got a link? could still be being processed.
michael
@michael
12/02/13 11:00:55PM
7,832 posts

Marketplace URL Problem


Installation and Configuration

http://www.jamroom.net

something keeps re-writing http to https. its http://www.jamroom.net

updated by @michael: 12/02/13 11:02:43PM
michael
@michael
12/02/13 08:39:17PM
7,832 posts

Create a new tab on the main menu on my jamroom site


Using Jamroom

ah sorry.

Try this, galleries is line 163 ish of jrProjamLight/header.tpl

The galleries item looks like this:
<li><a href="{$jamroom_url}/galleries"{if isset($selected) && $selected == 'galleries'} style="background-color: {$active_color};color:#000;"{/if}>{jrCore_lang skin=$_conf.jrCore_active_skin id="29" default="galleries"}</a></li>

Put your 'li' on either side of that.
michael
@michael
12/02/13 06:36:23PM
7,832 posts

Create a new tab on the main menu on my jamroom site


Using Jamroom

The easiest way is to go into the menu.tpl file in your skin
/skins/jrProJamLight/menu.tpl

and add another entry to the list like this.

This is what it will look like now:
{foreach from=$_items name="loop" item="entry"}
    {assign var="oc" value=""}
    {if isset($entry.menu_onclick)}
        {assign var="oc" value=" onclick=\"`$entry.menu_onclick`"}
    {/if}
    {if isset($entry.menu_function_result) && strlen($entry.menu_function_result) > 0}
        {if is_numeric($entry.menu_function_result)}
        <li><a href="{$entry.menu_url}">{$entry.menu_label} [{$entry.menu_function_result}]</a></li>
            {else}
        <li><a href="{$entry.menu_url}">{$entry.menu_label} <img src="{$entry.menu_function_result}" alt="{$entry.menu_label}"></a></li>
        {/if}
        {else}
    <li><a href="{$entry.menu_url}">{$entry.menu_label}</a></li>
    {/if}
{/foreach}

so add this at the bottom after that last {/foreach}
<li><a href="{$jamroom_url}/galleries">galleries</a></li>

Then reset the caches and it should be good to go.

--edit--
Just to be clear, the full code would look like this now:
{foreach from=$_items name="loop" item="entry"}
    {assign var="oc" value=""}
    {if isset($entry.menu_onclick)}
        {assign var="oc" value=" onclick=\"`$entry.menu_onclick`"}
    {/if}
    {if isset($entry.menu_function_result) && strlen($entry.menu_function_result) > 0}
        {if is_numeric($entry.menu_function_result)}
        <li><a href="{$entry.menu_url}">{$entry.menu_label} [{$entry.menu_function_result}]</a></li>
            {else}
        <li><a href="{$entry.menu_url}">{$entry.menu_label} <img src="{$entry.menu_function_result}" alt="{$entry.menu_label}"></a></li>
        {/if}
        {else}
    <li><a href="{$entry.menu_url}">{$entry.menu_label}</a></li>
    {/if}
{/foreach}
<li><a href="{$jamroom_url}/galleries">galleries</a></li>

updated by @michael: 12/02/13 06:37:13PM
michael
@michael
12/02/13 04:27:19PM
7,832 posts

Are there any developers selling video & audio players like for jr4 ?


Jamroom Developers

Haven't seen any in the wild yet. So far none have been specifically created and added to the marketplace.

No reason it couldn't be done, just hasn't been yet.
michael
@michael
12/01/13 10:34:11PM
7,832 posts

JR5 Cluster server or CDN


Using Jamroom

There were a few threads about this in the old forum.
http://archive.jamroom.net/phpBB2/viewtopic.php?t=42235&highlight=jr5+cluster
http://archive.jamroom.net/phpBB2/viewtopic.php?t=42539&highlight=cluster
http://archive.jamroom.net/phpBB2/viewtopic.php?t=42568&highlight=jr5+cluster

and some others.

The short answer is there is no cluster in JR5.

Quote: [ there are ] plans to allow you to store your media on S3 so it will run in a distributed mode (i.e. multiple JR5 front ends behind a load balancer) so you can scale. 80% of that work is actually already complete, as the media "system" in JR5 is plug in based, but there's some shortcuts that were taken to get JR5 released that I need to go back and expand on so it will work throughout.

For now I would highly recommend something like Digital Ocean - with their SSD's JR5 runs pretty darn good.

Quote: both servers would be identical, with each handling 1/2 the incoming requests. The load balancer would responsible for distributing the requests to the servers. The JR servers would not communicate with each other.

More info on this will come in the future - I'm not able to get into any real details at this time, as it is not supported currently, and things can certainly change.
  759