MyBB Community Forums

Full Version: Set all people to recieve PMs
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have seen this tutorial
https://community.mybb.com/thread-44380.html
and run the following querys
UPDATE `mybb_users` SET `receivepms` = '1' WHERE `receivepms` = '0'
ALTER TABLE `mybb_users` CHANGE `receivepms` `receivepms` TINYINT(1) NOT NULL DEFAULT '1'

 
UPDATE mybb_users SET receivepms = '1' WHERE receivepms = '0'



but it works to all my users.
When a new user signup nobody can send pm him until he active "Receive private messages from other users."
I want to all my users can send pm to new users
above referred second query should be also executed.
ALTER TABLE `mybb_users` CHANGE `receivepms` `receivepms` TINYINT(1) NOT NULL DEFAULT '1'
I tried that and didn't work
try running both queries once again & check the result !
i run both these again
Quote:
ALTER TABLE `mybb_users` CHANGE `receivepms` `receivepms` TINYINT(1) NOT NULL DEFAULT '1'
UPDATE `mybb_users` SET `receivepms` = '1' WHERE `receivepms` = '0'
but didnt work again
^ have you noticed result at phpMyAdmin when you used those queries ?