Forum Activity for @ultrajam

SteveX
@ultrajam
03/04/14 04:06:20PM
2,589 posts

jamroom.net profile has lost forum hompage


Jamroom Developers

Me too!

But I verified it several times earlier. Could well be my isp.
SteveX
@ultrajam
03/04/14 02:05:54PM
2,589 posts

jamroom.net profile has lost forum hompage


Jamroom Developers

Going to jamroom.net/ultrajam/ no longer arrives at the forum. I have an activity feed instead.
jamroomnetwork-profile-change.png jamroomnetwork-profile-change.png - 394KB

updated by @ultrajam: 04/11/14 07:12:49PM
SteveX
@ultrajam
03/04/14 07:37:28AM
2,589 posts

javascript footer function from listener problem


Jamroom Developers

Looks good on first testing with 2 modules using the footer function. Thanks for solving that!

I still see this in ff console though, not sure what it means:
Quote: Error: http://xdev4.ultrajam.co.uk/modules/jrAction/contrib/underscore/underscore-min.js?v=1.3.1 is being assigned a //# sourceMappingURL, but already has one
I haven't noticed it causing any problems with anything though.
updated by @ultrajam: 03/04/14 07:38:05AM
SteveX
@ultrajam
03/02/14 05:03:01AM
2,589 posts

Setup


LifeStreams

Thanks for your purchase @b360 .

Facebook works for me on an ssl site, although I had problems with youtube reporting mixed content.

Take a look for any errors in console, and check that ujTogether is disabled - I sent you a pn about that.
SteveX
@ultrajam
03/02/14 04:56:33AM
2,589 posts

ujLifeStreams Released: Provides LifeStreams on Profiles


Announcements

ujLifeStreams provides a stream of your profile user's activity from around the web.

Here is an example of a mixed lifestream with filters:
http://xdev4.ultrajam.co.uk/stevex/
Signup is set to instant validation, so try out a timeline of your own.

Read more about the module and download it from here:
https://www.jamroom.net/ultrajam/networkmarket/121/lifestream
Or install directly to your site via the Marketplace.

Documentation can be found here:
https://www.jamroom.net/ultrajam/documentation/modules/1692/lifestreams

Requirements are jrCore 5.1.26, and jrAction 1.3.1
updated by @ultrajam: 03/06/14 03:19:51AM
SteveX
@ultrajam
03/02/14 04:45:34AM
2,589 posts

LifeStreams for Profiles and Site


LifeStreams

The module can be found here:
https://www.jamroom.net/ultrajam/networkmarket/121/lifestream

An example of a mixed lifestream in a sidebar with filters:
http://xdev4.ultrajam.co.uk/stevex/
Signup is set to instant validation, so try out a timeline of your own.

Example of a lifestream as a profile page:
http://xdev4.ultrajam.co.uk/stevex/lifestreams

Example of a sitewide stream:
http://xdev4.ultrajam.co.uk/lifestreams

Documentation here:
https://www.jamroom.net/ultrajam/documentation/modules/1692/lifestreams

It's very simple to use, yet highly configurable and flexible.

Requirements are jrCore 5.1.26, and jrAction 1.3.1

After updating to 1.1.0 run the integrity check to pick up the new language strings.

Note that Facebook has ceased serving feeds, so disallow Facebook as an option to your quotas until fb starts those up again.
updated by @ultrajam: 12/14/15 01:17:41PM
SteveX
@ultrajam
03/02/14 04:34:06AM
2,589 posts

Sale notification link incorrect


Jamroom Developers

When a notification of a sale arrives via email, which contains a link:
https://www.jamroom.net/ultrajam/networkmarket/earnings

But clicking on that link ends up on the main ultrajam page:
https://www.jamroom.net/ultrajam/forum

It should link to:
https://www.jamroom.net/ultrajam/foxycart/earnings
updated by @ultrajam: 04/09/14 09:16:50PM
SteveX
@ultrajam
03/02/14 03:56:10AM
2,589 posts

simple custom forms form partially showing


Using Jamroom

Looks like Together is causing a problem on my site if other modules are using the javascript_footer_function. So try disabling ujTogether if you are using it.

https://www.jamroom.net/the-jamroom-network/forum/jamroom-developers/7502/javascript-footer-function-from-listener-problem
SteveX
@ultrajam
03/02/14 03:54:19AM
2,589 posts

javascript footer function from listener problem


Jamroom Developers

It looks like adding anything at all to the javascript footer function from a listener prevents any other modules’ from being added. The js is replacing the array for the footer function rather than being added to it.

I’ve tested this by adding some js which doesn’t do anything. There is a console error, but the error appears when Together is not installed as well.
Quote: Error: https://update.ultrajam.net/modules/jrAction/contrib/underscore/underscore-min.js?v=1.3.1 is being assigned a //# sourceMappingURL, but already has one


In the init function I have:
    // Includes the Together scripts
    jrCore_register_event_listener('jrCore', 'index_template', 'ujTogether_insert_js_listener');
    jrCore_register_event_listener('jrCore', 'skin_template', 'ujTogether_insert_js_listener');
    jrCore_register_event_listener('jrCore', 'module_view', 'ujTogether_insert_js_listener');
    jrCore_register_event_listener('jrProfile', 'profile_view', 'ujTogether_insert_js_listener');


And the reduced listener:
    
function ujTogether_insert_js_listener($_data, $_user, $_conf, $_args, $event)
{ if ( !strpos($_SERVER['REQUEST_URI'], '__ajax') && !strpos($_SERVER['REQUEST_URI'], '_v=') && isset($_conf['ujTogether_enabled']) && $_conf['ujTogether_enabled'] == 'on' ) { // add something to javascript_footer_function $_together_conf = 'var testinglistener = "somethinganything";'; jrCore_create_page_element('javascript_footer_function', array($_together_conf)); } return $_data; }


If I remove the listener, other modules’ js appears in the footer function, add it back again, only the Together js appears.
updated by @ultrajam: 04/06/14 04:44:21PM
  189