Forum Activity for @douglas

douglas
@douglas
02/24/16 05:27:08AM
2,807 posts

All uploads over 15 mbs fail


Jamroom Developers

Without your admin login to check things out we can only guess at what the issue might be.

If you'll send us your admin login ( support[at]jamroom[dot]net ), for your http://centricbeats.com/ site, we can check it out for you.

Thanks!
douglas
@douglas
02/24/16 04:54:08AM
2,807 posts

editing pages after moving them from profile to visible on main page?


Ning To Jamroom

If you are running the latest version of Jamroom, then the Page browser is in your ACP > Admin > Page Creator > Tools > Browse Existing Pages.
douglas
@douglas
02/23/16 09:08:15AM
2,807 posts

Missing Menues In 2 Skins After Update


Design and Skin Customization

If you are using the Site Builder module, you'll have to create the menu using the Site Builder menu, just use the same links from your skins header_menu_desktop.tpl file.

You can turn off Site Builder and your original menu will come back.
douglas
@douglas
02/22/16 09:42:01AM
2,807 posts

Facebook Audio Player


Using Jamroom

It looks like it is a flash player and its using the modules/jrShareThis/contrib/flash/multi.swf file.

I'm not seeing a way to modify it since the source files aren't there.
updated by @douglas: 02/22/16 09:42:38AM
douglas
@douglas
02/22/16 08:17:09AM
2,807 posts

[error] => Query Error: Data too long for column 'data' at row 1


Jamroom Developers

Are you running the latest version of the Jamroom core and modules?
douglas
@douglas
02/21/16 09:57:44AM
2,807 posts

My sitebuilder buttons dissapeared from my index


Using Jamroom

What skin are you using?

Also, If you've made any modifications to the index page, try undoing them and see if that fixes your issue.
douglas
@douglas
02/21/16 09:50:06AM
2,807 posts

Online - Stats - Feeds: Menu and Default Active Tab Order


Design and Skin Customization

In your skins/YOURSKIN/side_home.tpl file, find this:

{* STATS | ONLINE *}
<table class="menu_tab">
    <tr>
        <td>
            <div id="default" class="p_choice" onclick="jrLoad('#stats','{$jamroom_url}/stats');jrSetActive('#default');">{jrCore_lang skin=$_conf.jrCore_active_skin id="36" default="stats"}</div>
        </td>
        <td class="spacer">&nbsp;</td>
        <td>
            <div id="rss_feeds" class="p_choice" onclick="jrLoad('#stats','{$jamroom_url}/site_feeds');jrSetActive('#rss_feeds');">{jrCore_lang skin=$_conf.jrCore_active_skin id="134" default="Feeds"}</div>
        </td>
        <td class="spacer">&nbsp;</td>
        <td>
            <div id="online" class="p_choice" onclick="jrLoad('#stats','{$jamroom_url}/online');jrSetActive('#online');">{jrCore_lang skin=$_conf.jrCore_active_skin id="113" default="online"}</div>
        </td>
    </tr>
</table>

<div id="stats" class="body_2 mb20">
    <div style="width:90%;display:table;margin:0 auto;">

        {capture name="template" assign="stats_tpl"}
            {literal}
                {foreach $_stats as $title => $_stat}
                <div style="display:table-row">
                    <div class="capital bold" style="display:table-cell">{$title}</div>
                    <div class="hl-3" style="width:5%;display:table-cell;text-align:right;">{$_stat.count}</div>
                </div>
                {/foreach}
            {/literal}
        {/capture}

        {jrCore_stats template=$stats_tpl}

    </div>
</div>

and change it to this:

{* STATS | ONLINE *}
<table class="menu_tab">
    <tr>
        <td>
            <div id="default" class="p_choice" onclick="jrLoad('#stats','{$jamroom_url}/online');jrSetActive('#default');">{jrCore_lang skin=$_conf.jrCore_active_skin id="113" default="online"}</div>
        </td>
        <td class="spacer">&nbsp;</td>
        <td>
            <div id="rss_feeds" class="p_choice" onclick="jrLoad('#stats','{$jamroom_url}/site_feeds');jrSetActive('#rss_feeds');">{jrCore_lang skin=$_conf.jrCore_active_skin id="134" default="Feeds"}</div>
        </td>
        <td class="spacer">&nbsp;</td>
        <td>
            <div id="statistics" class="p_choice" onclick="jrLoad('#stats','{$jamroom_url}/stats');jrSetActive('#statistics');">{jrCore_lang skin=$_conf.jrCore_active_skin id="36" default="stats"}</div>
        </td>
    </tr>
</table>

<div id="stats" class="body_2 mb20">
    <div style="width:90%;display:table;margin:0 auto;">

        {jrUser_whos_online template="whos_online.tpl"}

    </div>
</div>
  113