Forum Activity for @michael

michael
@michael
12/02/21 02:17:21PM
7,717 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,717 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,717 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,717 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,717 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,717 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,717 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
michael
@michael
11/07/21 06:29:22PM
7,717 posts

Any chance there will be a Followme2 skin


Design and Skin Customization

ACP -> MODULES -> CORE -> MARKETPLACE -> TOOLS -> MARKETPLACE CHANNELS -> BETA -> ENABLE

Will turn it on, then you'll get the beta versions in when you click INSTALL on any module and modules that are currently stable will appear in your updates section.
michael
@michael
11/05/21 08:47:05PM
7,717 posts

Second Site


Installation and Configuration

Just make it in the same way you made the first site:
* Download the "Open Source" edition from here:
https://www.jamroom.net/products

Upload it to your new domain location then visit that domain, the install script will run and you enter the database credentials ..... Create the first user, that will be your admin user who can access the ACP....... go to the ACP -> CORE -> MARKETPLACE -> TOOLS -> MARKETPLACE CHANNELS -> (jamroom) -> MODIFY

Then put in your premium license key found under the "Your marketplace settings" here:
https://www.jamroom.net/networklicense/licenses/profile_id=8305/user_id=8296

Once thats done all the modules will nave no price on them in the MARKETPLACE you should just see INSTALL instead of a price to buy.
michael
@michael
11/03/21 02:31:18PM
7,717 posts

Is it possible to know what search terms have been used to find a jr site?


Using Jamroom

In the jr_jrsearch_fulltext table the search terms used ON your site are stored but only something like GoogleAnalytics will be able to tell you what search terms were used to get the users TO your site.

There are many analytics packages but GA is popular because its free.

Search "Google Analytics Alternatives" for options, eg:
https://plausible.io/blog/google-analytics-alternatives
  29