Forum Activity for @brian

brian
@brian
08/20/18 09:02:20AM
10,148 posts

creating an unlisted admin Page


Using Jamroom

Based on what you're looking for, why not just use a template?
brian
@brian
08/13/18 07:58:53AM
10,148 posts

Members of a Group no longer visible after recent updates


Using Jamroom

Reload the Groups module from the Marketplace -> Tools -> Reload modules and skins - there was an error in the module update for a short time after release, but it is fixed now.

Let me know if that helps.
brian
@brian
08/12/18 09:16:43AM
10,148 posts

Query Error: Truncated incorrect DOUBLE value: ''


Installation and Configuration

I removed your post as t had personal information in it - please send this as a support ticket and we can check it out.

Thanks!
brian
@brian
08/12/18 09:10:36AM
10,148 posts

OneAll Sign-Ups Using Facebook - No Names or Emails


Using Jamroom

My guess here is that the name value is actually EMPTY, and since the module requires a user name it generates a random set of digits to use. It checks for 6 different possible values, so if you are getting this it means not only did we not get a username but we also did not get an email address:

                    if (isset($_us['preferredUsername']) && strlen($_us['preferredUsername']) > 0) {
                        $user_name = $_us['preferredUsername'];
                    }
                    elseif (isset($_us['displayName']) && strlen($_us['displayName']) > 0) {
                        $user_name = $_us['displayName'];
                    }
                    elseif (isset($_us['name']['formatted']) && strlen($_us['name']['formatted']) > 0) {
                        $user_name = $_us['name']['formatted'];
                    }
                    elseif (isset($_us['profileUrl']) && strlen($_us['profileUrl']) > 0) {
                        $utmp      = explode('/', $_us['profileUrl']);
                        $user_name = end($utmp);
                    }
                    elseif (isset($_us['accounts'][0]['username']) && strlen($_us['accounts'][0]['username']) > 0) {
                        $user_name = $_us['accounts'][0]['username'];
                    }
                    elseif (strpos($email, '@')) {
                        list($user_name,) = explode('@', $email);
                    }
                    else {
                        // Hopefully we never get here
                        $user_name = mt_rand(11111, 99999);
                    }

See the "hopefully we never get here" part.
brian
@brian
08/12/18 08:11:21AM
10,148 posts

Query Error: Truncated incorrect DOUBLE value: ''


Installation and Configuration

There's no issue with that query - there has to be more to the query than just that OR you've not posted the right query. Can you post the entire debug log entry?

Thanks!
brian
@brian
08/11/18 08:41:21AM
10,148 posts

auto-follow a discussion when you've posted to it


Using Jamroom

lornawebber:
Just as an aside - it would be nice if we auto-followed a support ticket when responding to one. It seems to default to 'not following' and I often forget to click the 'follow' circle.

Admin users are automatically notified of new updates on Support Tickets. The only way you are not notified is incoming "Email Inquires" tickets that are from users that are in a quota that is not setup with "priority inbox", and users that do not have an account on the system.

If you need EVERY ticket to a mailbox to notify you regardless of the user's quota settings, make sure the "High Priority Mailbox" option is checked in the Mailbox config (ACP -> Admin -> Support Tickets -> Mailboxes -> Modify).

You really should be able to set this up any way you want.

Hope this helps!
updated by @brian: 08/11/18 08:41:48AM
brian
@brian
08/09/18 09:16:54AM
10,148 posts

Unable to translate module text


Design and Skin Customization

myjamroom:
Brian, thanks for the module update. It works ...

Glad to hear that - thanks!
brian
@brian
08/09/18 09:15:16AM
10,148 posts

Tracker Re-branding Issue to Action


Design and Skin Customization

Make sure you have updated in the marketplace - these are language strings 90 - 94.
brian
@brian
08/07/18 02:02:59PM
10,148 posts

glitch when creating "@" mentions ?


Using Jamroom

Strumelia:
The only thing I can think of is that I disabled some of the personal timelines or individual accesses to timelines (or adding to timelines) that are available to members on my site... while leaving basically just the main site-wide timeline feed in place on the home page. Could this have anything to do with it?

Sorry for the late follow up here. No - that should not have anything to do with it. Can you give me the URL to a page where there are comments or updates that have @ profile_urls in it that are NOT being linked to that you feel should be?

Thanks!
brian
@brian
08/07/18 02:01:05PM
10,148 posts

PHP Fatal error: Uncaught Swift_RfcComplianceException


Using Jamroom

dim:
It would be good to get such a hint from you in the future. I spent a very long time. I was looking for a problem at random. I never knew about the Queue Viewer.

I think we would have eventually got there on this one - note that the queue is NOT an issue 99% of the time. By far the most common issues with email delivery are:

- incorrect settings
- invalid DNS SPF and DKIM records

So we always start there. Glad you figured it out.

Thanks!
  48