I’m planning to create a custom system for comments. I was wondering about comment moderation. For approving comments, is it as simple as just creating a field called “Moderated” in MySQL?
What’s a good suggestion for countering spam? Akismat?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you design your columns to have a status column, so only approved comments are displayed, then you could use a DATETIME column called approved date:
COMMENTStablecomment_id, INT, primary keycomment_detail, VARCHARapproved_date, DATETIME, NULLThis way, you know it was approved and when. But it also relies on staff to approve things before they are visible. It’s unclear if there are other statuses involved in your proposed comment system – if there are, it might require a
COMMENT_STATUS_CODEtable.