Forum Activity for @michael

michael
@michael
06/18/20 02:14:42AM
7,816 posts

Jamroom forum not sending notifications


Using Jamroom

I used the login details you sent and logged in, then created a new user account 'michael' then wrote a new forum post.

Then logged as the first user you gave me and replied. I did get notified.
response.jpg response.jpg - 818KB

updated by @michael: 06/18/20 02:16:17AM
michael
@michael
06/17/20 05:04:12PM
7,816 posts

Jamroom forum not sending notifications


Using Jamroom

If you like I can try to debug it on your server or download the database and debug it on my server. Send the admin logins to support at jamroom dot net if you'd like to do that.

Otherwise: Lets examine what we have.
* The database should be the same as it was
* the connection between users and the things they are following do exist in the database
* The integrity check would have been run after the transfer so the system should be the same
* all the modules that existed on your previous hosting also exist on your new hosting.
* email does get sent when tested
* no errors are showing in the system check
* Did you try a manual reset of the caches (I don't think this is related, but we're stretching here)?

Docs: "Manually clearing caches"
https://www.jamroom.net/the-jamroom-network/documentation/troubleshooting/114/somethings-wrong-what-do-i-do#manually-clearing-caches

IDEA: Try creating a NEW user and get them to watch a thread/category then make a new thread/category post and see if it notifies new users.

we need to identify where the blockage is.
michael
@michael
06/16/20 10:33:37PM
7,816 posts

Jamroom forum not sending notifications


Using Jamroom

Just setup and ran a couple of tests here, the sending system does seem to be working, so:
* could you check that the yellow follow indicators are on for the categories/threads of a user who is supposed to be getting notified.
WHY: the guess is that maybe the 'following' table did not get imported correctly during the import and now nobody is following anything.
following.jpg following.jpg - 738KB

updated by @michael: 06/16/20 10:39:40PM
michael
@michael
06/15/20 07:30:49PM
7,816 posts

Jamroom forum not sending notifications


Using Jamroom

What are the steps you're taking in forum and expecting that an email will be triggered? I'll setup and debug it.

Feels like the email is not being triggered if the email sending system is working. Need to figure out why.

--edit--
Another idea you can try if you like is to set the email sending system to "Send to activity log", if they do show up in the activity log then the issue points to the email sending system beyond jamroom.
updated by @michael: 06/15/20 07:32:27PM
michael
@michael
06/15/20 07:12:16PM
7,816 posts

livesearch field id has changed


Jamroom Developers

From brian:
Quote: This is all in place to prevent Chrome from auto-filling live search fields, which breaks them. I ended up trying A LOT of things to get this working correctly - I don't remember why I'm going that with the class, but it was needed for some reason.

So the best thing to do is probably patch your sites modules/jrCore/lib/form.php

This part has changed:
    if (!empty($_field['class'])) {
        $cls .= ' ' . $_field['class'];
        $cls .= ' live_search_' . $_field['live_search_original_name'];
        unset($_field['class']);
    }

That will be there in the next core release and overwrite your patch so your code based on it will keep working.

It will give you a unique class to target that wont get removed.
change.jpg change.jpg - 2.1MB
michael
@michael
06/15/20 04:23:47AM
7,816 posts

livesearch field id has changed


Jamroom Developers

Does too, not sure why that .removeClass('lve_search_text') is there. I'll need to look into it. did not notice that.
michael
@michael
06/15/20 04:12:22AM
7,816 posts

livesearch field id has changed


Jamroom Developers

??? its not a class on the text field?
michael
@michael
06/15/20 04:06:12AM
7,816 posts

Timeline - Birth of Child - in wrong timeline


Genosis

Don't delete anything until we know thats the right thing to do. Send me the GEDCOM file to support at jamroom dot net along with a link to this thread.

I'll import that and you can run me through where the issue is.

Thanks.
michael
@michael
06/15/20 03:47:43AM
7,816 posts

livesearch field id has changed


Jamroom Developers

once the change that got added today gets out there then that could be changed to:
$(".live_search_mymod_profile").on( "change", function() {
but its not been released yet, so
var id = $('.live_search_text').attr('id');
id.on( "change", function() {
would work now and continue working after the update too PROVIDED there is only one live search on that page.

--edit--
or that may be
var id = $('.live_search_text').attr('id');
$('#' + id).on( "change", function() {
not sure, probably this.
updated by @michael: 06/15/20 03:49:21AM
michael
@michael
06/15/20 03:25:18AM
7,816 posts

livesearch field id has changed


Jamroom Developers

by 'listened for' are we in php or javascript? A jamroom listener or a jquery .on()?
  64