Forum Activity for @michael

michael
@michael
03/10/16 05:25:17PM
7,832 posts

Testing the Wall Widget


Using Jamroom

yep, I just went here: http://iixxiicc.jamroomhosting.com/b360/wall and commented on the video post there.

Then went to the location that wall post was at originally: http://iixxiicc.jamroomhosting.com/test-wall

Before the comment it was down at #4 ish, then after the comment (that happened on the PROFILE) the post had moved to the top of the wall again.

comments that are added to the post make the post come to the top again because there is activity on them. Regardless of whether the comment post was made on the profile or on the wall.

The difference is the wall items that are displayed on the users PROFILE do not run in "last commented at top" order, they're in as-they-were-posted order.

So that screws it up for you naked mole rat, or sea pig, or whatever that image is of curtis. ;)

Because when a comment is made it brings the post back to the top.
michael
@michael
03/09/16 07:31:59PM
7,832 posts

Testing the Wall Widget


Using Jamroom

It could be used as the central location to upload stuff. The normal flow right now is:
* user adds something to a profile (ie an audio file)
* lists are build of stuff from profiles

It could be used with the flow of:
* user clicks the 'create profile media' and adds media (ie an audio file)
* the audio file is added to their profiles AUDIO tab AND shows on the wall.

So its just a different flow.
michael
@michael
03/09/16 07:22:53PM
7,832 posts

The home page info for artist , features ,blog etc ... has been disable - how can I get it back


Jamroom Developers

do you have sitebuilder enabled and active on your site?
is that page a site builder page?
if no what is the contents of your skins index.tpl file?
does it still look like that if you change skins?
michael
@michael
03/08/16 08:07:08PM
7,832 posts

still cant use sitebuilder buttns missing etc


Using Jamroom

There are still tab containers.

* Open site builder
* click on 'Container Settings' in the bottom right of the container.
* change "container layout" from the default of
- "Stacked - widget output is stacked vertically inside the container" TO
- "Tabbed - each widget is located on its own tab inside the container"
michael
@michael
03/08/16 03:45:00PM
7,832 posts

any way to recover lost innodb tables?


Installation and Configuration

I was right on time, you were 10 min too fast. ;) :)

Glad you got it sorted, sucks you lost some data.
michael
@michael
03/08/16 03:36:26PM
7,832 posts

Site Builder Menu Editor OnClick JavaScript Text Color Code


Design and Skin Customization

its not the right way go go about it. The onclick event happens when you click the link.

If you have these links:
aaa | bbb | ccc | ddd | eee

and you are on page aaa and click the link to go to page bbb then when you click the link even if that changed the color of bbb the page would refresh and the color would be gone when the page loaded.

One use for onclick could be to open a different site in a separate window, ie:
window.open('https://www.jamroom.net/the-jamroom-network/forum/new_posts');return false;
would, when clicked, open this forum in a new window instead of going to the target URL. If for whatever reason that is something you wanted to do.

What you're after is a class on the LI that contains the menu. You can add one like this to the menu.tpl of site builder
<li {if $_post.module_url == $_l0.menu_url}class="active"{/if}>

thats line 2 of
/modules/jrSiteBuilder/templates/menu.tpl

so the whole thing looks like this:
{foreach $_list as $_l0}
<li {if $_post.module_url == $_l0.menu_url}class="active"{/if}>
    <a href="{if $_l0.menu_url|substr:0:4 === 'http'}{$_l0.menu_url}{else}{$jamroom_url}/{$_l0.menu_url}{/if}" onclick="{$_l0.menu_onclick}" class="menu_0_link" data-topic="{$_l0.menu_url}">{$_l0.menu_title}<span class="notifications none">0</span></a>
    {if is_array($_l0._children)}
    <ul>
        {foreach $_l0._children as $_l1}
        <li>
            <a href="{if $_l1.menu_url|substr:0:4 === 'http'}{$_l1.menu_url}{else}{$jamroom_url}/{$_l1.menu_url}{/if}" onclick="{$_l1.menu_onclick}" >{$_l1.menu_title}</a>
            {if is_array($_l1._children)}
            <ul>
            {foreach $_l1._children as $_l2}
                <li><a href="{if $_l2.menu_url|substr:0:4 === 'http'}{$_l2.menu_url}{else}{$jamroom_url}/{$_l2.menu_url}{/if}" onclick="{$_l2.menu_onclick}" >{$_l2.menu_title}</a></li>
            {/foreach}
            </ul>
            {/if}
        </li>
        {/foreach}
    </ul>
    {/if}
</li>
{/foreach}

Then you will have a .active class and you can apply CSS to that class.

I'll get this added in to the Site Builder module too, because its a good idea.
michael
@michael
03/08/16 03:15:40PM
7,832 posts

any way to recover lost innodb tables?


Installation and Configuration

Wish I had the answer for you on this one. Sounds terribly stressful.

Server guys dont have a full server backup by any chance perhaps?

There's a PDF here:
https://www.percona.com/files/presentations/UC2010-Recovery-of-lost-or-corrupted-InnoDB-tables.pdf

That has a promising name to it.
michael
@michael
03/08/16 03:09:24PM
7,832 posts

Proxima User details after loging issue.


Proxima

could be because the user was not created by the app. If the user was existed by creating it on the website, not via POST then it will not have an _app_id.

Since there is no _app_id in that users datastore data that would cause the issue above.
michael
@michael
03/08/16 03:03:41PM
7,832 posts

Private Notes Button


Design and Skin Customization

awesome, good stuff. :)
  418