Private messaging [message #31730] |
Mon, 15 May 2006 20:50 |
peregil
Messages: 9 Registered: February 2006
Karma: 0
|
Junior Member |
|
|
I have set "allow private messaging" to "yes".
However a lot of my users have keep getting the message "You cannot send private messages until you enable the 'Allow Private Messages' option in your profile."
For my use I have tried to simplify FudForum, and some of the pages I have disapled (like the setting page where this is an option".
It seems like this only happens to new, signed up users. The users I did a bulk import on, have all PM enabled.
Any ideas how this can be fixed?
|
|
|
Re: Private messaging [message #31732 is a reply to message #31730] |
Tue, 16 May 2006 00:45 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
There are 2 PM settings one is a global that allows disabling of the entire PM system and the other is a per-user local setting that allows each user to turn of PM just for their account. The error message your user is seeing is caused by the latter being enabled (disable PM system).
By default the option to recieve PMs is set to YES for all users, the only way it'd be disabled is if the user disabled it themselves.
FUDforum Core Developer
|
|
|
|
Re: Private messaging [message #31754 is a reply to message #31748] |
Tue, 16 May 2006 13:20 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
Are the new users who are having this problem registering via the standard registration page or did you put a custom one in place. If you are using a custom registration page you need to make sure that users_opt has the 32 bit set.
Ex. users_opt |= 32;
FUDforum Core Developer
|
|
|
|
Re: Private messaging [message #31779 is a reply to message #31778] |
Wed, 17 May 2006 21:08 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
You can enable this setting by doing a mass update on the users table
UPDATE users SET users_opt=users_opt| 32;
FUDforum Core Developer
|
|
|
|