vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   Mass Admin PM v1.5 (https://vborg.vbsupport.ru/showthread.php?t=70223)

Eagle Creek 02-28-2005 10:52 PM

Is it full 3.0.7 compatible?

Zero Tolerance 03-01-2005 09:39 AM

I have no reason to believe it wouldn't work with 3.0.7, but if you get any problems feel free to let me know.

- Zero Tolerance

Eagle Creek 03-01-2005 11:37 AM

Quote:

Originally Posted by Zero Tolerance
I have no reason to believe it wouldn't work with 3.0.7, but if you get any problems feel free to let me know.

- Zero Tolerance

Ok I'll try in a test environment. I have two large boards running and I don't want them anything to happen :).

Nice hack :)

T3MEDIA 03-08-2005 08:54 PM

Quote:

Originally Posted by Zero Tolerance
I have no reason to believe it wouldn't work with 3.0.7, but if you get any problems feel free to let me know.

- Zero Tolerance

Zero from your experience do you know why when using your hack a white screen appears and only admins get the PM's?

Zero Tolerance 03-09-2005 12:51 AM

Quote:

Originally Posted by T3MEDIA
Zero from your experience do you know why when using your hack a white screen appears and only admins get the PM's?

Well, the only explanation to that i can think of is a bad upload, the script is working fine for me on 3.0.7

Also, this doesn't support Secondary Usergroups.

- Zero Tolerance

Lee Wilde 03-11-2005 01:13 AM

I'm the 100th install :-) Very useful little hack, thanks.

flee2 03-11-2005 04:37 AM

in a 18.000 user database, i put 300 send pm times, and after tried 50, and get stuck... only the blue screen of cp, and nothing more.. only appears at top, PM Users [Created By Zero Tolerance].

flee2 03-11-2005 05:59 AM

Zero. I will not question your way to make hacks, but checking a few posts back, i see that the users with a lot of records in USER table in database, get stuck when trying to send this. You replied that's is a UPLOAD problem.. or any other problem like this.

I will explain this for you.. checking your hack, it's really good constructed, but you miss a little detail. when you LIMIT the send of PM's, you must LIMIT the QUERY to DB too.

I looked that the query is static in all "retries" to send PM's:

PHP Code:

$Query_Build "select * from ".TABLE_PREFIX."user where usergroupid IN({$set_in}) order by userid" 

this will return a query result with ALL your members in the usergroup / user table.. if you have 25.000 members in the group "Registered", the query result will have 25.000 records, and before you get the reply from DB, you mysql will go down.

The way to solve this, is LIMIT the query to database, in the one by one step to sending pm's. (LIKE the vB do while sending mass emails)

Example:

Sending to 150 users in usergroup 6, send amount by step is set in 50.

- START SCRIPT
- CHECK THE AMOUNT OF PM'S SENT BY STEP (50)
- QUERY DATABASE TO USERGROUP 6, LIMIT RECORDS FROM 0 TO 50
- SEND PM'S 0 TO 50
- SHOW OK RESULTS AND CONTINUE TO NEXT STEP (SEND THE "STARTAT")
- QUERY DATABASE TO USERGROUP 6, LIMIT RECORDS 51 TO 100 (START - START + AMOUNT)
- SEND PM'S 51 TO 100
AND CONTINUE... TO END


-------------------------

your actual script works like this:

Sending to 150 users in usergroup 6, send amount by step is set in 50.

- START SCRIPT
- CHECK THE AMOUNT OF PM'S SENT BY STEP (50)
- QUERY DATABASE TO USERGROUP 6, NO LIMIT RECORDS (ALL RESULTS)
*** IF THE USERS ARE A LOT, YOU GET A HANGED DB IN A SUPER BIG QUERY **

-----------------

It will be much better if you correct this issue... :D

Dennis Olson 03-15-2005 01:51 PM

One more thing: I would like to NOT include the sending Admin's signature-line (or at least have it as a yes/no checkbox). How can that be done please?

Thanks!

Viks 03-16-2005 08:28 PM

I find this hack.. VERY useful. I installed it today.

However I have a question. When i sent an PM to all my members using this mod, no one got a automated email in their inbox telling them that they have recieved a new PM (!?)

any suggestion what could be wrong. they all get notified otherwise.

Viks 03-18-2005 04:08 AM

can I *bump* the thread to if anyone has any comments on my question?

Eagle Creek 03-18-2005 08:42 AM

Quote:

Originally Posted by Viks
can I *bump* the thread to if anyone has any comments on my question?

You already did ;).

Marco van Herwaarden 03-18-2005 08:50 AM

Quote:

Originally Posted by Viks
I find this hack.. VERY useful. I installed it today.

However I have a question. When i sent an PM to all my members using this mod, no one got a automated email in their inbox telling them that they have recieved a new PM (!?)

