Forum Activity for @michael

michael
@michael
04/04/17 06:18:45PM
7,832 posts

save changes button


Using Jamroom

Please provide steps for someone willing to help you reproduce the problem.

Its unclear where you are talking about, whether you made customization, what skin..... In order to receive help with your situation, you need to explain the situation so that others here in the forums are able to help. :)
michael
@michael
04/04/17 01:59:03AM
7,832 posts

Dashboard


Design and Skin Customization

here on jamroom.net its showing 29 users online on the dashboard and that lines up quite closely with the users online which doesnt include the SHOW BOTS. When I open up SHOW BOTS there are a lot more than the number in the dashboard.

This is the query that gets that number for the dashboard:
 $tbl = jrCore_db_table_name('jrUser', 'session');
    $req = "SELECT COUNT(DISTINCT(session_user_ip)) AS online FROM {$tbl} WHERE session_updated > (UNIX_TIMESTAMP() - " . intval($length) . ") AND session_user_name NOT LIKE 'bot:%'";

So its the same table that the users online is gotten from that the count is gotten from.
michael
@michael
04/04/17 01:02:11AM
7,832 posts

Dashboard


Design and Skin Customization

how many do you see when you click SHOW BOTS?

Could be the bots are being included in the dashboard count.
michael
@michael
04/03/17 11:39:37PM
7,832 posts

Upload Video Not Working


Using Jamroom

That does seam excessive, see if any queues have gotten stuck? Have you EVER been able to convert a video. Suspect your server might not be working with the ffmpeg version packaged with jamroom. If thats the case, you might need to define a version of ffmpeg that works with your server

Docs: "HowTo: Use a diffferent ffmpeg binary"
https://www.jamroom.net/the-jamroom-network/documentation/howto/4641/howto-use-a-different-ffmpeg-binary

Jamroom comes packaged with ffmpeg, but some servers want to use their own.
michael
@michael
04/03/17 11:35:34PM
7,832 posts

Followers setup


Installation and Configuration

infinityssm:....Is there a way to assign a member to be followed by the new users without doing it one by one?..
Nothing built by us that I'm aware of. Need something custom.
michael
@michael
03/31/17 07:05:27PM
7,832 posts

Module Session Variable


Jamroom Developers

In my mind, jrCore_set_flag() jrCore_get_flag() are for passing a value across locations during a single phase. Like if I was in an event listener in my module, but needed to take action on that later on in the cycle of things for whatever reason, perhaps check the state of things at one listened for event, then do something at another event listener.

jrCore_set_temp_value() jrCore_get_temp_value() are useful for passing things across ajax boundaries. Like the search parameters that came in to the main page, then save them to a set_temp_value to preserve them for the pagination that happens via ajax. It means you dont need to pass them in with every ajax request, just see if they are set.

and set_cookie is useful for preserving the user chosen last state of things, like if you wanted to always use the same size of image. let the user save the size of image they are interested in and re-select that next time for them by default.
michael
@michael
03/31/17 05:33:22PM
7,832 posts

Module Session Variable


Jamroom Developers

That's fine.

It depends on what you're trying to do as to what its better, sometimes:
jrCore_set_flag()
jrCore_get_flag()

Will be the correct thing to use, sometimes
jrCore_set_temp_value()
jrCore_get_temp_value()

Sometimes you'll want to set values to the global $_conf variable if its a more constantly there thing.

Sometimes
jrCore_set_cookie()
jrCore_get_cookie()

All depends on the situation.
michael
@michael
03/30/17 04:48:12PM
7,832 posts

Ninja Skin Upgrades


Design and Skin Customization

The ETA is anything outstanding will likely be released with the next major core version 6.1 which is in development now. No fixed release date, but should be next couple of weeks ish.
  240