vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Quote Notification (https://vborg.vbsupport.ru/showthread.php?t=112498)

SpankMe 01-03-2010 12:35 AM

My previously attached mods work in vB 4.0.

11133 01-25-2010 06:05 PM

its work perfect on 3.8.4
i have one question
is it posible to add feature to notify me like notify me when someone post comment on my profile, etc
not to notify me over pm

TundraSoul 02-11-2010 08:07 PM

It does not import on fresh installs of vB 3.84.

AcidX 05-10-2010 05:17 AM

vb 4 compatible?

NLPLegacy 09-05-2010 04:11 AM

How does this work with 3.8.6, can't get it to work

NLPLegacy 09-05-2010 05:23 AM

Ugh now I can't uninstall it. Comes up as DB Error

FreshFroot 02-05-2011 11:40 PM

Quote:

Originally Posted by NLPLegacy (Post 2093978)
Ugh now I can't uninstall it. Comes up as DB Error

maybe you should've read the announcement where it says IT DOES NOT work with 3.6+

You should've tried it on a test board!

HFB 02-08-2011 05:16 PM

Quote:

Originally Posted by SpankMe (Post 1945455)
My previously attached mods work in vB 4.0.

Thanks for working on it. We have this installed on several forums running various versions of vB (3.6.8 through 3.8.4) with no issues.

Quote:

Originally Posted by Krofh (Post 1094501)
Ahhh, my mistake. Looking into it, it turns out the $post variable doesn't have the forumid... change the first line I had you put in:
Code:

if ($post['forumid'] != 65) {
To the following:
Code:

if ($threadinfo['forumid'] != 65) {
When I did that on my server, it worked fine.

This needs to be updated for ajax. It causes a 'duplicate post' message with ajax quick reply. If you multiple forums to exclude and you don't use ajax, this code will work too:
Code:

if !in_array($threadinfo['forumid'], array(X,Y,Z)) {

6impy 08-18-2011 05:22 PM

Quote:

Originally Posted by SpankMe (Post 1647364)
ok, here's the product install for 3.7.

If you already have this mod installed, first delete the existing Quote Notification Profile Field.

Then just install this product. Click Allow Overwrite if you have the old version installed.

Let me know how it goes. I've only tested on vB 3.7.2.

Thank you for releasing this update SpankMe.

For everyone else reading this:

I can confirm the attachment in the above post (Go here to download the attachment: https://vborg.vbsupport.ru/showpost....4&postcount=77) is working on 3.8.6 Patch Level 2, but there are a couple things to keep in mind:
  1. I can't see the option to set a default user for the notification PMs to be sent through under Admin Control Panel > vBulletin Options > Message Posting and Editing Options. In my case, I don't care about this, because I want the PM to come from the user doing the quoting, which works fine.
  2. If you want to make the default option be that the user gets a private message, instead of no notification, then go to Admin Control Panel > User Profile Fields > User Profile Field Manager > Click the Edit link for Quote Notification (at bottom of page), then change the order of the listed fields putting whatever you want the default to be as the top option. It's making the decision to Email/PM/Not based on the text content of this field, not the position selection.
  3. If you make the change in step 2 above, and want all your current users to get PM or email notifications by default, then run one of the two MySQL queries (BACKUP THE TABLE BEFORE YOU DO THIS, JUST IN CASE):
    • update `vb_userfield` set field[#]='Private Message';
    • update `vb_userfield` set field[#]='Email';
    • (where [#] is the number of the field that can be seen in Admin Control Panel > User Profile Fields > User Profile Field Manager)
    • Finally, you'll want to make the change suggested by SpankMe in this post. Otherwise, users will see a Fatal Error if they quote the post of a user that has quote notification turned on, but PMs turned off, PMs contacts only, or PM quota is full. https://vborg.vbsupport.ru/showpost....0&postcount=51
  4. You'll want to do a phrase search for "Kiwi Biker forums" and replace it with the name of your forums, as it is hard coded into the email that goes out (when users choose to be notified by email)

Good luck and thanks again to both SpankMe (want a spanking? ;)) and Krofh.

Konstantinos 08-20-2011 08:38 PM

Quote:

Originally Posted by 6impy (Post 2235018)
Thank you for releasing this update SpankMe.

For everyone else reading this:

I can confirm the attachment in the above post (Go here to download the attachment: https://vborg.vbsupport.ru/showpost....4&postcount=77) is working on 3.8.6 Patch Level 2, but there are a couple things to keep in mind:
  1. I can't see the option to set a default user for the notification PMs to be sent through under Admin Control Panel > vBulletin Options > Message Posting and Editing Options. In my case, I don't care about this, because I want the PM to come from the user doing the quoting, which works fine.
  2. If you want to make the default option be that the user gets a private message, instead of no notification, then go to Admin Control Panel > User Profile Fields > User Profile Field Manager > Click the Edit link for Quote Notification (at bottom of page), then change the order of the listed fields putting whatever you want the default to be as the top option. It's making the decision to Email/PM/Not based on the text content of this field, not the position selection.
  3. If you make the change in step 2 above, and want all your current users to get PM or email notifications by default, then run one of the two MySQL queries (BACKUP THE TABLE BEFORE YOU DO THIS, JUST IN CASE):
    • update `vb_userfield` set field[#]='Private Message';
    • update `vb_userfield` set field[#]='Email';
    • (where [#] is the number of the field that can be seen in Admin Control Panel > User Profile Fields > User Profile Field Manager)
    • Finally, you'll want to make the change suggested by SpankMe in this post. Otherwise, users will see a Fatal Error if they quote the post of a user that has quote notification turned on, but PMs turned off, PMs contacts only, or PM quota is full. https://vborg.vbsupport.ru/showpost....0&postcount=51
  4. You'll want to do a phrase search for "Kiwi Biker forums" and replace it with the name of your forums, as it is hard coded into the email that goes out (when users choose to be notified by email)

Good luck and thanks again to both SpankMe (want a spanking? ;)) and Krofh.

u need to edit the plugin to set a default user to send the pm

Code:

$qn_fromuserid = $vbulletin->userinfo['userid'];
                        $qn_fromusername = $vbulletin->userinfo['username'];

to

Code:

$qn_fromuserid = $vbulletin->3345;
                        $qn_fromusername = $vbulletin->Johny;



All times are GMT. The time now is 07:45 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01266 seconds
  • Memory Usage 1,750KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_code_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete