Perfecty
Forum Replies Created
-
Forum: Plugins
In reply to: [Perfecty Push Notifications] Customize Push NotificationsI think that is part of the Android implementation and as far as I know we cannot adjust it from the plugin. We might need further investigation to determine if Android allows to change it, if you can please confirm please let us know which parameter should be adjusted. Thank you!
Forum: Plugins
In reply to: [Perfecty Push Notifications] Customize Push NotificationsWhat do you mean by ‘set this site’? Do you have a screenshot maybe?
Forum: Plugins
In reply to: [Perfecty Push Notifications] Not getting push notices anymoreHi, you can turn on the Server logging and view what was the Push Service’s response. Typically, the subscription is expired by the Browser itself and needs a new subscription. In theory the JS SDK should re-subscribe again when this happens. Please read and let us know if you find more information: https://docs.perfecty.org/wp/troubleshooting/
Forum: Plugins
In reply to: [Perfecty Push Notifications] Not workingI’m not sure what do you mean by larger sizes. Could you please elaborate?
Forum: Plugins
In reply to: [Perfecty Push Notifications] Not workingI’m not sure what do you mean by larger sizes. Could you please elaborate?
Forum: Plugins
In reply to: [Perfecty Push Notifications] Suggestion – feature request – issueThe only way in which you could “lose” your users is the scenario you reported here and the appropriate solution corresponds to the points 1, 2 and/or 3.
What you want to do is already covered by the DB replication feature available in almost any modern DB Engine, including MySQL. In this case, you setup a DB replica where you have a master/slave DB that are in sync almost instantly. You might want to define specific points of backup, but considering that the plugin will not remove the users instantly once points 1, 2 and 3 are addressed, then it should be sufficient. Have in mind that even if apparently you “lose” some users, it’s not likely the case. When they approved to receive Notification, and whenever they visit your website, our JS SDK will automatically check their user subscription and re-subscribe in case it’s not found, so those users will be populated automatically in the DB.
- This reply was modified 4 years, 1 month ago by Perfecty.
Forum: Plugins
In reply to: [Perfecty Push Notifications] Suggestion – feature request – issueHi,
Thanks a lot for your suggestions and we will have them into account because as you pointed out the cost is big.
1. Can you please remove feature where users are deleted from database, because VAPID key is wrong? This is one-(bad)-step suicide.
This is a bit tricky because the error is returned by the Push Services and the API response might not be the same for the different browsers. However we will investigate it: https://github.com/perfectyorg/perfecty-push-wp/issues/162
2. Plus if you could add checkbox to protect VAPID fields, so people can be protected from accidentally adding random keystroke in that garbled mess, because there’s no way to know if you pressed a key or not, unless you seriously pay attention at that, or when you figure your userbase is empty.
Absolutely! https://github.com/perfectyorg/perfecty-push-wp/issues/163
3. Also some error message ‘YOUR VAPID KEY IS INVALID, WOULD YOU LIKE TO CONTINUE’?
Or any similar protection step?Good idea: https://github.com/perfectyorg/perfecty-push-wp/issues/164
4. Adding userbase backup? Auto-exporting in CSV, and one-click import? Only option to add users to that CSV, not being able to delete them for any reason? Easy userbase restore? Something along those lines?
Well, database backups should not be handled by the plugin directly but rather by the user through a different plugin/mechanism specialised on doing that.
Forum: Plugins
In reply to: [Perfecty Push Notifications] How can I delay its implementation?The feature to delay the pop up you can follow it here: https://github.com/perfectyorg/perfecty-push-wp/issues/96
In the meantime you can use the “Display after this number of visits” option in Settings
Forum: Plugins
In reply to: [Perfecty Push Notifications] Not workingHi, please follow this guide and give us more information about the failure messages: https://docs.perfecty.org/wp/troubleshooting/
Hi, you can follow this doc page: https://docs.perfecty.org/wp/performance-improvements/ or do you need help with the confirmation notification? The support ticket is a bit confusing, sorry.
Forum: Plugins
In reply to: [Perfecty Push Notifications] Not working please help (currently user 2800)Any news from your side? I’m closing the ticket as we got no response.
Forum: Plugins
In reply to: [Perfecty Push Notifications] IP Adress of subscribersThen maybe you can disable the
Enable and collect data from usersoption. We only use it to record the IP Address.Forum: Plugins
In reply to: [Perfecty Push Notifications] Disable REST APIHi, the current rest routes used by our plugin are defined in https://github.com/perfectyorg/perfecty-push-wp/blob/master/public/class-perfecty-push-public.php#L90-L123
However they will change in 1.7.0, so please have the upcoming change in mind:
// JS SDK friendly routes register_rest_route( 'perfecty-push', '/v1/webpush/(?P<site_id>[a-zA-Z0-9-]+)/subscribers', array( 'methods' => array( 'POST' ), 'callback' => array( $users, 'register' ), 'permission_callback' => '__return_true', 'args' => array( 'site_id' => array() ), ) ); register_rest_route( 'perfecty-push', '/v1/webpush/(?P<site_id>[a-zA-Z0-9-]+)/subscribers/(?P<id>[a-zA-Z0-9-]+)/unregister', array( 'methods' => array( 'POST' ), 'callback' => array( $users, 'unregister' ), 'permission_callback' => '__return_true', 'args' => array( 'site_id' => array(), 'subscriber_id' => array(), ), ) ); register_rest_route( 'perfecty-push', '/v1/webpush/(?P<site_id>[a-zA-Z0-9-]+)/subscribers/(?P<id>[a-zA-Z0-9-]+)', array( 'methods' => array( 'GET' ), 'callback' => array( $users, 'get_user' ), 'permission_callback' => '__return_true', 'args' => array( 'site_id' => array(), 'subscriber_id' => array(), ), ) );Forum: Plugins
In reply to: [Perfecty Push Notifications] Scheduled postPerfect is just our plugin’s name prefix XD
No, we don’t want to make complex what should be simple, so we need to be completely sure with any new option we add in the Post’s editing section. Should there be consensus with the community, then we can add it of course.
> Also would be absolutly necesary for high-traffic sites to use a diferent machine to send the push notifications than the machine were other services are running like webserver, caching, database, etc…..
Yes, we understand and for this we need a completely different approach, but we are working on this right now.
Forum: Plugins
In reply to: [Perfecty Push Notifications] Notification looks wrong on mobileHi, that depends on your website theme and CSS. To change it you can extend the CSS styles. Please read: https://docs.perfecty.org/wp/customize/