MyBB Community Forums

Full Version: SQL Query to enable private messages for all users?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a query to make "Receive private messages from other users" enabled for all users?
UPDATE `mybb_users` SET `receivepms` = '1' WHERE `receivepms` = '0' 

see also common sql queries guidance
What .m. said however it may be worth checking whether your registration form has this set private messages set as default otherwise this will be a recurring problem.
(2016-06-29, 12:01 PM)Paradigm Wrote: [ -> ]What .m. said however it may be worth checking whether your registration form has this set private messages set as default otherwise this will be a recurring problem.

Yeah this was the problem. Thanks  Smile
(2016-06-29, 08:19 PM)Tactrus Wrote: [ -> ]
(2016-06-29, 12:01 PM)Paradigm Wrote: [ -> ]What .m. said however it may be worth checking whether your registration form has this set private messages set as default otherwise this will be a recurring problem.

Yeah this was the problem. Thanks  Smile

No problem, this should be standard for most custom themes however that doesn't seem to be the case.