Forum Activity for @michael

michael
@michael
10/29/15 03:02:58AM
7,832 posts

Steps to make the final move?


Ning To Jamroom

There are these docs:

"Ning to Jamroom: Table of Contents"
https://www.jamroom.net/ning-to-jamroom/documentation/contents

in case you haven't seen them before. If you have could you let me know what you are expecting to see (or would like to see) that isn't there please. Im in documentation mode right now. :)
michael
@michael
10/29/15 02:50:25AM
7,832 posts

Mailgun error message


Jamroom Hosting

Not sure that you have to setup pay, just be setup so that they can charge you if you go over the 10,000 emails per month limit.

The pricing is here:
http://www.mailgun.com/pricing
michael
@michael
10/29/15 02:08:32AM
7,832 posts

mailgun stopped working


Design and Skin Customization

Your right though, with 15,000 member, if you used mailgun to send them 1 email per day, then thats $220 bill for the month.

If you send them 2 emails per day its $386.50 so it is getting a bit pricey.

I have the MailGun docs for the module here:

"Mailgun STMP"
https://www.jamroom.net/the-jamroom-network/documentation/modules/282/mailgun-smtp

What is it missing? What do you want to know that is not there but should be? Thanks.
michael
@michael
10/29/15 01:56:06AM
7,832 posts

Add to Pending when a specific field changes


Jamroom Developers

What about just not letting them update the title? Go into the Form Designer for the UPDATE form and change active to NO.

Or set its 'Display Group' to be Master admin and Profile admin only, so that way if they want to change the title they have to ask an administrator to do it.
michael
@michael
10/29/15 01:49:34AM
7,832 posts

Nova skin showing different sized images problem


Installation and Configuration

Eddy:...but it still shows as a portrait everywhere else....
You'll need to fix it up in those other locations too.

There are a number of ways to fix it, either with the 'crop=square' feature of the image processor or using CSS to do it, but if you want it square in a location where it isn't forced to be that way, then you need to adjust the location to force it in that location.
michael
@michael
10/28/15 12:22:02AM
7,832 posts

Player wont play on Facebook


Using Jamroom

Without knowing the URL its hard to say, you can try putting the URL in here:
https://developers.facebook.com/tools/debug/og/object/

and see what the facebook debugger has to say.
michael
@michael
10/28/15 12:17:26AM
7,832 posts

a discussion just went missing


Ning To Jamroom

Things shouldn’t just disappear. There really needs to be a cause for them. Locating that cause can be trickey, its kind of like a "Where did I leave my keys" problem in that the best way to solve the issue is to retrace the steps of what happened.

Right now we know, something somewhere which we thought was there is no longer there.

First step in retracing: Which module was it? Has anything changed on the profile it was on lately?

any other clues?
michael
@michael
10/27/15 02:53:55AM
7,832 posts

Documentation suggestions


Suggestions

radiomusicgroup:
Thanks @paul :) That works! Going to be a long long night since I gotta do this twice... :(

Just updated this thread with one method that will be better than doing it twice.
https://www.jamroom.net/the-jamroom-network/forum/installation-and-configuration/33653/are-there-still-lofi-and-hifi-audio-options-in-jr5
michael
@michael
10/27/15 02:52:44AM
7,832 posts

Are there still lofi and hifi audio options in JR5?


Installation and Configuration

I just tried this and it worked:
* use the Form Designer to add another field to both the CREATE and UPDATE forms for the audio module.

The form field name will be 'audio_lofi' and the type will be 'audio'. This will allow another file to be uploaded during the audio create process.

Then add these 3 lines to somewhere on the jrAudio's item_detail.tpl page:

{jrCore_media_player type="jrAudio_button" module="jrAudio" field="audio_lofi" item=$item}<br>
{jrCore_module_url module="jrAudio" assign="murl"}
<a href="{$jamroom_url}/{$murl}/download/audio_lofi/{$item._item_id}">Download Lofi</a>
That will put the button player there to play the lofi version and the download link to download the lofi version.

You then need to turn off the block file downloads:
ACP -> MEDIA -> AUDIO SUPPORT -> GLOBAL CONFIG -> "block file downloads"

Perhaps wrap the above in an {if jrUser_is_logged_in()} to make it only visible to the logged in users.
  472