PM didn't send - Private message welcome
Re: PM didn't send
We are also having this problem. How could we fix that?
Potku.net
"Before I speak, I have something important to say."
- Groucho Marx
"Before I speak, I have something important to say."
- Groucho Marx
-
- Registered User
- Posts: 980
- Joined: Wed Dec 22, 2004 10:26 pm
- Location: Tampere, Finland
-
- Registered User
- Posts: 250
- Joined: Mon Mar 22, 2010 1:49 pm
- Location: Florence (Italy)
- Name: Salvo Cortesiano
Re: PM didn't send
OK, we had to uninstall this because it wasn't doing what it was supposed to do. Not one PM was sent.
That's a shame. This kind of EXT would be very useful for new members.
That's a shame. This kind of EXT would be very useful for new members.
Potku.net
"Before I speak, I have something important to say."
- Groucho Marx
"Before I speak, I have something important to say."
- Groucho Marx
-
- Registered User
- Posts: 980
- Joined: Wed Dec 22, 2004 10:26 pm
- Location: Tampere, Finland
Re: PM didn't send
That's a shame.
[DEV/Beta] More extensions
Hopefully Google correctly translate my text// I do not support in private messages!
Hopefully Google correctly translate my text// I do not support in private messages!
-
- Registered User
- Posts: 191
- Joined: Sun Sep 15, 2013 11:49 am
- Location: bb3.mobi
- Name: Anvar Stybaev
Re: PM didn't send
You don't have an answer more useful ?
Communauté EzCom
« Traductions d’extensions & styles pour phpBB 3.2.x & 3.3.x ».
Lists of all extensions identified for phpBB 3.1.x & 3.2.x.
Lists of all styles identified for phpBB 3.1.x & 3.2.x.
Tu as un forum et tu veux aussi un site web ? Regarde par ici.
« Traductions d’extensions & styles pour phpBB 3.2.x & 3.3.x ».
Lists of all extensions identified for phpBB 3.1.x & 3.2.x.
Lists of all styles identified for phpBB 3.1.x & 3.2.x.
Tu as un forum et tu veux aussi un site web ? Regarde par ici.
-
- Registered User
- Posts: 1106
- Joined: Mon Oct 04, 2004 11:14 pm
- Location: France
- Name: Raphaël M.
Re: PM didn't send
Hi
just installed on 3.2
It seems the problem comes when you use the group of newly registered user. You should set them permissions to receive PMs
Hope this helps
just installed on 3.2
It seems the problem comes when you use the group of newly registered user. You should set them permissions to receive PMs
Hope this helps
-
- Registered User
- Posts: 7
- Joined: Sat Sep 02, 2017 6:34 pm
Re: PM didn't send
By default, the newly registered users can read their messages.
Communauté EzCom
« Traductions d’extensions & styles pour phpBB 3.2.x & 3.3.x ».
Lists of all extensions identified for phpBB 3.1.x & 3.2.x.
Lists of all styles identified for phpBB 3.1.x & 3.2.x.
Tu as un forum et tu veux aussi un site web ? Regarde par ici.
« Traductions d’extensions & styles pour phpBB 3.2.x & 3.3.x ».
Lists of all extensions identified for phpBB 3.1.x & 3.2.x.
Lists of all styles identified for phpBB 3.1.x & 3.2.x.
Tu as un forum et tu veux aussi un site web ? Regarde par ici.
-
- Registered User
- Posts: 1106
- Joined: Mon Oct 04, 2004 11:14 pm
- Location: France
- Name: Raphaël M.
Re: PM didn't send
For some reason it wasn't so here.
However, I was too optimistic : it worked on my local test board, but not on the production one.
The only difference between both is the number of extensions installed.
So, the only way now for me is to deactivate them and recheck one by one.
However, I was too optimistic : it worked on my local test board, but not on the production one.
The only difference between both is the number of extensions installed.
So, the only way now for me is to deactivate them and recheck one by one.
-
- Registered User
- Posts: 7
- Joined: Sat Sep 02, 2017 6:34 pm
Re: PM didn't send
hi
i use 3.2.1 forum version
my style is: Digi
Style version: 3.2.1
Extesnions version: 1.0.1 which i use now
when i activated my test user via ACP and i saw
did't send pm message welcome event i configurated
https://i.imgur.com/Tb1cEHy.png
i use 3.2.1 forum version
my style is: Digi
Style version: 3.2.1
Extesnions version: 1.0.1 which i use now
when i activated my test user via ACP and i saw
did't send pm message welcome event i configurated
https://i.imgur.com/Tb1cEHy.png
-
- Registered User
- Posts: 1092
- Joined: Tue Sep 05, 2017 8:00 am
- Location: Bulgaria
- Name: Ivailo
Re: PM didn't send
EDIT: Ignore below as not correct
I've just run into the same problem with PMs not being sent, and I think the problem might be a small bug in pmwelcome/event/listener.php. The block below only sends a welcome PM if the user account is activated immediately after registration (which in most cases is not possible unless activation emails etc are not being used).
I've modified my installation to test against USER_INACTIVE instead, and everything seems to work.[/s[
An alternate solution might be to check a board config variable to see if activation emails etc are enabled, but overkill for my own board.
I've just run into the same problem with PMs not being sent, and I think the problem might be a small bug in pmwelcome/event/listener.php. The block below only sends a welcome PM if the user account is activated immediately after registration (which in most cases is not possible unless activation emails etc are not being used).
Code: Select all
public function pm_welcome($event)
{
$user_row = $event['user_row'];
if ($user_row['user_type'] == USER_ACTIVE)
Code: Select all
public function pm_welcome($event)
{
$user_row = $event['user_row'];
if ($user_row['user_type'] == USER_INACTIVE)
-
- Registered User
- Posts: 16
- Joined: Mon Jul 17, 2017 7:37 pm
Re: PM didn't send
The original code has USER_NORMAL and not USER_ACTIVE...
And an user just becomes normal after activation.
And an user just becomes normal after activation.
Want to access all my Premium MODs and Extensions? Check out my store
phpBB Portugal Translator and Moderator
phpBB Portugal Translator and Moderator
-
- Translator
- Posts: 865
- Joined: Sun Jun 01, 2008 11:08 pm
Re: PM didn't send
Apologies, just checked Github and you're right (not sure where my version came from).
-
- Registered User
- Posts: 16
- Joined: Mon Jul 17, 2017 7:37 pm
Re: PM didn't send
Hi!
Using v3.2.7, nothing works... Permissions are right, no MP. Any clue, please?
Using v3.2.7, nothing works... Permissions are right, no MP. Any clue, please?
-
- Registered User
- Posts: 164
- Joined: Mon Jun 02, 2014 8:05 pm
- Name: Benjamin
Re: PM didn't send
Try the last Snapshot, 1.0.2 version here: https://github.com/Leinad4Mind/apwa/tre ... /pmwelcome.
Communauté EzCom
« Traductions d’extensions & styles pour phpBB 3.2.x & 3.3.x ».
Lists of all extensions identified for phpBB 3.1.x & 3.2.x.
Lists of all styles identified for phpBB 3.1.x & 3.2.x.
Tu as un forum et tu veux aussi un site web ? Regarde par ici.
« Traductions d’extensions & styles pour phpBB 3.2.x & 3.3.x ».
Lists of all extensions identified for phpBB 3.1.x & 3.2.x.
Lists of all styles identified for phpBB 3.1.x & 3.2.x.
Tu as un forum et tu veux aussi un site web ? Regarde par ici.
-
- Registered User
- Posts: 1106
- Joined: Mon Oct 04, 2004 11:14 pm
- Location: France
- Name: Raphaël M.
Re: PM didn't send
Galixte,
That was the one I have. Nethertheless, I disabled it, deleted the datas, delete from my server, uploaded it again, activated it, checked PM are authorized for everybody, and created a new account. Nothing. Do you need my board address?
That was the one I have. Nethertheless, I disabled it, deleted the datas, delete from my server, uploaded it again, activated it, checked PM are authorized for everybody, and created a new account. Nothing. Do you need my board address?
-
- Registered User
- Posts: 164
- Joined: Mon Jun 02, 2014 8:05 pm
- Name: Benjamin