I've got a website where users can catalog their action figure collections, and I'm looking to add a comments section under each figure for discussions. However, I'm a bit concerned about how to manage moderation since I run everything solo. While I can let users flag inappropriate comments, I want to be more proactive in handling this issue. Is using wordlists for blocking comments still a practical method, or should I consider leveraging AI for moderation? Any tips for managing this with my basic PHP backend would be appreciated!
2 Answers
Consider implementing a system where comments go into a mod approval queue before being visible on the site. This way, you can manage content more effectively without too much hassle. Basic word list filters often fail since people can easily get around them. If you opt for AI moderation, it could really save you time, especially if the comment volume increases later on.
Also, if you're just starting out, a simple word filter combined with user flagging might suffice for now. You can always refine your approach as your community grows!
You might want to look into integrating Perspective, a free API from Google that evaluates text for toxicity levels. It can help you automatically flag potentially problematic comments before they go live.
That sounds doable! I'm not expecting too many comments, so an approval stage might just work without being too cumbersome.