Coder Social home page Coder Social logo

Comments (7)

thinkoverit avatar thinkoverit commented on July 3, 2024

Please update the module files. acl updated as per latest updates..

from sms-magento2.

matinict avatar matinict commented on July 3, 2024

Update Module also Show Error in admin Panel:
1 exception(s):
Exception #0 (LogicException): Could not create an acl object: Invalid Document
Element 'resource': The attribute 'title' is required but missing.
Line: 12

Exception #0 (LogicException): Could not create an acl object: Invalid Document
Element 'resource': The attribute 'title' is required but missing.
Line: 12

from sms-magento2.

thinkoverit avatar thinkoverit commented on July 3, 2024

What version of Magento are you working on?
With Magneto version 2.1.3 module is working fine. we couldn't reproduce error ..

from sms-magento2.

matinict avatar matinict commented on July 3, 2024

my magento version magento 2.2 ,

I need to upgrade magento 1.x to 2x my script https://github.com/SSLWireless/MagentoSMS u can help?

from sms-magento2.

thinkoverit avatar thinkoverit commented on July 3, 2024

Works perfectly with 2.2 Magento. SMS module does get installed and all menus are visible too. Please try disabling 3rd party modules to locate the module giving issues.

Finally you just need to update Default Module helper file function "sendSms" to use SSLWireless API to send SMS.

from sms-magento2.

matinict avatar matinict commented on July 3, 2024

Module installed successfully in my xampp localhost, admin interface also working properly,
But I add my api UserID & Pass also change API url From Data

MY API RAW CODE BELOW:[Hope u be help me ]

$user ="testuser"; 
$pass = "1234"; 
$sid = "TEST"

$msisdn2='01747544555';
$msisdn='01717676441';
$sms ='Congrats test1! You have successfully made order ****.Test sms  Thank You. @DICPAL';		


$url="http://sms.sslwireless.com/pushapi/dynamic/server.php";
$unique_id_1=uniqid();
$unique_id_2=uniqid();

$param="user=$user&pass=$pass&sid=$sid&";	
$sms="sms[0][0]=$msisdn&sms[0][1]=".urlencode($sms)."&sms[0][2]=".$unique_id_1."&sms[1][0]=$msisdn2&sms[1][1]=".urlencode($sms)."&sms[1][2]=".$unique_id_2."";

$data=$param.$sms.$sid;	
$crl = curl_init();
curl_setopt($crl,CURLOPT_SSL_VERIFYPEER,FALSE);
curl_setopt($crl,CURLOPT_SSL_VERIFYHOST,2);
curl_setopt($crl,CURLOPT_URL,$url); 
curl_setopt($crl,CURLOPT_HEADER,0);
curl_setopt($crl,CURLOPT_RETURNTRANSFER,1);
curl_setopt($crl,CURLOPT_POST,1);
curl_setopt($crl,CURLOPT_POSTFIELDS,$data); 
$response = curl_exec($crl);
curl_close($crl);

echo $response;

from sms-magento2.

thinkoverit avatar thinkoverit commented on July 3, 2024

Good to know. You need to make sure SSLWireless API is called with right parameters ..

from sms-magento2.

Related Issues (1)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.