any suggestion what could be wrong. they all get notified otherwise.

Sending a PM notification mail is not implemented in this hack. Since this hack is already very server intensive, i also don't know if that would be a good idea.

PS If you want to reach them by mail anyway, why don't you just send out a mass mail instead of a PM?

Dennis Olson 03-29-2005 02:43 PM

I'd still like to know how to NOT include the sender's SIG-line....

dssmili 03-30-2005 02:59 PM

I click send PM and all I get is a blank page. No error nothing and it just sits there?

mili

Devient 03-31-2005 02:12 PM

gettting same problem as many people......can send a mass pm to a few people, but as i got 6500 members when i try and send them a pm the page goes blank...even when i try sending 25 at a time.

is there a fix for this?

magyosha 03-31-2005 06:56 PM

i'm using this hack .. very effective ..

however ..
when a user normaly sends a PM it they also recieve an email telling them they have recieved a PM etc .. when sending with the hack no email is sent .. can this be added as an option .. it may well increase the server load .. however lowering the sends at one time could make this ok

flee2 04-09-2005 05:37 PM

we are waiting the BUGFIX to the error generated trying to send pm to a big user database (I writed the solution above..) if you want to make it tell us, if not, i will make a new hack with this bug fixed, and release with another name.

greetz..

T3MEDIA 04-09-2005 05:41 PM

Quote:

Originally Posted by flee2
we are waiting the BUGFIX to the error generated trying to send pm to a big user database (I writed the solution above..) if you want to make it tell us, if not, i will make a new hack with this bug fixed, and release with another name.

greetz..

just do a fix no big deal. No need to confuse users. just say hey I found a work around and here it is... done.

I know I will be waiting.

RichieBoy67 04-15-2005 03:00 PM

That worked perfectly for me!! Thanks.... this is an awesome hack and your right..... very easy install.

Thanks for another great hack!!

BigBlue1974 04-15-2005 07:19 PM

I have just a small site, around 250 users. There is a subset of members on that site(my baseball team) that I want PMs to send to. From reading what this can do and the screenshots this will not do it. Is there such a thing available?

MB Dreamz 05-06-2005 05:43 PM

Zero, did you figure out how to implement the second usergroup into this hack yet, or is it not going to happen? Thanks.

Watson 05-12-2005 07:35 PM

Quote:

Originally Posted by Devient
gettting same problem as many people......can send a mass pm to a few people, but as i got 6500 members when i try and send them a pm the page goes blank...even when i try sending 25 at a time.

is there a fix for this?

I get this exact same problem :(:(

Watson 05-16-2005 05:45 PM

I am wondering if this problem is because I use a subdomain for my forums, if so is there a way round this??

Watson

GSX-Racing 06-17-2005 06:20 AM

Any fix or change for second usergroup.

I need to send mass PM's to a usergroup that has only additional users.

Alrasam 06-23-2005 08:01 PM

Hello Sir ,

When i send to the Mod the message will be sent OK , but when i send to register users there is Blank Page and the messages didn't sent ,

please help :ermm:

i have more that 8000 users

is there any thing to fix it!!!!!

Alrasam 06-24-2005 08:15 PM

.
.
up

GSX-Racing 06-24-2005 09:25 PM

Not sure we are going to get any feedback here Alrasam. :(

Alrasam 06-25-2005 08:04 AM

:ermm:

derekivey 07-17-2005 10:33 PM

Great mod!

* derekivey clicks install

csidlernet 07-20-2005 07:33 AM

coolies

ReZ 07-27-2005 02:09 PM

Thanks for the hack Zero Tolerance!

sajjid 08-22-2005 04:05 PM

will ypu be porting this over to 3.5
thanks

thephonemall 08-27-2005 04:08 PM

Havent tested it.. but it looks like its working ;) Took me about 30 seconds to install rather than 3 seconds though. sheesh. /me click install n e wayz :)

Neutral Singh 08-28-2005 03:35 AM

Quote:

will ypu be porting this over to 3.5
i second the request.

Valter 08-31-2005 09:50 AM

Hi ZT

Did you tried to make vB3.5 compatible version?

Thanks

Avalon111 09-02-2005 08:58 AM

i love this hack!!!!!

great work

gethinoakes 09-29-2005 10:01 PM

Any chance this would work with 3.5?

Avalon111 09-30-2005 12:30 PM

Quote:

Originally Posted by gethinoakes
Any chance this would work with 3.5?

have your tried it?

Thug 10-08-2005 06:31 PM

great hack installed


All times are GMT. The time now is 05:01 PM.

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.01288 seconds
  • Memory Usage 1,814KB
  • 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
  • (1)bbcode_php_printable
  • (9)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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