Skip to main content

Error! You have reached the limit of posting...

Trying to populate a group with "Documents and Files" after testing the BuddyPress Migration and get the following error.

"You have reached the limit of posting. Please try after some time"

Are there any setting for this or ways to ignore the limit based on WordPress User Role, or FluentCRM Tag?

Mat β€Ž

David ChurchillΒ there should be a filter hook for that to change the default Rate Limit (to prevent Spam etc) for Admins however it is not available in the github repo yet so I am not sure if it exists.

Adding related link so the Ninjas can follow

Shahjahan JewelΒ can you share the code snippet to increase the limit (the Best if we could define it separatly for Admins and other users)

kyler boudreau

I'm hitting up against this problem for the first time with the latest 1.5.0 release today.

Deckard Cain

Same problem. I'm super user admin on private community (just me nobody else) and am unable to create posts. I'm on cooldown! There are no results here either

David Churchill

Following up on this - did a filter hook ever get created to control Rate Limits? Hitting the limit is a real pain when trying to migrate from BuddyPress as I need to add content like Documents etc. to the space(s).

Ruman Ahmed

Regarding rate limiting, yes, we have introduced a filter. Please use this filter hook within a code snippet plugin like FluentSnippets to increase the number of posts allowed within the 5-minute duration. Hopefully, this will help resolve the matter.

add_filter('fluent_community/rate_limit/posts_per_5_minutes', function($limit) {
return 10; // allow 10 posts per 5 minutes
});

https://github.com/AlgorithmsUnlocks/WPManage-Ninja/blob/master/fluent-community/php-snippets/post-rate-limiting-per-5-minutes.php