MyBB Community Forums

Full Version: SQL Queries
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What are the SQL Query to for the following User CP Settings. All the following settings, I want to be enabled on all users.

Display images in posts.
Display videos in posts.
Receive emails from the Administrators.
Receive private messages from other users.
UPDATE mybb_users SET showimages=1, receivepms=1, showvideos=1;
Thank you for the answer,

Also, just one more query for this one.
Alert me with a notice when I receive a Private Message.
UPDATE mybb_users SET pmnotice=1;