Forum Activity for @michael

michael
@michael
02/27/16 01:49:29PM
7,832 posts

Mail Options


Suggestions

Which page of the docs needs an update?
michael
@michael
02/27/16 01:47:51PM
7,832 posts

Site Search Returns Unexpected Results


Jamroom Developers

kev, long time no see :)

That path is the 5.3 path, so if you are still running the 5.2 core it could be a bit different.

ACP -> MODULES -> LISTING -> SEARCH -> TOOLS -> REBUILD INDEX

The MODULES is the default section when you go to the ACP so i left it out.
michael
@michael
02/27/16 12:41:45AM
7,832 posts

Mail Options


Suggestions

need to install it with linux too, but how far left of center do tutorials need to go.

good point though.
michael
@michael
02/26/16 10:14:13PM
7,832 posts

Mail Options


Suggestions

dunno, click the contact us button and report back ;)

--edit--
I'm reading their analytics API docs now, so if I figure it out first, I'll let you know.
updated by @michael: 02/26/16 10:15:30PM
michael
@michael
02/26/16 09:50:47PM
7,832 posts

Mail Options


Suggestions

Check out this page:
http://www.mailgun.com/managed

Its about increasing deliverability with mailgun.
michael
@michael
02/26/16 01:20:57PM
7,832 posts

jrAction_form in modal window like site search (jrElastic)


Design and Skin Customization

all the modules are open source, you can see all of the code in the module files, no need to paste it here because it will become outdated as time goes on.

I haven't built what you're trying to build, so don't have the exact code to give you sorry.
michael
@michael
02/26/16 01:16:19PM
7,832 posts

Playlist button for all musics of an Artist


Using Jamroom

making a playlist is a one-at-a-time thing, so if you're wanting to build a way to add 'all this artists music' then you're going to need to build you're own function.

Docs: "Defining your own SMARTY function"
https://www.jamroom.net/the-jamroom-network/documentation/development/1569/defining-your-own-smarty-function

It will probably look like this in the templates:
{nmSomething_add_to_playlist profile_id=$profile_id}

Then in your defined smarty function do a search on the profile id for all the songs and run a foreach loop over the songs and add each to a users playlist.

Take a look inside the:
/modules/jrPlaylist/include.php

file for all the functions available, there's probably something that will do the inclusion for you.

Otherwise you can build the playlist structure thats expected and put that into the playlist modules datastore directly from your module.
michael
@michael
02/26/16 01:09:42PM
7,832 posts

Site Search Returns Unexpected Results


Jamroom Developers

try "Rebuild the Search Index"
ACP -> LISTING -> SEARCH -> TOOLS -> REBUILD INDEX
michael
@michael
02/25/16 10:44:39PM
7,832 posts

All uploads over 15 mbs fail


Jamroom Developers

I've downloaded your 64MB file and uploaded it into my jamroom and it processed without problem.

It did take a long time though. If you're using a Jamroom Hosting server then the conversion processing is off-loaded to a separate server for conversion. But if you're using anywhere else then the server that delivers the site will also be the same server that needs to do the processing. The site delivery will take priority over the conversion processing, so it could well take a very long time to do, especially if your site is busy or your server is under powered.
michael
@michael
02/25/16 08:18:42PM
7,832 posts

jrAction_form in modal window like site search (jrElastic)


Design and Skin Customization

nice job in locating the source of it. Yes I had a lot of troubles getting tinymce to work in a modal window with site builder.

Take a look at how it does it and perhaps you can see your solution from there.

What you're probably interested in is:
tinymce.EditorManager.

https://www.tinymce.com/docs/api/class/tinymce.editormanager/

The concept being initialize the editor manager in the base window, then use that manager to put tinymce into the modal window when you open it.

NOTE: remember to close it when you close the window, or otherwise if you re-open the modal window again you wont be able to put it back there again.
  423