[3.2][3.3][BETA] Popup PM

A place for Extension Authors to post and receive feedback on Extensions still in development. No Extensions within this forum should be used within a live environment!
Scam Warning
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

IMPORTANT: Extensions Development rules

IMPORTANT FOR NEEDED EVENTS!!!
If you need an event for your extension please read this for the steps to follow to request the event(s)
User avatar
Татьяна5
Registered User
Posts: 189
Joined: Wed Feb 13, 2013 5:30 pm
Name: Tatiana

[3.2][3.3][BETA] Popup PM

Post by Татьяна5 »

Extension Name: Popup PM
Author: Татьяна5

Extension Description: Pop-up envelope layer upon receipt of a PM and a blinking page title before reading a PM
There is information about the message on the envelope only if the message came only one
The envelope and flashing header can be disabled in the admin panel and in the UCP
Extension Version: 0.0.2

Screenshots:
Image
Image

GitHub: https://github.com/Tatiana5/popuppm
Extension Download: https://github.com/Tatiana5/popuppm/archive/master.zip
Last edited by Татьяна5 on Sun Apr 25, 2021 8:53 pm, edited 1 time in total.
User avatar
Onnozel Manneke
Registered User
Posts: 145
Joined: Mon Feb 01, 2021 8:37 pm
Location: Walhalla
Name: Loki Heimdall
Contact:

Re: [3.2][3.3][BETA] Popup PM

Post by Onnozel Manneke »

The "blink" option is not working on my 3.3.3 forum
phpBB NL Extension translations on request.
Visit: https://www.phpbbnl.be

Image
User avatar
Onnozel Manneke
Registered User
Posts: 145
Joined: Mon Feb 01, 2021 8:37 pm
Location: Walhalla
Name: Loki Heimdall
Contact:

Re: [3.2][3.3][BETA] Popup PM

Post by Onnozel Manneke »

Ignore previous message :lol:

Btw, I "restyled" the envelope a little...


Download: https://www.phpbbnl.be/scripts/PhpbbScr ... images.zip
Image 030.png
Image 031.png
phpBB NL Extension translations on request.
Visit: https://www.phpbbnl.be

Image
User avatar
thecaretaker1
Registered User
Posts: 127
Joined: Tue Dec 30, 2014 8:38 pm

Re: [3.2][3.3][BETA] Popup PM

Post by thecaretaker1 »

This is a fantastic extension. Thank you for your hard work.

Is there a way to make the envelope persistent? Meaning it doesn't disappear until the user actually opens the message.
User avatar
thecaretaker1
Registered User
Posts: 127
Joined: Tue Dec 30, 2014 8:38 pm

Re: [3.2][3.3][BETA] Popup PM

Post by thecaretaker1 »

I've had a few complaints that folk are not getting the usual email notification sent when they get a PM. I don't see how that can be due to the extension, but thought I'd ask. I'm getting emails OK, but I am admin.
User avatar
Татьяна5
Registered User
Posts: 189
Joined: Wed Feb 13, 2013 5:30 pm
Name: Tatiana

Re: [3.2][3.3][BETA] Popup PM

Post by Татьяна5 »

This extension is a port of the old mod. It does not interfere with the notification system
User avatar
thecaretaker1
Registered User
Posts: 127
Joined: Tue Dec 30, 2014 8:38 pm

Re: [3.2][3.3][BETA] Popup PM

Post by thecaretaker1 »

Татьяна5 wrote: Sat May 01, 2021 2:05 pm This extension is a port of the old mod. It does not interfere with the notification system
Thank you. I didn't think it was connected.

I love this extension. Great work! Thank you :D
User avatar
SpIdErPiGgY
Registered User
Posts: 189
Joined: Sun May 02, 2021 2:11 pm
Location: Erpe-Mere, Aalst, BE
Name: Andy Dm
Contact:

Re: [3.2][3.3][BETA] Popup PM

Post by SpIdErPiGgY »

I'm getting this error when sending points to users via the Ultimate Points extension:

Code: Select all

[phpBB Debug] PHP Warning: in file [ROOT]/ext/tatiana5/popuppm/event/listener.php on line 127: Trying to access array offset on value of type bool
https://www.dmzx-web.net/viewtopic.php?f=66&t=2415
phpBB NL Extension translations, also on request.
--> Click Here: Myarea51secrets.com <--
User avatar
3Di
I've Been Banned!
Posts: 17538
Joined: Mon Apr 04, 2005 11:09 pm
Location: I'm with Ukraine 🇺🇦
Name: Marco
Contact:

Re: [3.2][3.3][BETA] Popup PM

Post by 3Di »

SpIdErPiGgY wrote: Wed May 05, 2021 1:25 am I'm getting this error when sending points to users via the Ultimate Points extension:

Code: Select all

