• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

WPNotif: WordPress SMS & WhatsApp Notifications

WPNotif: WordPress SMS & WhatsApp Notifications v2.9.4.1

No permission to download
I need help..
Screenshot_82.jpg
Response: Error
When I click install additional gateway it show: Error while verifying your addon license.
 
I need help..
Screenshot_82.jpg
Response: Error
When I click install additional gateway it show: Error while verifying your addon license.
yes u need it , i mean.
I modified this from the inside before installing the plugin, I think this method is easier. You can see the api doc from wasender and implement it into the WPNotif plugin
 
  • Like
Reactions: mak14
yes u need it , i mean.
I modified this from the inside before installing the plugin, I think this method is easier. You can see the api doc from wasender and implement it into the WPNotif plugin
how you implement it in wpnotif can you please your file? need more detail. Thanks
 
I have done it.
To work with Wasender Gateway follow.
1. Edit the wpnotif/gateways/fortytwo.php
2. Clean the code and paste the below code

<?php
namespace SMSGateway;
class FortyTwo {
// docs at: https://www.fortytwo.com/developer-portal/amp/

public static function sendSMS($gateway_fields, $mobile, $message, $test_call) {
$url = 'wasender_url';
$authKey = $gateway_fields['authorization_token'];
$appKey = $gateway_fields['sender'];
$data = [
'appkey' => $appKey,
'authkey' => $authKey,
'to' => $mobile,
'message' => $message
];

$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);

$response = curl_exec($ch);
curl_close($ch);

return $response;
}

}

3. Replace $url = with your wasender URL (e.g https://ydomain/api/create-message)
4. Save it and goto plugin setup and select Fortytwo in gateway
5.Authorization Token ( add Wasender authkey )
6. Sender (Add Wasender appkey)
7. Enjoy
 

Attachments

  • img.PNG
    img.PNG
    51.8 KB · Views: 19
I have done it.
To work with Wasender Gateway follow.
1. Edit the wpnotif/gateways/fortytwo.php
2. Clean the code and paste the below code

<?php
namespace SMSGateway;
class FortyTwo {
// docs at: https://www.fortytwo.com/developer-portal/amp/

public static function sendSMS($gateway_fields, $mobile, $message, $test_call) {
$url = 'wasender_url';
$authKey = $gateway_fields['authorization_token'];
$appKey = $gateway_fields['sender'];
$data = [
'appkey' => $appKey,
'authkey' => $authKey,
'to' => $mobile,
'message' => $message
];

$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);

$response = curl_exec($ch);
curl_close($ch);

return $response;
}

}

3. Replace $url = with your wasender URL (e.g https://ydomain/api/create-message)
4. Save it and goto plugin setup and select Fortytwo in gateway
5.Authorization Token ( add Wasender authkey )
6. Sender (Add Wasender appkey)
7. Enjoy

It's still working fine until now?
It's stable an reliable?
 

Forum statistics

Threads
79,480
Messages
1,143,399
Members
248,909
Latest member
nond
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock