Forum Activity for @michael

michael
@michael
02/02/17 12:39:19AM
7,837 posts

Block Audio Download for Guests


Using Jamroom

Good news. Thanks for the update @paatie :)
michael
@michael
02/01/17 10:43:03PM
7,837 posts

An error was encountered loading the media URL


Using Jamroom

That usually indicates a problem with the uploaded song.

Try re-uploading the song.
michael
@michael
02/01/17 04:10:44PM
7,837 posts

Public page on a limited site


Jamroom Developers

Just to be clear you understand the suggestion: The redirect would only happen for users who are not logged in.

any user not logged in would be limited to viewing only the URL's in your $allowed list and when they try to access a url not on that list, they will be redirected somewhere of your choosing.

Seams like what you're after.

Yes there is a way to do the same thing with a module and a listener, if you prefer that I can figure out the code if necessary.
michael
@michael
02/01/17 02:59:41PM
7,837 posts

Public page on a limited site


Jamroom Developers

If there are more than just the front and login pages that you want visible, I think I'd do it a different way.

I'd make the site PUBLIC but then redirect non-logged-in users away from the defined allowed pages.

Its a bit of code added to the header.tpl template. Its in the bottom part of this doc:

Docs: "HowTo: Make the site visible to Members Only : HowTo: Make the site visible to Members Only"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/4357/howto-make-the-site-visible-to-members-only#setup-the-redirect-to-send-all-non-logged-in-users-to-the-welcome-page

This code:
{$allowed = array('/welcome', '/user/login', '/user/signup', '/user/forgot')}

{if !jrUser_is_logged_in() && !in_array($_post._uri, $allowed)}
   {jrCore_location("{$jamroom_url}/welcome")}
{/if}

That code reads "If the current url is not yoursite.com/welcome yoursite.com/user/login yoursite.com/user/signup ...... then redirect to yoursite.com/welcome."
michael
@michael
02/01/17 12:56:28PM
7,837 posts

How do users delete profiles or accounts?


Using Jamroom

must have missed that feature going in. Sorry. Do what paul said. :)
michael
@michael
02/01/17 12:54:05PM
7,837 posts

jrProfileTweaks bug


Using Jamroom

We've got a solution for this situation in the next version of jrProfileTweaks v 1.3.13

When that comes out, you'll want to turn off the Admin Skin module and use the new "Default Skin" option in the Profile Tweaks module.

On the QUOTA CONFIG tab of the Profile Tweaks module you can now select which skin will be the default skin for profiles in that quota.
michael
@michael
01/31/17 10:18:03PM
7,837 posts

How do users delete profiles or accounts?


Using Jamroom

There is nothing built in to allow a standard user to delete their account. They can delete stuff created on their profile.

If they are able to create other profiles ( Profile Admin or Power User ) then they should be able to delete accounts they create.

Currently there is no option like "delete my account and all my stuff" that is user facing.

Could be added with a module if necessary.
michael
@michael
01/31/17 02:41:40PM
7,837 posts

jrProfileTweaks bug


Using Jamroom

Can reproduce it here, looking for why now.
michael
@michael
01/31/17 02:21:42PM
7,837 posts

jrProfileTweaks bug


Using Jamroom

I can see from the videos that the form is not changing, but is the profile? when you visit the profile, has the skin changed?

Will setup to test here.
michael
@michael
01/31/17 02:18:34PM
7,837 posts

jrProfileTweaks bug


Using Jamroom

I like videos, thanks. watching.
  276