Forum Activity for @michael

michael
@michael
07/03/16 04:37:17PM
7,832 posts

Facebook link issue


Using Jamroom

Where does the link take you if it doesn't take you to the page? Can you post a screenshot.
michael
@michael
07/02/16 09:10:32PM
7,832 posts

Invalid System Id


Genosis

might need to check that your server meets the requirements to run jamroom:

Docs: Requirements
https://www.jamroom.net/the-jamroom-network/documentation/getting-started/774/requirements

Sounds like either your server is not able use the 'symlink' function to move the filesystem around.

What happens when a new module is installed via the marketplace is that the old version is moved to its version number and a new version is downloaded.

Ask your server company to check to see if your server is able to do that.

If its not possible, then the way around it is to not use the marketplace for updates and installs and download the files from jamroom.net and upload them to the server.

That way will avoid the need for symlinks, but its much more of a hassle to keep your system up to date.
michael
@michael
07/02/16 02:09:49AM
7,832 posts

How to upload and search audio and video by date and location?


Using Jamroom

The way php's strftime() function works is by checking the servers local setting as is explained in a similar question on Stack Overflow

http://stackoverflow.com/questions/25718115/trying-to-display-a-date-in-spanish

Jamroom currently doesn't change the servers settings when the language is switched between created languages, it just switches the jamroom settings.

I will take a look and see if there is a way to change the server settings in the core when the language is switched. Not sure how feasible it is to change the server settings per visiting user, but will look into it.

If its not possible, I would recommend using a non-language derived date format 24-02-2016.
michael
@michael
07/02/16 12:12:59AM
7,832 posts

Alpha Team Guidelines



brian:.... as you guys are going to come across as more impartial since you're not part of the JR team...
Except for that unexplained 'alpha team' badge on their profiles.

Agreed though, any extra conversation out there in the wild must be a good thing for getting JR known.
michael
@michael
06/30/16 11:16:48PM
7,832 posts

New Hosting features and plans - "Jamroom Premium"


Announcements

Good place to start is the docs:

Docs: Table of Contents
https://www.jamroom.net/the-jamroom-network/documentation/contents

Each module has its own page, Let us know if there's any issues. :)
michael
@michael
06/30/16 07:02:33PM
7,832 posts

Alpha Team marketplace channel



got the email, thanks.
michael
@michael
06/30/16 06:51:13PM
7,832 posts

Welcome to the Alpha Team



Welcome @ultrajam, good to see you SteveX :)
michael
@michael
06/29/16 11:16:03PM
7,832 posts

Queue depth status


Using Jamroom

Might be able to use the jrTrace module add an event.
https://www.jamroom.net/the-jamroom-network/networkmarket/92/event-tracer

might need a custom event though if one doesnt exist.
michael
@michael
06/29/16 04:03:41PM
7,832 posts

Team Chat



Thats the type of setup I like, much display area. :)
michael
@michael
06/29/16 03:19:20PM
7,832 posts

Multi-Skin Coding for Modules


Jamroom Developers

IDEAS:
* add multiple classes.
* use the same classes names for all your skins.

Each skin can over-ride any module template for itself:

Docs: "Altering a modules template"
https://www.jamroom.net/the-jamroom-network/documentation/development/1051/altering-a-modules-template

So each skin can have its own version of the modules template and styled however it likes.

If you want to set the css classes in just one location, perhaps the TEMPLATES tab of the module in the ACP, AND you dont want to use the same classes across different skins (for whatever reason) you can add more than one class.

<div class="skin1_blog_container  skin2_blog_container skin3_blog_container">
  <div class="skin1_blog_item  skin2_blog_item skin3_blog_item">

Then in skin1 you can use one set of css to target one class, while in another target a different class.
  379