Forum Activity for @michael

michael
@michael
11/11/15 12:35:47AM
7,832 posts

{jrCore_media_player} invalid value received for "type" parameter


Installation and Configuration

Go to
ACP -> SKINS -> CURRENT SKIN -> GLOBAL CONFIG -> PLAYERS

Select the player you want to use and click SAVE CHANGES.

If you're using your own custom skin, there's some code for adding the PLAYERS tab to your skin in this thread:
https://www.jamroom.net/the-jamroom-network/forum/new_posts/34760/jamroom-53-beta-kickoff
michael
@michael
11/10/15 10:58:38PM
7,832 posts

Performance check


Using Jamroom

3125 is the fastest score I've seen yet. Well done.
michael
@michael
11/10/15 10:49:59PM
7,832 posts

YouTube Video Display Vanishes Upon Skin Change


Using Jamroom

If you'd like you can send the admin login details to support [at] jamroom dot net attn:michael

and I'll get you setup to get started using the Site Builder system.

First thing you should do is turn off the proxima modules, somethings weird on your system. I can see your audio files here:
http://hypnoticsoundscapes.com/audio

but then clicking on any profile link ( eg http://hypnoticsoundscapes.com/hypnotic-soundscapes/audio/4/blue-nebula-extended-version ) gives me 'Not Found'.

That's not right and I think its because of proxima.

I'd like to login, install Site Builder, so you can start constructing your site.

Have a read here:

"What is Site Builder?"
https://www.jamroom.net/the-jamroom-network/documentation/site-builder/2634/what-is-site-builder

--edit--
when you send the email, include the link to this thread so I can track back here. Thanks.
updated by @michael: 11/10/15 10:51:18PM
michael
@michael
11/10/15 10:38:05PM
7,832 posts

How to build a JrElastic multilingual-based site using the Site Builder?


Using Jamroom

The problem I see with creating a multi-lingual site is the content.

When a spanish user uploads an audio track and calls it:
"Donde Esta la Pollo"

Then a french user adds a song and calls it:
"Où est le poulet"

What is an english user going to see? Are they only going to see songs that are in english? Are they going to see all the songs? If so what do you do about the title for songs that are not in english? You could use the Form Designer and require all users to upload a title in all 3 languages, but not all users know all three languages.

There is a lot to development thought that needs to go into multi-lingual sites. Google gets it wrong and it annoys and frustrates me every time I encounter it and they have money and developers.

Another thing that needs to be thought about is are you capable of replying to email requests that come in in each of the languages.
michael
@michael
11/10/15 10:30:53PM
7,832 posts

No Flag images in the jrElastic Skin


Using Jamroom

That code {$jamroom_url} should not be outputting what you have shown. {$jamroom_url} is used everywhere to get to the start of the site.

So if the site is installed at:
site.com/

then {$jamroom_url} should output http://site.com/

but if the site is installed at:
site.com/jamroom/

then {$jamroom_url} should output http://site.com/jamroom/

Its important because without it you'd be linking to a relative URL which may not be the correct destination.
michael
@michael
11/10/15 09:08:49PM
7,832 posts

Jamroom 5.3 Beta Kickoff


Announcements

Just had the same issue here. Found the solution, on a regular skin, eg elastic, go to:
ACP -> SKINS -> GLOBAL CONFIG -> PLAYERS

Select the player type from the dropdown list and save the changes. That will get the player to show.

I know your on a custom skin, so the location for making that option appear comes from the skins config.php file

for elastic thats:
/skins/jrElastic/config.php

and for elastic, its this option:

    // Player Type
    $_ptype  = array(
        'blue_monday'          => 'Blue Monday Player',
        'gray_overlay_player'  => 'Gray Overlay Player',
        'midnight_player'      => 'Midnight Player',
        'black_overlay_player' => 'Black Overlay Player',
    );
    $_tmp = array(
        'name'     => 'player_type',
        'label'    => 'Player Type',
        'help'     => 'Select the type of player you want to use on your site.Original = Blue Monday New = New Light Player',
        'type'     => 'select',
        'options'  => $_ptype,
        'default'  => 'black_overlay_player',
        'order'    => 30,
        'section'  => 'Players'
    );
    jrCore_register_setting('jrElastic', $_tmp);

So if you add that option to your skins config.php file and change the bits that read 'jrElastic' to your skins name, clear the caches you should be good to go again.
michael
@michael
11/10/15 01:57:04AM
7,832 posts

Performance check


Using Jamroom

If your using a Jamroom Hosting server provided by us, we can help out as it shouldn't be that slow.
But if its your own server or provided by a separate hosting company then that's a question for them.

If you're running your own server, check out this guide put together by @brian

"High Performance Jamroom on DigitalOcean"
https://www.jamroom.net/the-jamroom-network/blog/23/high-performance-jamroom-on-digitalocean
michael
@michael
11/10/15 01:44:47AM
7,832 posts

Can group owners add a document to one of their group's pages? If so, how?


Ning To Jamroom

ICW:...how do group owners add a document to one of their group's pages?...

"Documenation: Howto embed a file into a page"
https://www.jamroom.net/the-jamroom-network/documentation/howto/3221/howto-embed-a-file-into-a-page
michael
@michael
11/10/15 01:00:53AM
7,832 posts

Can i use the Annika Live Wall as a comment wall?


Using Jamroom

Zachary Moonshine:
can i stick the annika live wall in place of my embeded chatroom and use it as a live comment wall so all members can post images and videos in it ?

The above code will post comments that are left on the site and update them, but its not a chat module. Its just a live list of the latest X amount of comments from wherever they happen to be.
  466