Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+5 votes
375 views
in Q2A Core by
edited by
Will Banning users and banning ips be in cluded in the next release this is currently the only thing keeping me from using it.

1 Answer

+1 vote
by
 
Best answer
Banning users and IP addresses is scheduled for part of the version 1.1 release, but that is a couple of months away at least.

In the meantime it can be implemented on the existing code base by modifying qa_limits_remaining() in qa-app-limits.php - simply return 0 from the function if you want to block the user identified by the $userid parameter or the IP address of the user making this request - you can get that from $_SERVER['REMOTE_ADDR'] - that's it!
...