Forum Activity for @michael

michael
@michael
01/23/14 07:46:48PM
7,832 posts

Site Images Not Showing


Installation and Configuration

correy.pierce:...when trying to upload an image on a PC (usually use a Mac) I get the following "File has an invalid extension() - it should be one of png, gif, jpg, jpeg."

Best to ask different questions in a new thread. Makes it easier to read and answer.

What is the file name that you are trying to upload. does it end with .png .gif .jpg or .jpeg? because that is what the error is saying.
michael
@michael
01/23/14 07:44:09PM
7,832 posts

Problem Embedding On An External Website


Using Jamroom

do you have a link to the player and the external site where its not playing?
michael
@michael
01/23/14 06:53:03PM
7,832 posts

I want to seperate the images through out the site


Design and Skin Customization

Another way to do it is to wrap the front end in an id and the profiles in an id and then split out the css for each.

Check out the jrBlank skin, it works like that, so does the bootstrap https://github.com/ussher/bootstrap

by putting a section id you can then use the same CSS but prefix it with the id

eg:

#profile

#profile Image Tag
margin 1px
height auto

#profile Image Icon
padding 1px
margin-right 12px

#profile Image Outline
margin 1px
padding 1px

#profile Image Outline Link
margin 1px
padding 1px
michael
@michael
01/23/14 01:54:42AM
7,832 posts

Audio Snip Too Short


Suggestions

Using the Form Designer and adding another track for playing is the first step, you will then want to watermark that track.

Here is an FFMPEG command that will merge 2 stereo .mp3's into another mp3.
ffmpeg -i song_1.mp3 -i watermark.mp3 -filter_complex "amerge,pan=stereo|c0<c0+c2|c1<c1+c3" output.mp3

NOTE: Make sure the watermark.mp3 track is much much longer than any possible target file and that command will cut the new mp3 off at the length of the shorter track. (which is the target, so that's good.)
michael
@michael
01/23/14 12:41:51AM
7,832 posts

Site Images Not Showing


Installation and Configuration

hosting company not Godaddy is it? seen that on another site on their servers that im trying to figure out why to currently.
michael
@michael
01/22/14 07:39:16PM
7,832 posts

Audio Snip Too Short


Suggestions

b360:...one question that came to mind was can the changes I make to the system using the form designer commit and transfer with a module pack from the Developer tool.

We've discussed this earlier "Form Designer: export to module feature" and it might find its way into upcoming updates.

Keep an eye out.
michael
@michael
01/22/14 07:07:48PM
7,832 posts

jrFormSubmit();


Jamroom Developers

I don't think so. I think your going to need to get it via js.

my understanding:
* page submits form via ajax and jrFormSubmit
* the POST info goes of to a url for processing.
* that url sends back some json info that the jrFormSubmit is waiting for
* jrFormSubmit finishes up its processing and hides the spinner and does whatever else it wants to.
* (you want to do stuff here on that same page.)

If you try to pick it up via the server side events/listeners its going to be on the processing side of things. a different url so your not going to be able to trigger javascript stuff on the page that sent the info.

The first thing that jumps to mind is:
jrFormSubmit(.....)

change to 
if(jrFormSubmit){
// do this other stuff
}

but that requires changes to the tpl files. So better than that if possible is to listen for jrFormSubmit finishing then do your stuff.

I'm just not sure how thats normally done in js though.

--- edit --
yeah index.php will send back a response, but its jrFormSubmit that is waiting for that response. Not sure if there is a way for another function to pick up on that returning response or not.
updated by @michael: 01/22/14 07:09:41PM
michael
@michael
01/22/14 05:30:25PM
7,832 posts

jrFormSubmit();


Jamroom Developers

Looks like it currently returns true/false on submit. Sounds like your after an event/listener type setup for it.

Is there a 'normal' way to listen for a function end without altering the code of the main function?
michael
@michael
01/22/14 05:15:04PM
7,832 posts

{jrAction_stats} ?


Jamroom Help

The docs are here:
https://www.jamroom.net/the-jamroom-network/documentation/modules/1579/jraction

The logical place to put that would be into your skins profile_index.tpl somewhere near the {jrAction_form} call that already exists in there.

Just like twitter shows:
121 TWEETS | 220 FOLLOWING | 56 FOLLOWERS

you can use the example code from the docs page to create the same.
michael
@michael
01/22/14 05:08:52PM
7,832 posts

Developer License


Jamroom Help

Then there is no issue. Just release it.

Use the developer tools module to package it and upload it to your profile.
https://www.jamroom.net/caper

I've changed you over to the developers quota here now.
  740