Forum Activity for @michael

michael
@michael
04/16/19 08:10:46PM
7,816 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,816 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,816 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,816 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();
michael
@michael
04/15/19 11:21:02PM
7,816 posts

Does This Still Exist? Auto Welcome Message


Using Jamroom

There is the initial email that goes out.

Its in the email template
/modules/jrUser/templates/email_account_activated_message.tpl
/modules/jrUser/templates/email_account_activated_subject.tpl

So is overrideable via
/skins/YOUR SKIN/jrUser_email_account_activated_message.tpl
/skins/YOUR SKIN/jrUser_email_account_activated_subject.tpl

Or via
ACP -> USERS -> USERS -> TEMPLATES -> email_account_activated_message.tpl
michael
@michael
04/15/19 11:15:17PM
7,816 posts

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


Using Jamroom

Looks like you're missing the checkbox. My first guess is a CSS customization thats hiding it maybe. Try switching skins for a bit and see if the checkbox appears
checkbox.jpg checkbox.jpg - 111KB
michael
@michael
04/15/19 11:10:13PM
7,816 posts

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


Using Jamroom

hawkenterprising:....The JR Admin account can't create any chatrooms. Is this normal?...
Definitely not.

Should look like this: (screenshots)
GO.jpg GO.jpg - 219KB

updated by @michael: 04/15/19 11:11:00PM
michael
@michael
04/15/19 11:05:25PM
7,816 posts

sitemap crawler stalls over and over on images (updated)


Using Jamroom

There's nothing I can see wrong with that URL:
http://dreadlockssite.com/gallery/image/gallery_image/106868/xxlarge/_v=

It shows ok to me.

My first thoughts are: Does that sitemap software you are using have an error log? Maybe its complaining about something specific.
url.jpg url.jpg - 358KB
michael
@michael
04/15/19 11:00:07PM
7,816 posts

Payments per stream


Installation and Configuration

I think you're taking about the STREAM PAY module.

Docs: "Stream Pay"
https://www.jamroom.net/the-jamroom-network/documentation/modules/3587/stream-pay

And if so its the other way around. You pay the artists on your site whenever a visitor to your site listens to THEIR music.

How you get the money to pay them is up to you:
* charge your customers for streaming
* show them adverts
* other
michael
@michael
04/12/19 01:43:53AM
7,816 posts

Error: unable to write to template cache directory


Using Jamroom

If you didn't change anything, then the most likely cause is your server hosting company changed something.
  90