i want a way to blocking words like help, please, ect in question title
You will need to create a filter plugin. See http://question2answer.org/modules.php?module=filter
Use the filter_question function and check $question['title'] to see if it has those words in. If it does, you can do one of these:
1. Set it for moderation using $question['queued']=true;
2. Return a string containing the error, e.g. return 'Question cannot contain the word help';
3. Just remove the word from the title.
Scot thanks, is this ok so,
Welcome to the Q&A site for Question2Answer.
If you have a question about Q2A, please ask here, in English.
To report a bug, please create a new issue on Github or ask a question here with the bug tag.
If you just want to try Q2A, please use the demo site.