Log in

View Full Version : Change time between reported posts


Lynne
05-22-2009, 10:00 PM
The time allowed between reporting posts is set by the vBulletin Option "Email Flood Check". Sometimes you want to have that value set to one thing (default is 60 seconds), but allow users to report posts sooner than that value. To do this, you may create a simple plugin (change 'x' to be the time you wish, in seconds, to allow between reported posts):

hook_location: global_start

if (THIS_SCRIPT == 'report')
$vbulletin->options['emailfloodtime'] = x;

mme42
06-12-2009, 02:47 PM
Thanks Lynne, it's working great. :D Is there an easy way to modify it so that you can have different time limits for different usergroups?

Lynne
06-12-2009, 02:56 PM
Probably just something like this:
if (THIS_SCRIPT == 'report')
{
if (is_member_of($vbulletin->userinfo, a,b,c))
{
$vbulletin->options['emailfloodtime'] = xxx;
} else if (is_member_of($vbulletin->userinfo, d,e,f))
{
$vbulletin->options['emailfloodtime'] = yyy;
} else
{
$vbulletin->options['emailfloodtime'] = zzz;
}
}
(Not tested.)

mme42
06-12-2009, 03:10 PM
Wow, quick reply, thanks. So as far as replacing....

a,b,c = first set of usergroup IDs
xxx = sets time for first set

d,e,f = second set of usergroup IDs
yyy = sets time for second set

zzz = default time for usergroups not defined?

Is that correct?

Lynne
06-12-2009, 04:11 PM
Yes, that is correct. If you have some specific usergroupids and times, I can try to write it for you.

mme42
06-12-2009, 04:43 PM
Great. Because I tried and it didn't seem to work out for me. I just want 5,6,7 (mods and up, though I think admins are exempt anyway right?) at 0/no limit. And all others at 30s. I think I messed up by trying to remove the second group (else if).

Lynne
06-12-2009, 06:17 PM
Try this:
if (THIS_SCRIPT == 'report')
{
if (is_member_of($vbulletin->userinfo, 5,6,7))
{
$vbulletin->options['emailfloodtime'] = 0;
} else
{
$vbulletin->options['emailfloodtime'] = 30;
}

}

mme42
06-13-2009, 01:14 PM
That worked great thanks. I was missing "else."

upkelk
06-22-2009, 01:36 AM
That worked great thanks. I was missing "else."

mme42
06-22-2009, 02:29 PM
That worked great thanks. I was missing "else."

Uhh.....? Are you copying me? :p

ludachris
05-27-2010, 03:17 PM
Any idea how to make this apply to blog entries too?

Lynne
05-27-2010, 10:22 PM
Any idea how to make this apply to blog entries too?
I would think you could just change THIS_SCRIPT from 'report' to 'blog_report'. I do not have a vB3 blog to try this out on, however.

mosz
11-22-2010, 12:00 PM
great information
I was looking for block report for some usergroups :)
THX

Byggahus
02-22-2011, 10:36 AM
Thanks, works fine for us as well.

Videx
02-26-2011, 01:48 AM
Yes, I can see huge problems if users have to wait 61 seconds to report a second post. :)

Phases
12-13-2011, 06:46 PM
Awesome, thank you.

cbiweb
01-24-2012, 02:06 PM
Will this work on vB4?

Lynne
01-24-2012, 04:17 PM
Will this work on vB4?
It's just php, so the php code should work. However, the global_start hook location is deprecated, so you'll need to pick another and may need to globalized $vbulletin.

cbiweb
01-24-2012, 07:18 PM
Okay, thanks!

M.C.
06-27-2013, 06:34 PM
Hi! is there way to limit it by X per day or so...? thanks! (I need it for 4.2)

Lynne
06-28-2013, 03:58 PM
Not by using this plugin, no. You would need to code your own plugin to do that.

M.C.
07-02-2013, 06:38 PM
thanks! but... :( need some help!

Lynne
07-03-2013, 02:28 AM
This is not the place to ask for help with that. Please post in the appropriate forum if you need help writing a plugin.