Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Admin Mass PM v1.0 Details »»
Admin Mass PM v1.0
Version: 1.00, by Zero Tolerance Zero Tolerance is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Version: 3.0.3 Rating:
Released: 07-13-2004 Last Update: Never Installs: 49
 
No support by the author.

Well one was made, but not to my liking, it was an edit of the email page, and didn't really please me to what i wanted. So i made this, a simple yet effective hack well requested across vbulletin and other systems.

Features:
Number of PM's to send at a time
- It's a server intensive process and you don't want to ultimatly send to everyone at once on your forum unless you have like 50 member's.
Send to usergroup only
- You can specify if you want to send to ALL usergroup's or just 1 usergroup, helps if your wanting to Pm your admins or mods, or just members.

And thats it... what more could you ask for in a mass pm hack?

Any questions please reply below, there's a preview for you all because i know myself i hate installing things just to see what they look like

Enjoy,

- Zero Tolerance

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #22  
Old 07-18-2004, 02:09 PM
HakkieDEV HakkieDEV is offline
 
Join Date: Jun 2004
Posts: 62
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by trackpads
Is it possible to have it only send like 20 PMs at a time until complete? Would that help the issue with sending PMs to everyone?

I would actually prefer a mass PM instead of a mass email (thanks to VBs emails getting blocked all the time)

Thanks again,

-Jason
Very good hack mate!

I was looking to do something like this and you've done it!
Reply With Quote
  #23  
Old 07-31-2004, 03:25 PM
CharlieBrownDE's Avatar
CharlieBrownDE CharlieBrownDE is offline
 
Join Date: Aug 2003
Location: Hamburg
Posts: 14
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hi,

thx for the wonderfull hack
sorry for my bad english

I have still one ask in addition.
also does the possibility exist the variable as replacementaddresses to take with this chops?

$userid, $username, $email ....
Reply With Quote
  #24  
Old 08-08-2004, 07:35 PM
Hiro's Avatar
Hiro Hiro is offline
 
Join Date: Jul 2004
Location: Queensland
Posts: 146
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Amazing hack, Successfully installed.
Reply With Quote
  #25  
Old 09-08-2004, 08:12 AM
trackpads's Avatar
trackpads trackpads is offline
 
Join Date: Aug 2003
Location: Armyville
Posts: 1,074
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Zero Tolerance
Well one was made, but not to my liking, it was an edit of the email page, and didn't really please me to what i wanted. So i made this, a simple yet effective hack well requested across vbulletin and other systems.

Features:
Number of PM's to send at a time
- It's a server intensive process and you don't want to ultimatly send to everyone at once on your forum unless you have like 50 member's.
Send to usergroup only
- You can specify if you want to send to ALL usergroup's or just 1 usergroup, helps if your wanting to Pm your admins or mods, or just members.

And thats it... what more could you ask for in a mass pm hack?

Any questions please reply below, there's a preview for you all because i know myself i hate installing things just to see what they look like

Enjoy,

- Zero Tolerance
Any update on the new version?

Thanks again!!

-Jason
Reply With Quote
  #26  
Old 09-10-2004, 02:56 AM
68 Z-28 68 Z-28 is offline
 
Join Date: Jul 2003
Posts: 41
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ran into a minor problem. I successfully installed it into my mods control panel and it's there to work.

However, this hack will only send PM's to people in a usergroup which they are a primary member of. I have made more usergroups for different regions, and the members have that as a secondary usergroup. If I try to send a PM to a specific regional group(all members are secondary not primary) it says that there are no members in that usergroup.

How would I go about modifying the code so it will also do a check for members that have a usergroup as the second one.

Thankyou in advance
Reply With Quote
  #27  
Old 09-26-2004, 08:28 AM
dune dune is offline
 
Join Date: May 2004
Posts: 46
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Perfect. Thank you!

I thought how helpful it would be to have these abilities, came here to look and voila!

*install*
Reply With Quote
  #28  
Old 10-01-2004, 05:02 PM
dune dune is offline
 
Join Date: May 2004
Posts: 46
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by 68 Z-28
However, this hack will only send PM's to people in a usergroup which they are a primary member of. I have made more usergroups for different regions, and the members have that as a secondary usergroup. If I try to send a PM to a specific regional group(all members are secondary not primary) it says that there are no members in that usergroup.

How would I go about modifying the code so it will also do a check for members that have a usergroup as the second one.
We use secondary groups too, primarily. (We leave everyone except admins in Reg users (and banned, unregistered, etc). Additional permissions are in secondary groups, so we needed this to.

Here's what you need to do:

In admin_pmall.php

Find:
Code:
		// Collect Array Of Members Within Specified Usergroup
		$Get_Members=$DB->query("select * from ".TABLE_PREFIX."user where usergroupid='{$_POST['to_usergroup']}' order by userid");
REPLACE WITH:
Code:
		// Collect Array Of Members Within Specified Usergroup
		$Get_Members=$DB->query("select * from ".TABLE_PREFIX."user where usergroupid='{$_POST['to_usergroup']}' or membergroupids REGEXP '[[:<:]]{$_POST['to_usergroup']}[[:>:]]' order by userid");
Find:
Code:
		// Collect Array Of Members Within Specified Usergroup
		$Get_Members=$DB->query("select * from ".TABLE_PREFIX."user where usergroupid='{$_GET['usergroup']}' order by userid");
REPLACE WITH:
Code:
		// Collect Array Of Members Within Specified Usergroup
		$Get_Members=$DB->query("select * from ".TABLE_PREFIX."user where usergroupid='{$_GET['usergroup']}' or membergroupids REGEXP '[[:<:]]{$_GET['usergroup']}[[:>:]]' order by userid");
This will find members who are in the specified group as EITHER their primary or as a secondary. Hope that helps. Credit for the REGEXP goes to my sysadmin Dan (the Man).
Reply With Quote
  #29  
Old 10-01-2004, 05:08 PM
dune dune is offline
 
Join Date: May 2004
Posts: 46
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Zero Tolerance
And thats it... what more could you ask for in a mass pm hack?
Well, since you asked.

The ability to preview the PM and at least the number of people (if not the full list for shorter lists) who will receive the PM BEFORE it gets sent would be nice.
Reply With Quote
  #30  
Old 12-23-2004, 10:47 AM
kristian's Avatar
kristian kristian is offline
 
Join Date: Feb 2003
Location: Cambridgeshire, UK
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Trust me to be the one...! :tired:

I can send to Admins, mods and Super Mods. But I cant send to Registered users (6500+); even at 30 at a time!

The page goes blank and nothing happens. I checked out the PMtexts table and nothing is sent.

Any ideas???
Reply With Quote
  #31  
Old 12-24-2004, 10:27 AM
T3MEDIA T3MEDIA is offline
 
Join Date: Dec 2004
Posts: 944
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Good point that happend to me as well the screen went blank.
is it sending? I thought it would show the names and say sent sent sent.

I guess I have to wait and see.
================================================== =
edit:
Found out what is up but dont know why it happens.
If I pick a uersergoup. Like reg. users.
and have something in the title. it works.
If I just do "usergroups" nada.

So just to let you guys know.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 11:26 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.05945 seconds
  • Memory Usage 2,315KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (4)bbcode_code
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete