Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Database update
bytte
✭
Hey guys, I have the whisper notification add-on installed. I'm about to migrate from phpBB to Vanilla. I managed to import all user data in Vanilla.
So now I have over 1000 members on a clean Vanilla install. I wondered if it's possible to do a database query that will make these the default settings in each member's account:
- Notify me, when comments are posted in my own discussions
- Tell me when someone whispers a comment to me
0
This discussion has been closed.
Comments
UPDATE `LUM_User` SET 1SubscribeOwn1 = '1'
to get everyone notified, as for setting up everyon with whisper notification, I'm not sure. You could try opening up the /whispernotification/default.php file, scrolling down to the bottom, and changing
$PreferencesForm->AddPreference('Notification', 'TellWhenWhisper', 'NotifyOnNewWhisper');
to
$PreferencesForm->AddPreference('Notification', 'TellWhenWhisper', 'NotifyOnNewWhisper',0,1);
but I'm not makin any guarantees
UPDATE `LUM_User` SET `SubscribeOwn` = '1'