The engine does not provide moderation, ban, or delete a user.
How then can you remove or ban bullies?
The engine does not provide moderation, ban, or delete a user.
How then can you remove or ban bullies?
As far as I remember LS, there is no admin box in it at all out of the box, so there are several ways to solve this problem:
Do it directly, through a query to the database. I would advise not to delete users and posts with comments, so as not to get problems, but to disable them, something like this:
UPDATE prefix_user SET user_activate = 0 WHERE user_id = ID;
UPDATE prefix_topic SET topic_publish = 0 WHERE user_id = ID;
UPDATE prefix_comment SET comment_delete = 1 WHERE user_id = ID;
Source: https://ru.stackoverflow.com/questions/525137/
All Articles