Smpp library in php

Hello friends,
If you have a smpp account you can simple send sms / unicode to any number using php. It is very simple .
Sample code is:
require_once('smppclass.php');
$smpphost = "203.199.142.41"; // your host address
$smppport = 2345;
$systemid = "idsfds"; // Your system id
$password = "es223"; // Your smpp account password
$system_type = "Rdsd "; // Your userid
$from = "919846341106"; // From number
$smpp = new SMPPClass();
$smpp->SetSender($from);
/* bind to smpp server */
$smpp->Start($smpphost, $smppport, $systemid, $password, $system_type);
/* send enquire link PDU to smpp server */
$smpp->TestLink();
/* send single message; large messages are automatically split */
$smpp->Send("971532663061", "This is a test message. Give me a missed call if you get this. sajith");
/* send unicode message */
//$smpp->Send("31648072766", "صباحالخير", true);
/* send message to multiple recipients at once */
//$smpp->SendMulti("31648072766,31651931985", "This is my PHP message");
/* unbind from smpp server */
$smpp->End();
//Click read more for smppclass.php library
More...
//file smppclass.php
define(CM_BIND_TRANSMITTER, 0x00000002);
define(CM_SUBMIT_SM, 0x00000004);
define(CM_SUBMIT_MULTI, 0x00000021);
define(CM_UNBIND, 0x00000006);
define(CM_ENQUIRELINK, 0x00000015);
class SMPPClass {
// public members:
/*
Constructor.
Parameters:
none.
Example:
$smpp = new SMPPClass();
*/
function SMPPClass()
{
/* seed random generator */
list($usec, $sec) = explode(' ', microtime());
$seed = (float) $sec + ((float) $usec * 100000);
srand($seed);
/* initialize member variables */
$this->_debug = true; /* set this to false if you want to suppress debug output. */
$this->_socket = NULL;
$this->_command_status = 0;
$this->_sequence_number = 1;
$this->_source_address = "";
$this->_message_sequence = rand(1,255);
}
/*
For SMS gateways that support sender-ID branding, the method
can be used to set the originating address.
Parameters:
$from : Originating address
Example:
$smpp->SetSender("31495595392");
*/
function SetSender($from)
{
if (strlen($from) > 20) {
$this->debug("Error: sender id too long.\n");
return;
}
$this->_source_address = $from;
}
/*
This method initiates an SMPP session.
It is to be called BEFORE using the Send() method.
Parameters:
$host : SMPP ip to connect to.
$port : port # to connect to.
$username : SMPP system ID
$password : SMPP passord.
$system_type : SMPP System type
Returns:
true if successful, otherwise false
Example:
$smpp->Start("smpp.chimit.nl", 2345, "chimit", "my_password", "client01");
*/
function Start($host, $port, $username, $password, $system_type)
{
/*
$testarr = stream_get_transports();
$have_tcp = false;
reset($testarr);
while (list(, $transport) = each($testarr)) {
if ($transport == "tcpp") {
$have_tcp = true;
}
}
if (!$have_tcp) {
$this->debug("No TCP support in this version of PHP.\n");
return false;
}
*/
$this->_socket = fsockopen($host, $port, $errno, $errstr, 20);
// todo: sanity check on input parameters
if (!$this->_socket) {
$this->debug("Error opening SMPP session.\n");
$this->debug("Error was: $errstr.\n");
return;
}
socket_set_timeout($this->_socket, 1200);
$status = $this->SendBindTransmitter($username, $password, $system_type);
if ($status != 0) {
$this->debug("Error binding to SMPP server. Invalid credentials?\n");
}
return ($status == 0);
}
/*
This method sends out one SMS message.
Parameters:
$to : destination address.
$text : text of message to send.
$unicode: Optional. Indicates if input string is html encoded unicode.
Returns:
true if messages sent successfull, otherwise false.
Example:
$smpp->Send("31649072766", "This is an SMPP Test message.");
$smpp->Send("31648072766", "صباحالخير", true);
*/
function Send($to, $text, $unicode = false)
{
if (strlen($to) > 20) {
$this->debug("to-address too long.\n");
return;
}
if (!$this->_socket) {
$this->debug("Not connected, while trying to send SUBMIT_SM.\n");
// return;
}
$service_type = "";
//default source TON and NPI for international sender
$source_addr_ton = 1;
$source_addr_npi = 1;
$source_addr = $this->_source_address;
if (preg_match('/\D/', $source_addr)) //alphanumeric sender
{
$source_addr_ton = 5;
$source_addr_npi = 0;
}
elseif (strlen($source_addr) < 11) //national or shortcode sender
{
$source_addr_ton = 2;
$source_addr_npi = 1;
}
$dest_addr_ton = 1;
$dest_addr_npi = 1;
$destination_addr = $to;
$esm_class = 3;
$protocol_id = 0;
$priority_flag = 0;
$schedule_delivery_time = "";
$validity_period = "";
$registered_delivery_flag = 0;
$replace_if_present_flag = 0;
$data_coding = 241;
$sm_default_msg_id = 0;
if ($unicode) {
$text = mb_convert_encoding($text, "UCS-2BE", "HTML-ENTITIES"); /* UCS-2BE */
$data_coding = 8; /* UCS2 */
$multi = $this->split_message_unicode($text);
}
else {
$multi = $this->split_message($text);
}
$multiple = (count($multi) > 1);
if ($multiple) {
$esm_class += 0x00000040;
}
$result = true;
reset($multi);
while (list(, $part) = each($multi)) {
$short_message = $part;
$sm_length = strlen($short_message);
$status = $this->SendSubmitSM($service_type, $source_addr_ton, $source_addr_npi, $source_addr, $dest_addr_ton, $dest_addr_npi, $destination_addr, $esm_class, $protocol_id, $priority_flag, $schedule_delivery_time, $validity_period, $registered_delivery_flag, $replace_if_present_flag, $data_coding, $sm_default_msg_id, $sm_length, $short_message);
if ($status != 0) {
$this->debug("SMPP server returned error $status.\n");
$result = false;
}
}
return $result;
}
/*
This method ends a SMPP session.
Parameters:
none
Returns:
true if successful, otherwise false
Example: $smpp->End();
*/
function End()
{
if (!$this->_socket) {
// not connected
return;
}
$status = $this->SendUnbind();
if ($status != 0) {
$this->debug("SMPP Server returned error $status.\n");
}
fclose($this->_socket);
$this->_socket = NULL;
return ($status == 0);
}
/*
This method sends an enquire_link PDU to the server and waits for a response.
Parameters:
none
Returns:
true if successfull, otherwise false.
Example: $smpp->TestLink()
*/
function TestLink()
{
$pdu = "";
$status = $this->SendPDU(CM_ENQUIRELINK, $pdu);
return ($status == 0);
}
/*
This method sends a single message to a comma separated list of phone numbers.
There is no limit to the number of messages to send.
Parameters:
$tolist : comma seperated list of phone numbers
$text : text of message to send
$unicode: Optional. Indicates if input string is html encoded unicode string.
Returns:
true if messages received by smpp server, otherwise false.
Example:
$smpp->SendMulti("31777110204,31649072766,...,...", "This is an SMPP Test message.");
*/
function SendMulti($tolist, $text, $unicode = false)
{
if (!$this->_socket) {
$this->debug("Not connected, while trying to send SUBMIT_MULTI.\n");
// return;
}
$service_type = "";
$source_addr = $this->_source_address;
//default source TON and NPI for international sender
$source_addr_ton = 1;
$source_addr_npi = 1;
$source_addr = $this->_source_address;
if (preg_match('/\D/', $source_addr)) //alphanumeric sender
{
$source_addr_ton = 5;
$source_addr_npi = 0;
}
elseif (strlen($source_addr) < 11) //national or shortcode sender
{
$source_addr_ton = 2;
$source_addr_npi = 1;
}
$dest_addr_ton = 1;
$dest_addr_npi = 1;
$destination_arr = explode(",", $tolist);
$esm_class = 3;
$protocol_id = 0;
$priority_flag = 0;
$schedule_delivery_time = "";
$validity_period = "";
$registered_delivery_flag = 0;
$replace_if_present_flag = 0;
$data_coding = 241;
$sm_default_msg_id = 0;
if ($unicode) {
$text = mb_convert_encoding($text, "UCS-2BE", "HTML-ENTITIES");
$data_coding = 8; /* UCS2 */
$multi = $this->split_message_unicode($text);
}
else {
$multi = $this->split_message($text);
}
$multiple = (count($multi) > 1);
if ($multiple) {
$esm_class += 0x00000040;
}
$result = true;
reset($multi);
while (list(, $part) = each($multi)) {
$short_message = $part;
$sm_length = strlen($short_message);
$status = $this->SendSubmitMulti($service_type, $source_addr_ton, $source_addr_npi, $source_addr, $dest_addr_ton, $dest_addr_npi, $destination_arr, $esm_class, $protocol_id, $priority_flag, $schedule_delivery_time, $validity_period, $registered_delivery_flag, $replace_if_present_flag, $data_coding, $sm_default_msg_id, $sm_length, $short_message);
if ($status != 0) {
$this->debug("SMPP server returned error $status.\n");
$result = false;
}
}
return $result;
}
// private members (not documented):
function ExpectPDU($our_sequence_number)
{
do {
$this->debug("Trying to read PDU.\n");
if (feof($this->_socket)) {
$this->debug("Socket was closed.!!\n");
}
$elength = fread($this->_socket, 4);
if (empty($elength)) {
$this->debug("Connection lost.\n");
return;
}
extract(unpack("Nlength", $elength));
$this->debug("Reading PDU : $length bytes.\n");
$stream = fread($this->_socket, $length - 4);
$this->debug("Stream len : " . strlen($stream) . "\n");
extract(unpack("Ncommand_id/Ncommand_status/Nsequence_number", $stream));
$command_id &= 0x0fffffff;
$this->debug("Command id : $command_id.\n");
$this->debug("Command status : $command_status.\n");
$this->debug("sequence_number : $sequence_number.\n");
$pdu = substr($stream, 12);
switch ($command_id) {
case CM_BIND_TRANSMITTER:
$this->debug("Got CM_BIND_TRANSMITTER_RESP.\n");
$spec = "asystem_id";
extract($this->unpack2($spec, $pdu));
$this->debug("system id : $system_id.\n");
break;
case CM_UNBIND:
$this->debug("Got CM_UNBIND_RESP.\n");
break;
case CM_SUBMIT_SM:
$this->debug("Got CM_SUBMIT_SM_RESP.\n");
if ($command_status == 0) {
$spec = "amessage_id";
extract($this->unpack2($spec, $pdu));
$this->debug("message id : $message_id.\n");
}
break;
case CM_SUBMIT_MULTI:
$this->debug("Got CM_SUBMIT_MULTI_RESP.\n");
$spec = "amessage_id/cno_unsuccess/";
extract($this->unpack2($spec, $pdu));
$this->debug("message id : $message_id.\n");
$this->debug("no_unsuccess : $no_unsuccess.\n");
break;
case CM_ENQUIRELINK:
$this->debug("GOT CM_ENQUIRELINK_RESP.\n");
break;
default:
$this->debug("Got unknown SMPP pdu.\n");
break;
}
$this->debug("\nReceived PDU: ");
for ($i = 0; $i < strlen($stream); $i++) {
if (ord($stream[$i]) < 32) $this->debug("(" . ord($stream[$i]) . ")"); else $this->debug($stream[$i]);
}
$this->debug("\n");
} while ($sequence_number != $our_sequence_number);
return $command_status;
}
function SendPDU($command_id, $pdu)
{
$length = strlen($pdu) + 16;
$header = pack("NNNN", $length, $command_id, $this->_command_status, $this->_sequence_number);
$this->debug("Sending PDU, len == $length\n");
$this->debug("Sending PDU, header-len == " . strlen($header) . "\n");
$this->debug("Sending PDU, command_id == " . $command_id . "\n");
fwrite($this->_socket, $header . $pdu, $length);
$status = $this->ExpectPDU($this->_sequence_number);
$this->_sequence_number = $this->_sequence_number + 1;
return $status;
}
function SendBindTransmitter($system_id, $smpppassword, $system_type)
{
$system_id = $system_id . chr(0);
$system_id_len = strlen($system_id);
$smpppassword = $smpppassword . chr(0);
$smpppassword_len = strlen($smpppassword);
$system_type = $system_type . chr(0);
$system_type_len = strlen($system_type);
$pdu = pack("a{$system_id_len}a{$smpppassword_len}a{$system_type_len}CCCa1", $system_id, $smpppassword, $system_type, 0x33, 0, 0, chr(0));
$this->debug("Bind Transmitter PDU: ");
for ($i = 0; $i < strlen($pdu); $i++) {
$this->debug(ord($pdu[$i]) . " ");
}
$this->debug("\n");
$status = $this->SendPDU(CM_BIND_TRANSMITTER, $pdu);
return $status;
}
function SendUnbind()
{
$pdu = "";
$status = $this->SendPDU(CM_UNBIND, $pdu);
return $status;
}
function SendSubmitSM($service_type, $source_addr_ton, $source_addr_npi, $source_addr, $dest_addr_ton, $dest_addr_npi, $destination_addr, $esm_class, $protocol_id, $priority_flag, $schedule_delivery_time, $validity_period, $registered_delivery_flag, $replace_if_present_flag, $data_coding, $sm_default_msg_id, $sm_length, $short_message)
{
$service_type = $service_type . chr(0);
$service_type_len = strlen($service_type);
$source_addr = $source_addr . chr(0);
$source_addr_len = strlen($source_addr);
$destination_addr = $destination_addr . chr(0);
$destination_addr_len = strlen($destination_addr);
$schedule_delivery_time = $schedule_delivery_time . chr(0);
$schedule_delivery_time_len = strlen($schedule_delivery_time);
$validity_period = $validity_period . chr(0);
$validity_period_len = strlen($validity_period);
// $short_message = $short_message . chr(0);
$message_len = $sm_length;
$spec = "a{$service_type_len}cca{$source_addr_len}cca{$destination_addr_len}ccca{$schedule_delivery_time_len}a{$validity_period_len}ccccca{$message_len}";
$this->debug("PDU spec: $spec.\n");
$pdu = pack($spec,
$service_type,
$source_addr_ton,
$source_addr_npi,
$source_addr,
$dest_addr_ton,
$dest_addr_npi,
$destination_addr,
$esm_class,
$protocol_id,
$priority_flag,
$schedule_delivery_time,
$validity_period,
$registered_delivery_flag,
$replace_if_present_flag,
$data_coding,
$sm_default_msg_id,
$sm_length,
$short_message);
$status = $this->SendPDU(CM_SUBMIT_SM, $pdu);
return $status;
}
function SendSubmitMulti($service_type, $source_addr_ton, $source_addr_npi, $source_addr, $dest_addr_ton, $dest_addr_npi, $destination_arr, $esm_class, $protocol_id, $priority_flag, $schedule_delivery_time, $validity_period, $registered_delivery_flag, $replace_if_present_flag, $data_coding, $sm_default_msg_id, $sm_length, $short_message)
{
$service_type = $service_type . chr(0);
$service_type_len = strlen($service_type);
$source_addr = $source_addr . chr(0);
$source_addr_len = strlen($source_addr);
$number_destinations = count($destination_arr);
$dest_flag = 1;
$spec = "a{$service_type_len}cca{$source_addr_len}c";
$pdu = pack($spec,
$service_type,
$source_addr_ton,
$source_addr_npi,
$source_addr,
$number_destinations
);
$dest_flag = 1;
reset($destination_arr);
while (list(, $destination_addr) = each($destination_arr)) {
$destination_addr .= chr(0);
$dest_len = strlen($destination_addr);
$spec = "ccca{$dest_len}";
$pdu .= pack($spec, $dest_flag, $dest_addr_ton, $dest_addr_npi, $destination_addr);
}
$schedule_delivery_time = $schedule_delivery_time . chr(0);
$schedule_delivery_time_len = strlen($schedule_delivery_time);
$validity_period = $validity_period . chr(0);
$validity_period_len = strlen($validity_period);
$message_len = $sm_length;
$spec = "ccca{$schedule_delivery_time_len}a{$validity_period_len}ccccca{$message_len}";
$pdu .= pack($spec,
$esm_class,
$protocol_id,
$priority_flag,
$schedule_delivery_time,
$validity_period,
$registered_delivery_flag,
$replace_if_present_flag,
$data_coding,
$sm_default_msg_id,
$sm_length,
$short_message);
$this->debug("\nMulti PDU: ");
for ($i = 0; $i < strlen($pdu); $i++) {
if (ord($pdu[$i]) < 32) $this->debug("."); else $this->debug($pdu[$i]);
}
$this->debug("\n");
$status = $this->SendPDU(CM_SUBMIT_MULTI, $pdu);
return $status;
}
function split_message($text)
{
$this->debug("In split_message.\n");
$max_len = 153;
$res = array();
if (strlen($text) <= 160) {
$this->debug("One message: " . strlen($text) . "\n");
$res[] = $text;
return $res;
}
$pos = 0;
$msg_sequence = $this->_message_sequence++;
$num_messages = ceil(strlen($text) / $max_len);
$part_no = 1;
while ($pos < strlen($text)) {
$ttext = substr($text, $pos, $max_len);
$pos += strlen($ttext);
$udh = pack("cccccc", 5, 0, 3, $msg_sequence, $num_messages, $part_no);
$part_no++;
$res[] = $udh . $ttext;
$this->debug("Split: UDH = ");
for ($i = 0; $i < strlen($udh); $i++) {
$this->debug(ord($udh[$i]) . " ");
}
$this->debug("\n");
$this->debug("Split: $ttext.\n");
}
return $res;
}
function split_message_unicode($text)
{
$this->debug("In split_message.\n");
$max_len = 134;
$res = array();
if (mb_strlen($text) <= 140) {
$this->debug("One message: " . mb_strlen($text) . "\n");
$res[] = $text;
return $res;
}
$pos = 0;
$msg_sequence = $this->_message_sequence++;
$num_messages = ceil(mb_strlen($text) / $max_len);
$part_no = 1;
while ($pos < mb_strlen($text)) {
$ttext = mb_substr($text, $pos, $max_len);
$pos += mb_strlen($ttext);
$udh = pack("cccccc", 5, 0, 3, $msg_sequence, $num_messages, $part_no);
$part_no++;
$res[] = $udh . $ttext;
$this->debug("Split: UDH = ");
for ($i = 0; $i < strlen($udh); $i++) {
$this->debug(ord($udh[$i]) . " ");
}
$this->debug("\n");
$this->debug("Split: $ttext.\n");
}
return $res;
}
function unpack2($spec, $data)
{
$res = array();
$specs = explode("/", $spec);
$pos = 0;
reset($specs);
while (list(, $sp) = each($specs)) {
$subject = substr($data, $pos);
$type = substr($sp, 0, 1);
$var = substr($sp, 1);
switch ($type) {
case "N":
$temp = unpack("Ntemp2", $subject);
$res[$var] = $temp["temp2"];
$pos += 4;
break;
case "c":
$temp = unpack("ctemp2", $subject);
$res[$var] = $temp["temp2"];
$pos += 1;
break;
case "a":
$pos2 = strpos($subject, chr(0)) + 1;
$temp = unpack("a{$pos2}temp2", $subject);
$res[$var] = $temp["temp2"];
$pos += $pos2;
break;
}
}
return $res;
}
function debug($str)
{
if ($this->_debug) {
echo $str;
}
}
};

