Delite Studio
Forum Replies Created
-
Forum: Plugins
In reply to: [WP GPX Maps] https:// instead https:// in some URLsHello,
no one is interested? I can send you the modified version (or push the fix to the Git repository).
Hope it helps.
Forum: Plugins
In reply to: [Push Notifications for WordPress (Lite)] New Token Registration IssueYou can use CURL to send POST commands. As an example:
$ curl https://mysitename.com/pnfw/register/ --data "os=Android&token=test"
Hope it helps.
Forum: Plugins
In reply to: [Push Notifications for WordPress (Lite)] New Token Registration IssuePlease read carefully the documentation.
You MUST use a POST request, not a GET request.
Forum: Plugins
In reply to: [Push Notifications for WordPress (Lite)] New Token Registration IssueEverything you’ll need is in the documentation page, with detailed format for every API.
Take a look at Chapter 4.1 Register API, you’ll find URL structure, parameters, sample HTTP requests and responses.
Everything you’ll need is in the documentation page, with detailed format for every API.
Forum: Plugins
In reply to: [Push Notifications for WordPress (Lite)] New Token Registration IssueHello,
if you look through the FAQs you’ll find:
When I call an API the server returns 401 Invalid HTTP method. What should I do?
As outlined in the documentation some APIs must be called using the POST HTTP method (e.g. the Register API) and other using the GET HTTP method (e.g. the Posts API list). More info here.
If you are sure you have used the correct HTTP method be sure to check the settings of your web server. In particular, some users have reported that nginx has different URL mapping rules than Apache (see above).Hello,
you can find detailed documentation here.
I suggest you to take a look at this project to see a working example.
Regards
Forum: Plugins
In reply to: [Push Notifications for WordPress (Lite)] Oauth QuestionsHello,
our implementation strictly follows OAuth 1 specifications, you can find more about it on official documentation.
Basically the need to implement things this way is to minimise incompatibility with other libraries.
Hope it helps.
Please take a look at this project and how they have implemented the connection to our plugin using Cordova.
Forum: Plugins
In reply to: [Push Notifications for WordPress (Lite)] Issue with Php versionAs written in the documentation, Push Notifications for WordPress requires at least PHP 5.3. If you use it with older versions, it does not work properly. Changing the check unfortunately is not a solution. We therefore recommend you to upgrade the PHP version you are using. Hope it helps!
Forum: Plugins
In reply to: [Push Notifications for WordPress (Lite)] Issue with Php versionHello,
we use this PHP code:
const MIN_PHP_REQUIRED = '5.3.0'; if (version_compare(PHP_VERSION, self::MIN_PHP_REQUIRED, '<')) { // Show user to upgrade their PHP version }
you can find more info here on the official documentation of PHP.
As it’s a standard PHP function we can exclude it’s a bug, maybe there’s something wrong on your server configuration.
Try this plugin to display the PHP version.
Hello, GCM has been deprecated, you must follow this guide to correctly configure the FCM project.
Salve,
ci contatti al supporto inserendo il numero di ordine della libreria, grazie.Salve,
le consigliamo di contattarci al forum di supporto per la versione premium a questo indirizzo.Hi,
1. Spontaneous blank/empty push notifications may be the result of notifications sent with the Firebase console or bad data handling on application side. Please note that our plugin by default uses Data message payload and not Notification message payload (you can change them from Firebase section in Android tab of settings).
2. With the full version of Push Notification for WordPress there are hooks that can help you to fine tune your notifications.