[phpBB Debug] PHP Warning: in file [ROOT]/ext/tatiana5/popuppm/event/listener.php on line 127: Trying to access array offset on value of type bool
Try and change that line
[ROOT]/ext/tatiana5/popuppm/event/listener.php on line 127

FROM
if ($row['msg_id'] != '')

TO
if (is_array($row) && !empty($row['msg_id'])

NOT TESTED
🆓 Free support for our extensions also provided here: phpBB Studio
🚀 Looking for a specific feature or alternative option? We will rock you!
Please PM me only to request paid works. Thx. Buy me a coffee -> Image
My development's activity º PhpStorm's proud user º Extensions, Scripts, MOD porting, Update/Upgrades
User avatar
SpIdErPiGgY
Registered User
Posts: 189
Joined: Sun May 02, 2021 2:11 pm
Location: Erpe-Mere, Aalst, BE
Name: Andy Dm
Contact:

Re: [3.2][3.3][BETA] Popup PM

Post by SpIdErPiGgY »

3Di wrote: Wed May 05, 2021 2:36 am
SpIdErPiGgY wrote: Wed May 05, 2021 1:25 am I'm getting this error when sending points to users via the Ultimate Points extension:

Code: Select all

[phpBB Debug] PHP Warning: in file [ROOT]/ext/tatiana5/popuppm/event/listener.php on line 127: Trying to access array offset on value of type bool
Try and change that line
[ROOT]/ext/tatiana5/popuppm/event/listener.php on line 127

FROM
if ($row['msg_id'] != '')

TO
if (is_array($row) && !empty($row['msg_id'])

NOT TESTED
That gives an error

Code: Select all

Parse error: syntax error, unexpected token "{" in /var/www/vhosts/amusementspaleis.online/httpdocs/ext/tatiana5/popuppm/event/listener.php on line 128
phpBB NL Extension translations, also on request.
--> Click Here: Myarea51secrets.com <--
User avatar
Татьяна5
Registered User
Posts: 189
Joined: Wed Feb 13, 2013 5:30 pm
Name: Tatiana

Re: [3.2][3.3][BETA] Popup PM

Post by Татьяна5 »

Code: Select all

if (is_array($row) && !empty($row['msg_id']))
User avatar
SpIdErPiGgY
Registered User
Posts: 189
Joined: Sun May 02, 2021 2:11 pm
Location: Erpe-Mere, Aalst, BE
Name: Andy Dm
Contact:

Re: [3.2][3.3][BETA] Popup PM

Post by SpIdErPiGgY »

Татьяна5 wrote: Wed May 05, 2021 5:50 pm

Code: Select all

if (is_array($row) && !empty($row['msg_id']))
That worked, thank you both :D
phpBB NL Extension translations, also on request.
--> Click Here: Myarea51secrets.com <--
User avatar
3Di
I've Been Banned!
Posts: 17538
Joined: Mon Apr 04, 2005 11:09 pm
Location: I'm with Ukraine 🇺🇦
Name: Marco
Contact:

Re: [3.2][3.3][BETA] Popup PM

Post by 3Di »

Татьяна5 wrote: Wed May 05, 2021 5:50 pm

Code: Select all

if (is_array($row) && !empty($row['msg_id']))
;) Writing on the fly.
🆓 Free support for our extensions also provided here: phpBB Studio
🚀 Looking for a specific feature or alternative option? We will rock you!
Please PM me only to request paid works. Thx. Buy me a coffee -> Image
My development's activity º PhpStorm's proud user º Extensions, Scripts, MOD porting, Update/Upgrades
User avatar
thecaretaker1
Registered User
Posts: 127
Joined: Tue Dec 30, 2014 8:38 pm

Re: [3.2][3.3][BETA] Popup PM

Post by thecaretaker1 »

thecaretaker1 wrote: Sat May 01, 2021 2:00 pm I've had a few complaints that folk are not getting the usual email notification sent when they get a PM. I don't see how that can be due to the extension, but thought I'd ask. I'm getting emails OK, but I am admin.
I finally got to the bottom of this. The server host had added an internal email scanner which was preventing lots of emails getting sent. I have reconfigured the email now which hopefully will bypass the internal scanner.

I was getting a lot of error messages in the forum log which I couldn't work out. But checking my default server email, I found 43 unsent email notifications from the server email scanner.

Posting this just for info. As suspected, your extension had nothing to do with the problem. My host must have added this over zealous email scanner at the same time I added your extension. Thanks for your patience.

This is just one item from the forum error log. All sorted now.
This is just one item from the forum error log. All sorted now.
Screenshot 2021-05-26 093909.png (9.92 KiB) Viewed 3005 times
User avatar
thecaretaker1
Registered User
Posts: 127
Joined: Tue Dec 30, 2014 8:38 pm

Re: [3.2][3.3][BETA] Popup PM

Post by thecaretaker1 »

Sorry, clicked on wrong button :lol:
Post Reply

Return to “Extensions in Development”