Forum Activity for @ultrajam

SteveX
@ultrajam
07/02/14 02:06:02PM
2,587 posts

SOX, LAME, and other audio functions


Jamroom Developers

Danny, the ffmpeg and sox stuff was all working back around December, but the mp3 tagging has been added in more recently.

It looks like there are some new views in the audio module as well which deal with mass reconverting.

Your developers should have no problems copying the views and function into your custom modules, I've jsut taken a look at the jrAudio changes for 2014 and it should be perfectly straightforward if you need those new features (I can't imagine you will be changing your label's licensed files though so I doubt you will need them).
SteveX
@ultrajam
07/02/14 10:48:45AM
2,587 posts

This forum stripping code tags on create thread


Using Jamroom

Thanks Brian, tested the same 2 posts again and works perfectly from here.
SteveX
@ultrajam
07/02/14 08:53:11AM
2,587 posts

Video stop working


Using Jamroom

It plays instantly for me. Check your internet connection.
SteveX
@ultrajam
07/02/14 07:21:17AM
2,587 posts

pre tag in pages


Installation and Configuration

It might be better to have your guitar tabs in a field of their own rather than mixed in with the general text area. That way you can control the formatting of the tab separately.

You could also try getting rid of the br within pre tags using css.
Something like this might work:
pre br {
    display:none;
}
SteveX
@ultrajam
07/02/14 07:15:30AM
2,587 posts

Embed Audio


Using Jamroom

ujTogether isn't strictly a chat module, more collaboration, so cometchat is probably more suitable. It's been up there for quite a while now.
SteveX
@ultrajam
07/02/14 05:10:34AM
2,587 posts

Embed Audio


Using Jamroom

How about a custom form designer field on the blog post (visible to admin only). Custom field accepts an artist id.

Then, if the field contains an id, include a template above/below/alongside the blog post with a jrCore_list of all songs (or vids/photos/gigs/etc). Could be more of a featured mini profile alongside the blog post rather than a list of songs.
updated by @ultrajam: 07/02/14 05:11:22AM
SteveX
@ultrajam
07/02/14 02:45:04AM
2,587 posts

This forum stripping code tags on create thread


Using Jamroom

It didnt strip the code on this post though:
https://www.jamroom.net/the-jamroom-network/forum/using-jamroom/12198/php-error-log-bug

EDIT - Yes it did - the php was posted correctly, but all the html tags were stripped out of the php. The html tags are saved without being stripped out on an update.
updated by @ultrajam: 07/02/14 02:52:05AM
SteveX
@ultrajam
07/02/14 02:44:09AM
2,587 posts

php error log bug


Using Jamroom

The php error log shows the span tags and isn’t coloured correctly due to jrCore_entity_string() being used in the wrong place.
Existing code from line 5528 of jrCore/index.php:
            while ($cnt > 0) {
                $index = md5(substr($_er[$idx], 27));
                if (!isset($_ln[$index])) {
                    $level = str_replace(':', '', jrCore_string_field($_er[$idx], 5));
                    $_ln[$index] = "<span class=\"php_{$level}\">" . $_er[$idx];
                    $_nm[$index] = 1;
                }
                else {
                    $_nm[$index]++;
                }
                unset($_er[$idx]);
                $cnt--;
                $idx++;
            }
            $out = '<div id="error_log"><br>';
            foreach ($_ln as $k => $v) {
                $out .= jrCore_entity_string($v) . ' [x ' . $_nm[$k] . ']</span><br><br>';
            }

That is fixed by moving jrCore_entity_string to within the html:

             while ($cnt > 0) {
                $index = md5(substr($_er[$idx], 27));
                if (!isset($_ln[$index])) {
                    $level = str_replace(':', '', jrCore_string_field($_er[$idx], 5));
                    $_ln[$index] = "<span class=\"php_{$level}\">" . jrCore_entity_string($_er[$idx]);
                    $_nm[$index] = 1;
                }
                else {
                    $_nm[$index]++;
                }
                unset($_er[$idx]);
                $cnt--;
                $idx++;
            }
            $out = '<div id="error_log"><br>';
            foreach ($_ln as $k => $v) {
                $out .= $v . ' [x ' . $_nm[$k] . ']</span><br><br>';
            }

updated by @ultrajam: 09/03/14 02:33:36AM
SteveX
@ultrajam
07/02/14 02:06:39AM
2,587 posts

This forum stripping code tags on create thread


Using Jamroom

I've seen this a couple of times now, and it just again happened here: https://www.jamroom.net/the-jamroom-network/forum/using-jamroom/12196/nova-typo

This forum strips things out after the opening code tag on create thread. Its fine on update and on following posts, just seems to be on creating a new thread.
updated by @ultrajam: 08/16/14 12:52:49PM
  150