Forum Activity for @michael

michael
@michael
03/06/16 01:37:18AM
7,832 posts

video upload failed


Using Jamroom

suspect its an issue with your internet connection.
michael
@michael
03/06/16 01:36:02AM
7,832 posts

When a member dies...and their private messages?


Using Jamroom

on the technical 'howto' side of things, you could set the email address for that user to his sons one, then change the password to one he wanted and he could login as that user and see the private messages.

sad.
michael
@michael
03/04/16 09:03:23PM
7,832 posts

Photo Album List Display in Side Bar


Design and Skin Customization

{foreach $_items as $item}
{$i = 0}
  {foreach $item.photoalbum_photos as $img_id}
    {if $i > 10}
      {continue}
    {/if}
    {$i = $i+1}
// do something here....
  {/foreach}
{/foreach}
That will limit it to 10 photos per album.
michael
@michael
03/04/16 08:52:17PM
7,832 posts

how to get an RSS feed from Combined Videos


Using Jamroom

probably a result of having "template name in source" setting on in
ACP -> DEVELOPER -> DEVELOPER TOOLS -> GLOBAL CONFIG -> "template name in source"

XML can be very temperamental.
michael
@michael
03/04/16 11:11:41AM
7,832 posts

All uploads over 15 mbs fail


Jamroom Developers

Take a look in your queue browser and see if there is a queue to reset.

Search "queue viewer" in the ACP, or go to:
DASHBOARD -> QUEUE VIEWER
michael
@michael
03/03/16 08:34:53PM
7,832 posts

Changing modules icon item index buttons


Using Jamroom

hard to see the image in such a wide format, try uploading 2 separate images next time. there is no limit to images attached to a post.

That bunch of css is generated from the templates by a call like this:
{jrCore_icon icon="gear" size="18"}

Check out this thread about adding new icons to a skin:
https://www.jamroom.net/ultrajam/forum/jamroom-developers/11681/override-icon-sprites-in-skin
baby-turtle.jpg baby-turtle.jpg - 80KB
michael
@michael
03/03/16 08:26:49PM
7,832 posts

Now Playing section


Using Jamroom

The function that handles the streaming of the songs is view_jrCore_stream_file() and it can be found at:
/modules/jrCore/index.php around line 6000 ish

There is an event that is fired when that streaming beings, it is 'stream_file'

Docs: "Events and Listeners"
https://www.jamroom.net/the-jamroom-network/documentation/development/1011/events-and-listeners

after that fires then the process is handed off to jrCore_media_file_stream() to actually stream the file via whichever media file streaming system is active.

The default active one will probably be _jrCore_local_media_stream()

You could certainly pick up the names of the files BEGINNING to stream with the listener, not sure about checking whether they are actually streaming or not though.

See how far that gets you.
michael
@michael
03/03/16 08:17:34PM
7,832 posts

OneAll not posting updates from Jamroom Timeline to Twitter/Facebook


Using Jamroom

Thanks for the update, and glad you've got it sorted. It can be hard to know where to start on an issue like this when there are so many factors and sites involved.
michael
@michael
03/03/16 08:13:57PM
7,832 posts

Wrong module purchase


Off Topic

We'll get you a refund on those modules. :)

Did you know that if you use our hosting all those modules are free for use on as many domains as you like?

Jamroom Hosting
michael
@michael
03/03/16 08:10:46PM
7,832 posts

Photo Album List Display in Side Bar


Design and Skin Customization

{foreach from=$_items item="item" && $item.photoalbum_photos as $img_id}
is not valid code
{foreach $_items as $item}
  {foreach $item.photoalbum_photos as $img_id}
// do something here....
  {/foreach}
{/foreach}

is valid code.
  420