Posted by archard-gdo on October 24, 2007 at 11:34pm
For some reason when users register on my forum, the default value for "Display Signatures" in the user's UCP is always set to No, when it should be set to yes. This is a pretty big problem for me.
I'm wondering if this module has anything to do with why the forum is behaving like this. I have posted on the official phpbb support forums and no one knows why this is happening.
Comments
Sure does ;) 1) Configure a
Sure does ;)
1) Configure a user how you think every user should be by default (not sure how many options this will cover)
2) Find that user in the user database (using phpMyAdmin or something like that) and look at the user_options column.
3) Open phpbb.module, find "// Insert a minimal user." and below that, '853'.
4) Replace 853 with the desired value
To update all existing users, do this
UPDATE phpbb_users SET user_options = 000 WHERE user_id > 52;
except replace 000 with the desired value.
THANK YOU <3
THANK YOU <3