Forum Activity for @michael

michael
@michael
04/15/19 11:33:05PM
7,823 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,823 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,823 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,823 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,823 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,823 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,823 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.
michael
@michael
04/10/19 08:16:07PM
7,823 posts

Error: unable to write to template cache directory


Using Jamroom

check your permissions. This is a server error. Its jamroom saying "Your server is not letting me copy skins/jrXDubMusic/404.tpl into the template cache directory located at: data/cache/jrCore "
michael
@michael
03/28/19 10:20:49AM
7,823 posts

Themes Suggestion



There is skin/module separation in the marketplace from the jamroom install
ACP -> CORE -> MARKETPLACE

and a "Jamroom Developers: Questions about developing Jamroom modules and skins " section in the fourm.

Then there's the demo's to see the skins in action:
https://www.jamroom.net/demos

We've got modules listed up on this page:
https://www.jamroom.net/premium-features

I thought there was one somewhere with a filter, but cant locate it.
michael
@michael
03/20/19 05:15:51PM
7,823 posts

Hide profile page but show content in group?


Off Topic

Not understanding the question. Like what kind of content would show in groups?\
updated by @michael: 03/20/19 05:16:01PM
  91