Forum Activity for @michael

michael
@michael
06/07/21 12:56:31AM
7,822 posts

search bar


Jamroom Developers

jrCore_list will go grab a list of whatever its been requested to get.

Jamroom has a system called 'events' and 'listeners':

Docs: Events and Listeners
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1011/events-and-listeners

in summary, there are a bunch of 'events' around the place that other modules can 'listen' for. This allows another module to manipulate the data without each module needing to know that the other exists.

During the jrCore_list call the jrSearch module registers a listener. When the point in the code is reached the query that the jrCore_list call is building is passed to the event which shares it around any module with a registered listener; they do what they want to with the data then pass it back into the flow.

After the jrSearch module has finished it's changed the SQL query that is being run. I think from memory what it does is it grabs a list of items that match the search term and then passes those ids into the main query in an
_item_id IN(1,2,3,4,8,67,95,124)
type structure, so only the items in the originally requested jrCore_list call that are also in the list of item_id's that have the search term in them are returned.
michael
@michael
05/25/21 11:30:17PM
7,822 posts

Social Sign in and the Terms of Servce (TOS) agreement


Using Jamroom

Just logged in to your site with Twitter and landed on the TERMS OF SERVICE (TOS) AGREEMENT. Could not get around not-checking that checkbox to continue.
michael
@michael
05/22/21 04:28:57PM
7,822 posts

Reinstall System Tools


Using Jamroom

What that's saying is: "The tools packaged with the jamroom system for use on your server are not compatible with your server"

Because those are all server tools. What you need to do is ask your hosing company where they are on your server then update their paths:

Docs: "How to use different FFMPEG binary"
https://www.jamroom.net/the-jamroom-network/documentation/howto/4641/howto-use-a-different-ffmpeg-binary

--edit--
Once you know the paths, you can enter them using this system to avoid the need to upload anything:

Docs: Advanced Config Keys
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/5106/advanced-config-keys
updated by @michael: 05/22/21 04:30:43PM
michael
@michael
05/09/21 04:54:54PM
7,822 posts

Add scroll bar to Blog Archive Template


Using Jamroom

Glad you got it working. :)
michael
@michael
05/07/21 10:04:11PM
7,822 posts

Add scroll bar to Blog Archive Template


Using Jamroom

CSS has to go into a place that picks up CSS, so the easiest place for that without needing to adjust templates and upload is at:

ACP -> SKINS -> (your skin) -> STYLE -> CUSTOM EDITOR

After adding and saving make sure you reset the caches

ACP -> MODULES -> SYSTEM CORE -> TOOLS -> RESET CACHES
style.jpg style.jpg - 610KB
michael
@michael
05/07/21 04:15:17PM
7,822 posts

Add scroll bar to Blog Archive Template


Using Jamroom

You need to add a css class for .blog-archive-entry

something like:
.blog-archive-entry{
height: 100px;
overflow: scroll;
}
michael
@michael
05/04/21 07:06:20PM
7,822 posts

Release Licence


Using Jamroom

Not seeing the subdirectory one in the list anymore. May have been caching keeping it visible. Is it still an issue now?
sites.jpg sites.jpg - 575KB
michael
@michael
05/01/21 04:10:53PM
7,822 posts

Change from "Blog" to "News"


Design and Skin Customization

If you also want the URL to change, do that on the INFO tab of the module.
setting.jpg setting.jpg - 656KB
michael
@michael
04/27/21 07:29:06PM
7,822 posts

How do I remove inactive Jamroom Sites from my licenses?


Jamroom Developers

All the licenses for bl******ds.com have been released. Since that domain was for sale, figured that's the one.
michael
@michael
04/25/21 05:53:16PM
7,822 posts

max upload size


Installation and Configuration

The file when uploaded to the jrAudio module will be converted into .mp3 format so that its playable on the web.

Is the intention of the 6GB file to play on the web or to allow downloads of it?

You can transfer it to your server via SFTP if you dont require the server to process it and turn it into an .mp3 file which can be listened to.
  48