Log in

View Full Version : Moderate Posts


Hialls
07-29-2004, 08:53 PM
Hi,
For some reason some usergroups on my forums require for them to be moderated before post appears. I have checked both forum permissions and the usergroup, neither display and answer. I was wondering if anyone knew how i would update the sql table to stop all moderation of posts. Or is it possible to set an option to totally disable moderating of posts?

Andreas
07-29-2004, 09:48 PM
UPDATE usergroup SET forumpermissions = forumpermissions - 131072 WHERE forumpermissions & 131072
UPDATE forum SET options = options - 24 WHERE options & 24

This should turn off all moderation of posts and threads.
However, you must also rebuild forum- and usergroupcache so the changes can take affect.

Hialls
07-29-2004, 10:41 PM
awesome :D the exact answer i was after thankyou KirbyDE