Forum Activity for @brian

brian
@brian
09/20/16 02:43:51PM
10,149 posts

Automated tool to reset user password and send an email notification.


Using Jamroom

SteveX:
I would send them a link:
yoursite.com/user/forgot

This is the correct way - send them the URL so they can click on it.
brian
@brian
09/20/16 02:41:04PM
10,149 posts

Search Result Templates per Module


Suggestions

This is already supported - just create an override template in your active skin directory:

jrYouTube_item_search.tpl

That will be used in place of the module's default template.
brian
@brian
09/16/16 12:32:28PM
10,149 posts

Tag cloud widget is only displaying 9 tags even though the limit is 30


Using Jamroom

Are you only seeing the tag count issue when adding a tag cloud via Site Builder?

As for not showing on mobile - the Javascript for the tag cloud is a "heavy hitter" and I think it is disabled on tablets/mobile by default, but we can check that out.
brian
@brian
09/16/16 12:29:49PM
10,149 posts

On-Site Videos disappeared after installing Video (Combined) module


Using Jamroom

It sounds like the module URLs for BOTH the combined video AND video modules are the same (although that should not happen). Go into your ACP -> Profiles -> Video and click on the "info" tab - if the Module URL shows "video" change it to "uploaded_video" and save.

Let me know if that helps.
brian
@brian
09/15/16 01:25:59PM
10,149 posts

Jamroom 5 Core github


Jamroom Developers

We've thought about this, but it would require us breaking up our repo into TWO repositories - one for the Open Source stuff, and another internal one for the non-open source and private stuff. That means we would lose a lot of history.

Right now we use BitBucket and it works well. So it's something we might consider, but it's not on our TODO at this time.
brian
@brian
09/15/16 01:24:19PM
10,149 posts

Jamroom performance


Jamroom Developers

Jamroom uses InnoDB tables when we need the fastest performance on index scans (such as item_key tables). We use MyISAM when we need to be able to get a fast count of the number of items in the datastore, which is why we use it on the item tables.

That error you are getting is not JR related - you cannot have more than 65535 bytes in VARCHAR columns per InnoDB table. This means if you are using utf8mb4 as the encoding for your table, you can only have 1/4 of that (16,383) since EACH character in the column will use 4 bytes.

Unless you have a specific need for utf8mb4, regular utf8 works fine for JR (since we use binary for emojis).
brian
@brian
09/12/16 03:06:46PM
10,149 posts

Does URL Mapper module allow wildcards?


Using Jamroom

You're all set - note that you'll need to clear your browser cache, since browsers cache the redirect.

Hope this helps!
brian
@brian
09/12/16 02:59:17PM
10,149 posts

Does URL Mapper module allow wildcards?


Using Jamroom

That should work - I will check it out for you.
brian
@brian
09/12/16 02:53:39PM
10,149 posts

PayPal Buy It Now


Installation and Configuration

I believe this should work - based on the screenshots that is the foxycart add to cart button - NOT the paypal one. Note that the PayPal buy it now button will NOT show if the profile has not entered a PayPal email address in their profile settings - so double check that.

Hope this helps!
brian
@brian
09/12/16 02:52:06PM
10,149 posts

Does URL Mapper module allow wildcards?


Using Jamroom

Try this:
RewriteRule ^forum/topics/.*$ /community/forum/empath [R=301,L] 
Let me know if that works.
  226