Forum Activity for @michael

michael
@michael
04/24/19 06:39:56PM
7,822 posts

Image in Item List


Installation and Configuration

usually only _user and _profile start with an _. Try removing it.

--edit --
or try $item._item_id
what.jpg what.jpg - 168KB

updated by @michael: 04/24/19 06:40:40PM
michael
@michael
04/22/19 01:48:48AM
7,822 posts

Forum Discussions


Ning To Jamroom

Can you take a screenshot of the widget settings please. Probably something in the settings is the issue.

Thanks.
michael
@michael
04/20/19 07:43:01PM
7,822 posts

A Follow Up Question.....


Using Jamroom

Yes.

Jamroom is incredibly flexible. There IS a way to do what you want.

The tough part is figuring out what you want, then where to tweak.
michael
@michael
04/17/19 04:29:12AM
7,822 posts

Changing the logo icon in elastic jamroom skin


Installation and Configuration

There are a few ways to do it.

Try this one:

Video Learning: "Customization changing a background image"
https://www.jamroom.net/video-training/86/customization-changing-a-background-image
michael
@michael
04/16/19 09:01:08PM
7,822 posts

Hide Page by Country


Using Jamroom

get stuck, post here, I'll help.
michael
@michael
04/16/19 08:59:16PM
7,822 posts

Does This Still Exist? Auto Welcome Message


Using Jamroom

Yup, what Paul said, Le email course is the way to go.
le_email_course.jpg le_email_course.jpg - 22KB
michael
@michael
04/16/19 08:10:46PM
7,822 posts

Admin account can't create any chatrooms, no "Public" chatroom option, can't create/select default chatroom.


Using Jamroom

Send your login details for the site to support at jamroom dot net and include a link to this tracker, I'll login and take a look.
michael
@michael
04/16/19 02:16:27AM
7,822 posts

Payments per stream


Installation and Configuration

Ask any questions you need, someone may have an answer.

It seems like you're thinking about business models. One way streaming websites make money is via subscription payments, think: hulu, netflix. They have content the customers want to see and they charge for it.

Others show stuff for free, but show adverts, like youtube.

other community members may have more specific answers.
michael
@michael
04/15/19 11:35:37PM
7,822 posts

Shere Button


Installation and Configuration

There is a module SHARE THIS that you can activate and enter your key from
https://www.sharethis.com/

and you can have buttons on all the detail pages, or a floating side bar everywhere if you like
share_this.jpg share_this.jpg - 674KB
michael
@michael
04/15/19 11:33:05PM
7,822 posts

Hide Page by Country


Using Jamroom

So you need to fine tune:
* You dont want to block the whole ip range from VISITING the site, just from visiting the /user/signup /user/login pages

right?

My first thought is a module that listens for those pages and blocks using "Events and Listeners"

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

That would be the cleanest. Put a switch in a listener and it would be easy to add any additional pages you liked.

This is the listener from the jrBanned module:
/**
 * Parse URL check for auto-banning
 * @param array $_data incoming data array
 * @param array $_user current user info
 * @param array $_conf Global config
 * @param array $_args additional info about the module
 * @param string $event Event Trigger name
 * @return array
 */
function jrBanned_parse_url_listener($_data, $_user, $_conf, $_args, $event)
{ if (jrCore_get_config_value('jrBanned', 'auto_block', 'off') === 'on') { // We are auto blocking... is this a honeypot page? if (jrBanned_is_honeypot_url($_data['_uri'])) { header('HTTP/1.0 403 Forbidden'); jrCore_notice('error', 'You do not have permission to access this server', false); exit; } } return $_data; }

You could use the same inner code if the IP matches your range.

The code to get their ip is
$ip = jrCore_get_ip();
  90