I am getting error for smpp sms sending . Can u please provide me a solution??
Parse error: parse error, unexpected T_STRING in C:\Program Files\Apache Group\Apache2\htdocs\newsms\smppclass.php on line 19
Hello, Your site is great. Regards, Valintino Guxxi
I like this approach but lately i’ve had to move an application to the Kannel WAP and SMS server. There seems to be little talk about benchmarks on the different PHP approaches to sending SMS.
Am a lazy programmer, do u know of any comprehensive comparison between a daemonised smpp application and a server based approach like Kannel?
Hello,
this class is good but there is a problem when i tried to send more than one part SM, it goes wrong and it returned me the error 8.
do you know how to over come this problem.
Ammar N
I think it`s kinda unfinished
Can you also create function to get message_id from message that was sent
Hello Dean ,
The smpp library given has limited functionalities. Dont have support for dlr and no transiever and hence no need of message id in the library. The ultimate solution is kannel server with sql box.
SMPP server returned error 1
Hi, what happen if i want to send a SMS with characters like… ‘Ñ’ or ‘_’ ‘%’ etc…? i have read that i should encode it to 7-bit but it doesn’t work, anybody can give a solution?
thanks
uhm.. finally i can send multiple messages (> 160 char).
Thanks for the complete smppclass.php.
Yesterday i got smppclass but it can only send message (max 160 char). when i send message more than 160 char, it sends only first 160 char.
when i change with your smppclss, it works…
Thx.
hi
I Have a problem . my script unbind auto befor send sms and i recive error:SMPP server returned error 195
How can i get a smpp account?
thank’s be 4.
How I can get report of after I’m send my sms, Thank’s a lot.
hi i am getting this Error Number when i try to use this
SMPP server returned error 3.
Good script for broadcasting sms…
Hi,
While using the class, I am able to send sms with the sender id … it gets delivered and all but the message is not received only the sender id is received. … no text at all
checked out the code … till pack pdu also the message is intact … but after that I do not know what happens while sending…
any clues …
thanks
hi
used this class .. found i could send sms with sender id … but the text of the sms doesnot get sent to the customer .. not able to understand why..
uptil pack the message is test … but am not sure at pack what is happeni ng .. no text in the sms (received alao)
haw can do with interface this class?
can you tell me the way that i can send SMS .
The SendMulti function is not working!
I am currently using Send function in a for loop for multiple messages.
Hope someone solve my problem.
Thanks in advance!
Regards
Sandesh.
Send multi not works….
I try using send multi, there is a problem :
Fatal error: pack type a: not enough input, need 1, have 0 ….
hi.
it is absolutely fine, but how can i get the Message Id from SMSC ?
SendMulti is really needed. M still confused how to do it. any body will help me for this?
i am using ruby smpp-0.1.2 for sending and receiving sms for smsc but ruby smpp use to get stopped after sometime by itself. Can you plz solve this problem
Hi,
Your code is simply nice. But it’s not working to send multiple messages. I want to send bulk sms. Please help me out.
its works fine for me and pls any one help how i will receive or retrieve the message in the server
Hi Sandesh Magdum,for point of time solution, dont use send function in a loop…since if you think of the app in future that needs to send bulk sms > 50 k sms at one go..will be a problem..so better make sendmulti function work and use it..that cud be better, me too having same issue..so im working on it, if it seems to work ill post the solution here..also there is Pear library for smpp..can download it here http://pear.php.net/package/Net_SMPP/download..am trying that too
Thanks for help. But i have a problum with sending phone no and reciver no.
I am SriLankan user.
$from = “919846341106″; // From number
$smpp->Send(“971532663061″, “XXXXX”);
let me know the sample number for SriLanka like $to = “94757555441″;
is this correct for sri lanka
tthanks u so much for ur usefull content, but could u please send me an interface for smpp client?
Hi,
I have seen some PHP Implementation of SMPP client (ESME) . In commercial, they fails since the SMPP implementation does not support all PDU’s. Ex : submit_multi does not support in almost all SMPP connections. For sending bulk sms only way is to loop through the Sending List. In commercial applications, if we have the smpp account, the connection will be transient in the sense that, the connection will be live for 24 hours. Only then the provider pushes DLR to our application. So actual implementation of SMPP Client requires a lot of methods for handling connection . Threading is a necessary thing for SMPP applications. So before proceeding with PHP, think about its feasibility !!!!
Thanks
i am PHP developer from india
i am trying to send sms from your given code.
it is send sms from my local system but wgen is am sending this code from online server it give the error:
=============================
Warning: fsockopen() [function.fsockopen]: unable to connect to 64.56.75.242:5555 (Connection timed out) in /home/content/v/a/p/vapsoft/html/smppclass.php on line 82
Error opening SMPP session. Error was: Connection timed out. Sending PDU, len == 16 Sending PDU, header-len == 16 Sending PDU, command_id == 21
Warning: fwrite(): supplied argument is not a valid stream resource in /home/content/v/a/p/vapsoft/html/smppclass.php on line 355
Trying to read PDU.
Warning: feof(): supplied argument is not a valid stream resource in /home/content/v/a/p/vapsoft/html/smppclass.php on line 289
Warning: fread(): supplied argument is not a valid stream resource in /home/content/v/a/p/vapsoft/html/smppclass.php on line 292
Connection lost. Not connected, while trying to send SUBMIT_SM. In split_message. One message: 68 PDU spec: a1cca8cca13ccca1a1ccccca68. Sending PDU, len == 120 Sending PDU, header-len == 16 Sending PDU, command_id == 4
Warning: fwrite(): supplied argument is not a valid stream resource in /home/content/v/a/p/vapsoft/html/smppclass.php on line 355
Trying to read PDU.
Warning: feof(): supplied argument is not a valid stream resource in /home/content/v/a/p/vapsoft/html/smppclass.php on line 289
Warning: fread(): supplied argument is not a valid stream resource in /home/content/v/a/p/vapsoft/html/smppclass.php on line 292
Connection lost.
===============================
please help me.
hi all i have the same problem in sending bulk sms
what can we do ? any one solve this problem
??
note : it work will to send for only one number??
I am try and Waiting>>>
The code works fine without modification, even with send_multi.
I wonder could the problems the others are facing be operator dependent?
Hai Sajith,
Hats off to you. Your SMPP bind program works fine.
My hearty congratulationn to you.
Regards,
S. Anandh
Hai Sajith,
Your SMPP Bind request works fine. But If I use Multisend function message content is not delivered only empty message delivered to the recipients. please provide solution.
Regards,
Anandh,Coimbatore
I need your help. This is my Error.
PHP Warning: fsockopen(): unable to connect to 192.168.0.11:5018 (Connection refused) in xxxxxxxx/smppclass.php on line 87
Error opening SMPP session.
Error was: Connection refused.
Sending PDU, len == 16
Sending PDU, header-len == 16
Sending PDU, command_id == 21
PHP Warning: fwrite(): supplied argument is not a valid stream resource in /xxxxxxxxxxx/smppclass2.php on line 359
Trying to read PDU.
PHP Warning: feof(): supplied argument is not a valid stream resource in /xxxxxxxxxxxx/smppclass2.php on line 293
PHP Warning: fread(): supplied argument is not a valid stream resource in /xxxxxxxxxxxx/smppclass2.php on line 296
Connection lost.
Not connected, while trying to send SUBMIT_SM.
In split_message.
One message: 69
PDU spec: a1cca13cca13ccca1a1ccccca69.
Sending PDU, len == 126
Sending PDU, header-len == 16
Sending PDU, command_id == 4
PHP Warning: fwrite(): supplied argument is not a valid stream resource in /xxxxxxxxxx/smppclass.php on line 359
Trying to read PDU.
PHP Warning: feof(): supplied argument is not a valid stream resource in /xxxxxxxxx/smppclass.php on line 293
PHP Warning: fread(): supplied argument is not a valid stream resource in /xxxxxxxxxx/smppclass.php on line 296
Connection lost.
How can i resolved this. thank for your help
I have 2 files :
-transmit.php
-smppclass.php
I am getting below error:
Warning: unpack() [function.unpack]: Type a: not enough input, need 1, have 0 in C:\xampp\htdocs\pushsms\smppclass.php on line 596
Please help. Basically i need to develop a bulk sms sender.
Another error i get is:
system id : . Received PDU: €(0)(0)(0)(0)(0)(0)(3)(0)(0)(0)(1) Error binding to SMPP server. Invalid credentials? Sending PDU, len == 34 Sending PDU, header-len == 16 Sending PDU, command_id == CM_ENQUIRELINK Trying to read PDU. Reading PDU : 16 bytes. Stream len : 12 Command id : 0. Command status : 3. sequence_number : 2. Got CM_BIND_TRANSMITTER_RESP.
What is system_type? What is the difference between system_type and systemID here? Please help.
Hello, I implemented this class, but when you run it I get these errors
Bind Transmitter PDU: 109 111 109 97 114 101 115 0 109 111 109 97 114 101 115 54 55 56 56 0 51 51 49 56 56 55 54 0 51 0 0 0 Sending PDU, len == 48 Sending PDU, header-len == 16 Sending PDU, command_id == 2 Trying to read PDU. Reading PDU : 17 bytes. Stream len : 13 Command id : 2. Command status : 13. sequence_number : 1. Got CM_BIND_TRANSMITTER_RESP. system id : . Received PDU: €(0)(0)(2)(0)(0)(0)(13)(0)(0)(0)(1)(0) Error binding to SMPP server. Invalid credentials? Sending PDU, len == 16 Sending PDU, header-len == 16 Sending PDU, command_id == 21 Trying to read PDU. Connection lost. In split_message. One message: 24 PDU spec: a1cca6cca13ccca1a1ccccca24. Sending PDU, len == 74 Sending PDU, header-len == 16 Sending PDU, command_id == 4 Trying to read PDU. Socket was closed.!! Connection lost. Sending PDU, len == 16 Sending PDU, header-len == 16 Sending PDU, command_id == 6 Trying to read PDU. Socket was closed.!! Connection lost.
The parameters are ok, but they can be?
Sir,
I am getting the following message.
can you give me your suggestion
——————-
Bind Transmitter PDU: 83 90 66 73 76 76 84 82 0 115 122 98 105 108 108 116 114 0 83 90 66 73 76 76 84 82 0 51 0 0 0
PHP Notice: Use of undefined constant CM_BIND_TRANSMITTER – assumed ‘CM_BIND_TRANSMITTER’ in /root/Downloads/smppexample.php on line 431
Sending PDU, len == 47
Sending PDU, header-len == 16
Sending PDU, command_id == CM_BIND_TRANSMITTER
Trying to read PDU.
Reading PDU : 16 bytes.
Stream len : 12
Command id : 0.
Command status : 3.
sequence_number : 0.
PHP Notice: Use of undefined constant CM_BIND_TRANSMITTER – assumed ‘CM_BIND_TRANSMITTER’ in /root/Downloads/smppexample.php on line 364
Got CM_BIND_TRANSMITTER_RESP.
PHP Warning: unpack(): Type a: not enough input, need 1, have 0 in /root/Downloads/smppexample.php on line 620
system id : .
Received PDU: �(0)(0)(0)(0)(0)(0)(3)(0)(0)(0)(0)
Trying to read PDU.
Connection lost.
PHP Notice: Use of undefined constant CM_ENQUIRELINK – assumed ‘CM_ENQUIRELINK’ in /root/Downloads/smppexample.php on line 263
Sending PDU, len == 16
Sending PDU, header-len == 16
Sending PDU, command_id == CM_ENQUIRELINK
PHP Notice: fwrite(): send of 16 bytes failed with errno=32 Broken pipe in /root/Downloads/smppexample.php on line 411
Trying to read PDU.
Socket was closed.!!
Connection lost.
In split_message.
One message: 22
PDU spec: a4cca12cca10ccca1a1ccccca22.
PHP Notice: Use of undefined constant CM_SUBMIT_SM – assumed ‘CM_SUBMIT_SM’ in /root/Downloads/smppexample.php on line 478
Sending PDU, len == 78
Sending PDU, header-len == 16
Sending PDU, command_id == CM_SUBMIT_SM
PHP Notice: fwrite(): send of 78 bytes failed with errno=32 Broken pipe in /root/Downloads/smppexample.php on line 411
Trying to read PDU.
Socket was closed.!!
Connection lost.
PHP Fatal error: Call to undefined function mb_convert_encoding() in /root/Downloads/smppexample.php on line 204
—————-
with regards,
jothirajan
Sir,
I am getting the following message.
can you give me your suggestion
——————-
Bind Transmitter PDU: 83 90 66 73 76 76 84 82 0 115 122 98 105 108 108 116 114 0 83 90 66 73 76 76 84 82 0 51 0 0 0
PHP Notice: Use of undefined constant CM_BIND_TRANSMITTER – assumed ‘CM_BIND_TRANSMITTER’ in /root/Downloads/smppexample.php on line 431
Sending PDU, len == 47
Sending PDU, header-len == 16
Sending PDU, command_id == CM_BIND_TRANSMITTER
Trying to read PDU.
Reading PDU : 16 bytes.
Stream len : 12
Command id : 0.
Command status : 3.
sequence_number : 0.
PHP Notice: Use of undefined constant CM_BIND_TRANSMITTER – assumed ‘CM_BIND_TRANSMITTER’ in /root/Downloads/smppexample.php on line 364
Got CM_BIND_TRANSMITTER_RESP.
PHP Warning: unpack(): Type a: not enough input, need 1, have 0 in /root/Downloads/smppexample.php on line 620
system id : .
Received PDU: �(0)(0)(0)(0)(0)(0)(3)(0)(0)(0)(0)
Trying to read PDU.
Connection lost.
PHP Notice: Use of undefined constant CM_ENQUIRELINK – assumed ‘CM_ENQUIRELINK’ in /root/Downloads/smppexample.php on line 263
Sending PDU, len == 16
Sending PDU, header-len == 16
Sending PDU, command_id == CM_ENQUIRELINK
PHP Notice: fwrite(): send of 16 bytes failed with errno=32 Broken pipe in /root/Downloads/smppexample.php on line 411
Trying to read PDU.
Socket was closed.!!
Connection lost.
In split_message.
One message: 22
PDU spec: a4cca12cca10ccca1a1ccccca22.
PHP Notice: Use of undefined constant CM_SUBMIT_SM – assumed ‘CM_SUBMIT_SM’ in /root/Downloads/smppexample.php on line 478
Sending PDU, len == 78
Sending PDU, header-len == 16
Sending PDU, command_id == CM_SUBMIT_SM
PHP Notice: fwrite(): send of 78 bytes failed with errno=32 Broken pipe in /root/Downloads/smppexample.php on line 411
Trying to read PDU.
Socket was closed.!!
Connection lost.
PHP Fatal error: Call to undefined function mb_convert_encoding() in /root/Downloads/smppexample.php on line 204
—————-
with regards,
jothirajan
For everybody getting a warning fsockopen() error, most probably you are running your script on a shared server & most of them have blocked sockets, so this script NOT work on shared servers. You may use curl as an alternative or fopen() if your SMSC supports that.
To run this script you will need a VPS
If anybody is looking for customized SMS applications, you can contact me for professional consultancy & development
info[at]akshayagarwal.in