Forum Activity for @michael

michael
@michael
05/04/20 04:33:09PM
7,816 posts

Alternate use for platform


Genosis

Jamroom is designed to be customizable. Genosis is a set of extra modules and a custom skin built on top of jamroom so its customizable too.

The biggest issue you will have will be learning how the platform works because there is a learning curve. In order to do it you will need to look at code.

As with anything there is a trade-off. If we try to make things easier for non-developers to do, then things get more complex for developers. Jamroom comes from being a system for developers and the non-developer stuff is added on as extras, so if you're coming from the perspective of using it as a development tool integrated in a web developers work flow then its just a question of getting things arranged how you want them.

If the question comes from a "Can I change some settings and have this work?" perspective then im not sure, maybe.
michael
@michael
05/04/20 05:55:22AM
7,816 posts

How to test as a user while in maintenance ?


Using Jamroom

not a regular user, no. Probably what you're after is the jrBeta module that will allow you to take the site off maintanence mode but block signups and also allow login from beta testers

--edit--
Docs: Beta Launch Page
https://www.jamroom.net/the-jamroom-network/documentation/modules/2953/beta-launch-page
updated by @michael: 05/04/20 05:56:54AM
michael
@michael
05/03/20 04:03:17PM
7,816 posts

Audio Pro - Form Builder


Design and Skin Customization

Are you talking about "Simple Custom Forms"
https://www.jamroom.net/the-jamroom-network/documentation/modules/2885/simple-custom-forms

or the "Form Designer"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/1275/using-the-form-designer

Its my guess that you're talking about adding extra values to modules using the Form Designer, if its that, then the designer is just the first part. Its the location that the information is collected and put into the database.

From there to get the information to show you need to get it out of the database, that's the job of the skins. Skins format the information from the database in whatever structure you want.

So if you went into the audio module's custom form designer and added a text area to collect "Composer" and saved it to audio_composer then in the skin templates where you see all the other variables like {$item.audio_title} then you could use {$item.audio_composer} and the value entered would show.
michael
@michael
05/03/20 03:30:55PM
7,816 posts

Picking up some errors


Installation and Configuration

Try running the INTEGRITY CHECK to fix the play_key error, go to:
ACP -> CORE -> SYSTEM CORE -> TOOLS -> INTEGRITY CHECK
check all the checkboxes, then START.

That should make sure any tables that need creating are created.

The second one is just a warning, its saying that for some reason the process that fires every minute couldnt complete on one particular minute. But thats ok, because the process that fires the next minute will pick up any left over tasks that were queued and do them.
michael
@michael
04/29/20 01:38:52AM
7,816 posts

Unable to FTP your software to my hosting


Using Jamroom

I don't understand what you mean by "It wont launch".
michael
@michael
04/28/20 10:38:42PM
7,816 posts

Merging two people?


Genosis

There is no "Merge these two people into one" button anywhere. If there was, how you would you desire that it worked? Is this something that would need to be done often enough that it requires a button?
michael
@michael
04/28/20 10:33:19PM
7,816 posts

Unable to FTP your software to my hosting


Using Jamroom

not sure how well jamroom will work in a sub-directory, but the site is there:
http://regal-network.com/revelation/install.php
michael
@michael
04/27/20 08:48:47PM
7,816 posts

Fixing Errant HTML Content


Jamroom Developers

Is this coming in to the editor? because tinymce has a tidy option built in but is disabled by default because it can cause conflicts with nl2br if the skin is not expecting to get pretty html.

my guess is its not, i suspect you're just scraping and processing then going straight to database. Could "Tidy" be built as a module, if so im sure it could be dropped in.
michael
@michael
04/27/20 08:43:00PM
7,816 posts

using AudiPro profile audioplayer on another skin


Design and Skin Customization

Is it available on your site at:
ACP -> SKINS -> YOUR SKIN -> GLOBAL STYLE -> PLAYERS -> Player Type
michael
@michael
04/27/20 08:39:35PM
7,816 posts

Fixing Errant HTML Content


Jamroom Developers

The jrCore_strip_html() function deals a little with html purifier and there is a listener in there for 'html_purifier' to allow other modules to adjust the settings of html purifier without adjusting core code. The purifier is run when HTML that would be stripped is combined with the quota based settings found at:
ACP -> CORE -> SYSTEM CORE -> QUOTA CONFIG -> Allowed HTML Tags.

Other functions that may be useful if you're building something:
* jrCore_clean_html() may be what you need to close out any open dom tags.

it calls: jrCore_balance_html_tags() and jrCore_closetags() which may be of use in setting something up.
  70