Does an add on exist to deal with flooding.

I want to be able to limit how many conversations are started per hour.

I have such a mod for sale. It limits the conversations per hour and it is on a group per group basis. So you can set the limit differently for each group. Please let me know if you are interested in purchasing it.
 
I think it simple extends XenForo_ControllerPublic_Conversation::actionInsert();
Find line from 590 to 593:
PHP:
if (!$conversationDw->hasErrors())
        {
            $this->assertNotFlooding('conversation');
        }
Replace by:
Code:
if (!$conversationDw->hasErrors())
        {
            $this->assertNotFlooding('conversation', 3600);
        }
 
I have such a mod for sale. It limits the conversations per hour and it is on a group per group basis. So you can set the limit differently for each group. Please let me know if you are interested in purchasing it.

Can you send me a message about this?
 
I think it simple extends XenForo_ControllerPublic_Conversation::actionInsert();
Find line from 590 to 593:
PHP:
if (!$conversationDw->hasErrors())
        {
            $this->assertNotFlooding('conversation');
        }
Replace by:
Code:
if (!$conversationDw->hasErrors())
        {
            $this->assertNotFlooding('conversation', 3600);
        }
Wouldn't it be
Code:
('conversation', '3600')
 
Top Bottom