Forum Activity for @michael

michael
@michael
12/02/21 03:51:34PM
7,720 posts

album artwork not posting on FB


Using Jamroom

We've added a new template to the jrAudio module so albums have og:tags it will be included in the next release 3.0.5 once its had a chance to be tested.

From there you can customize the jrAudio/templates/item_list_meta.tpl file to change it if it needs changing.
michael
@michael
12/02/21 02:24:03PM
7,720 posts

Hook for server-based final validation of new comment


Jamroom Developers

sure, 'run_view_function' is a good place to check it. Before the _save() function has even started. Best spot.
michael
@michael
12/02/21 02:19:48PM
7,720 posts

Hook for server-based final validation of new comment


Jamroom Developers

ah sorry, those are the last points before storing the comment. I need to read better. I'll look at returning validation.
michael
@michael
12/02/21 02:17:21PM
7,720 posts

Hook for server-based final validation of new comment


Jamroom Developers

The normal one you'd use is
'db_create_item'

If you were in a REAL bind after that there is
$func = jrCore_get_active_datastore_function($module, 'db_create_item');

Where you could choose not to use jamrooms datatore function and instead roll your own by copying the
_jrCore_db_create_item()
as a starting point.

--
Yeah those are the last.

Another option to try is to change the priority of the module in its _meta() function, eg the jrSmiley module for some reason wants to be called later in the flow so sets its weight to 80

function jrSmiley_meta(){
    return array(
        'name'        => 'Smiley Support',
        'url'         => 'smiley',
        'version'     => '1.4.2',
        'developer'   => 'The Jamroom Network, ©' . strftime('%Y'),
        'description' => 'Replace smiley string with a graphic in text fields',
        'doc_url'     => 'https://www.jamroom.net/the-jamroom-network/documentation/modules/2915/smiley-support',
        'category'    => 'site',
        'priority'    => 80,
        'license'     => 'mpl',
        'requires'    => 'jrCore:6.5.0'
    );
}

Setting your weight to even higher could put you later than whatever you want to avoid.
michael
@michael
11/27/21 04:42:36PM
7,720 posts

album artwork not posting on FB


Using Jamroom

The page has no
og:image
tags in it, that's what facebook uses to determine which image to show. Add og:image tag via the jrMeta module to get the one you want to show.
michael
@michael
11/25/21 03:00:56PM
7,720 posts

Skins That Have The Best Of Both Worlds


Design and Skin Customization

The thing with the jamroom skins is that their not just a theme set of colors but rather the means to allow the developer to build whatever they want.

I hear what you're saying though, cherry picking bits and pieces to build something new would be cool. Being able to use any part of any skin in any other skin would be a good addition.

To meet that request a standardized set of CSS rules would need to be implemented and enforced. That's probably doable, it would mean sacrificing a bit of flexibility so each skin would become more like the others. Thanks for the idea.
michael
@michael
11/24/21 08:32:33PM
7,720 posts

Skins That Have The Best Of Both Worlds


Design and Skin Customization

The skins were always intended as a starting point/ showcase of features rather than an end product. There's a CLONE SKIN button in the developer tools module:

Docs: Creating your own Skin ( Clone from an Existing Skin )
https://www.jamroom.net/the-jamroom-network/documentation/skin-design-guide/839/creating-your-own-skin-clone-from-an-existing-skin

Clone one of those skins to make it your own then grab the code from the other skins and make it into your own skin.

If you'd rather have someone do it for you send us a support ticket at support at jamroom dot net with a title like "custom skin work project" or something like that and a link to this thread.

--edit--
Judging by your footer links the skin dev looks like you can handle it yourself with a few pointers. One of your footer links seems weird though, this one: https://www.imixyourmusic.com It goes to a chinese site "Fuma Heavy machinery". You might want to check that domain is setup correctly.
hmmmm.png hmmmm.png - 1.5MB

updated by @michael: 11/24/21 08:37:48PM
michael
@michael
11/20/21 04:09:43PM
7,720 posts

Duplicate key preventing updates


Using Jamroom

The base query starts with:
INSERT INTO jr_jruser_session (session_id......
That's the active user info for the current session. Try logging out and back in again.

If that fails truncate the jr_jruser_session table. Doing that will force everyone to have to login again but there should not be duplicate sessions.
michael
@michael
11/11/21 03:40:16PM
7,720 posts

ACP Error


Using Jamroom

Delete this moudle folder if it exists:
/home/dubmusic/public_html/dubmusic.com/modules/jrLike-release

and set the "Keep Versions" to only keep 1 version.
version.jpg version.jpg - 897KB
michael
@michael
11/08/21 05:24:48PM
7,720 posts

ACP Error


Using Jamroom

izhmel:
You can also find many missing files / php errors in your log files which might help in solving this issue:

tail -1000 /usr/local/apache/logs/error_log
Run the command they sent you then post it here so we can see what they're talking about:
tail -1000 /usr/local/apache/logs/error_log

Suggest you move to Jamroom Hosting.
https://www.jamroom.net/products#hosted
  29