Difference between revisions of "How to create web sms sender"

From ArmadeusWiki
Jump to: navigation, search
(New page: First install a web server I choose lighttpd (make menuconfig ->Package selection for the target ). Select Show package that are also provide by busybox and lighttpd. Second adapt exempl...)
 
 
Line 3: Line 3:
 
I choose lighttpd (make menuconfig ->Package selection for the target ). Select Show package that are also provide by busybox and lighttpd.
 
I choose lighttpd (make menuconfig ->Package selection for the target ). Select Show package that are also provide by busybox and lighttpd.
  
Second adapt exemple script for sending sms
+
We also need php support (Interpreter language and scripting). Enable php and fastcgi, active also PCRE extenstion.
  
Third create web page.
+
Second adapt exemple script for sending sms. This is mine [http://pastebin.com/sL4V3eFp] (I still have to improve it so if you have comments)
 +
 
 +
 
 +
Third create web pages a basic formular and a php treatement page or all in one. Dont forget that we have to send smsm in GSM 03.38 so I have made my small convert function [http://pastebin.com/MJrDx25j].

Latest revision as of 19:12, 21 October 2012

First install a web server

I choose lighttpd (make menuconfig ->Package selection for the target ). Select Show package that are also provide by busybox and lighttpd.

We also need php support (Interpreter language and scripting). Enable php and fastcgi, active also PCRE extenstion.

Second adapt exemple script for sending sms. This is mine [1] (I still have to improve it so if you have comments)


Third create web pages a basic formular and a php treatement page or all in one. Dont forget that we have to send smsm in GSM 03.38 so I have made my small convert function [2].