Resource icon

[bd] Forum Watch for XenForo 1.2+ 2.1.1b

No permission to download
I had a dumb error on my part. Thank You So Much!!! This is the best add-on ever!

Would this resubscribe every0ne?

INSERT INTO xf_forum_watch (user_id, node_id,notify_on, notification_method)
select user_id,node_id,'message','2' from xf_forum,xf_user
where user_id not in (select userid from xf_unsubscribe)
and user_state like 'valid%' and node_id<84;

XF_UNSUBSCRIBE is a table that I created to keep track of people that don't want any email. My question is if 'message' is correct. Also is the number 2 correct for notification_method?

Should send_alert and send_email have a value of 1 or 0?

--Dan
 
I had a dumb error on my part. Thank You So Much!!! This is the best add-on ever!

Would this resubscribe every0ne?

INSERT INTO xf_forum_watch (user_id, node_id,notify_on, notification_method)
select user_id,node_id,'message','2' from xf_forum,xf_user
where user_id not in (select userid from xf_unsubscribe)
and user_state like 'valid%' and node_id<84;

XF_UNSUBSCRIBE is a table that I created to keep track of people that don't want any email. My question is if 'message' is correct. Also is the number 2 correct for notification_method?

Should send_alert and send_email have a value of 1 or 0?

--Dan
Should be something like this

Code:
INSERT INTO xf_forum_watch (user_id, node_id,notify_on, send_alert, send_email) 
SELECT user_id, node_id, 'message', 1, 1
FROM xf_forum, xf_user
WHERE user_id NOT IN (SELECT userid FROM xf_unsubscribe) 
AND user_state = 'valid' AND node_id < 84
 
No that's alright :P

Do you mean though that in your new version of the add-on , this doesn't happen ?
 
No that's alright :p

Do you mean though that in your new version of the add-on , this doesn't happen ?
Well, I have just installed old version for XenForo 1.1.5 and it works allright. Can you give me list of installed add-on?
 
No worries, thanks for offering to help, I am about to upgrade to xenforo 1.2 anyway, so I will use the built-in function I guess :)
 
I already upgraded XF to 1.2 before upgrading to forumwatch 1.2. I Should have read the isntructions first.

So, what steps should I now take. Uninstall and reinstall or just run the upgrade, or ???

Thanks.
 
I already upgraded XF to 1.2 before upgrading to forumwatch 1.2. I Should have read the isntructions first.

So, what steps should I now take. Uninstall and reinstall or just run the upgrade, or ???

Thanks.
DO NOT UNINSTALL.

Just upgrade it now.
 
Sorry not to understand. I am running Xenforo v1.15 and just about to upgrade to 1.2.2
I understand that I need to uninstall Forum Watch first, but is it possible not to do this and thus preserve the watch information I have set up for users and groups of users?
Also does the new bd Forum Watch from yourself, just add the group watch functionality.

Thank you so much in anticipation
 
Sorry not to understand. I am running Xenforo v1.15 and just about to upgrade to 1.2.2
I understand that I need to uninstall Forum Watch first, but is it possible not to do this and thus preserve the watch information I have set up for users and groups of users?
Also does the new bd Forum Watch from yourself, just add the group watch functionality.

Thank you so much in anticipation
Please DO NOT UNINSTALL the add-on. What you should do is:
  1. Upgrade the add-on to the latest version (while the site is still running 1.1.5)
  2. Disable the add-on
  3. Upgrade to 1.2.2 as usual
  4. Uninstall the add-on if you don't need the user group feature or Enable it if you use the feature.
 
Back
Top Bottom