INSTALL
上传用户:eo_sii
上传日期:2007-01-05
资源大小:91k
文件大小:2k
源码类别:

手机短信编程

开发平台:

Unix_Linux

  1. SMSLink Web Interface Installation Procedure
  2. ============================================
  3. (Last modified on 25/06/99)
  4. 1./ Install the HTML document.
  5.     Copy the file called index.html to some place under your web site's
  6.     document-root.
  7. 2./ Customize the HTML doc.
  8.     Some items on the page will have to be changed to match your site
  9.     setup. Among those are:
  10.     - the URL leading to the CGI script
  11.     - the email address of your local webmaster
  12.     - the choice of included logos at the bottom of the page
  13.     This page also contains an informational blurb about SMS in general
  14.     in its routing between networks in particular. You might want to 
  15.     review this to make sure it's relevant in your case (or to delete
  16.     it alltogether).
  17. 3./ Install the CGI script.
  18.     Copy the file called smsgw.pl to your cgi-bin/ directory. If you're
  19.     working with a recent version of Apache (as of 1.3.x for sure), the
  20.     server by default doesn't allow a CGI script to call any program
  21.     outside of the cgi-bin tree (for security reason). What you'll
  22.     want to do in this case is either create in the cgi-bin/ a symlink
  23.     to the sms client program (normally in /usr/local/bin), or copy the
  24.     executable to the cgi-bin/ directory. Both ways work.
  25. 4./ Customize the CGI script.
  26.     In the case your http server restricts the execution of programs
  27.     outside of the cgi-bin tree, it also strips the environment. So,
  28.     you'll have to adapt the system() call in the script by giving the
  29.     path (be it relative) to the sendsms utility. For instance:
  30.     $retval = system ("./sendsms", "-d$dest", "-u$userid", ...
  31.     On this same line, also replace my server name (zenobe) with yours.