zoukankan      html  css  js  c++  java
  • PHP and Lighttpd for Android

    http://hex.ro/wp/blog/php-and-lighttpd-for-android/


    Update 7 May 2012: New version released, containing PHP 5.4.2 version (CGI only). It now contains openssl / curl / SQLite modules statically linked within php-cgi executable and thus curlssl works! Beside the version number, all installation instructions below still apply.

    If you are already using PHP 5.3.8, just grab the php-cgi file from the 5.4.2 archive system/xbin folder and replace the /system/xbin/php-cgi on the device.

    Introduction

    Below you can find an bundle of PHP 5.3.8 (CGI only) and Lighttpd 1.4.29 (FastCGI module included) which are cross compiled for ARMv5 CPUs (Android platforms mainly).

    As you mail well know, both PHP and Lighttpd offer modules that could be loaded at run-time based on settings within configuration files. The bundle doesn’t include all modules, due to difficulties encountered when compiling for ARM platforms. Those modules that are included are statically linked in the executables (so no additional files are needed) nor configuration files need to be updated to load them.

    Screenshots

    Below you can see screenshots with the phone browser opening localhost address. Once you unpack the archive, there’s an index.php file which just calls phpinfo() to show the details about the build.

    Of course, you can remove the file and put your own scripts :)

    phpinfo() on Sony Arc

    phpinfo() on Sony Arc

    phpinfo() on Sony X10 Mini

    phpinfo() on Sony X10 Mini

    PHP Modules

    The list of PHP modules that are statically linked:

    Lighttpd Modules

    Download

    This comes with NO WARRANTY. Use it at your own risk!

    php-5.4.2_lighttpd_1.4.29_armv5.tar.gz

    php-5.3.8_lighttpd_1.4.29_armv5.tar.gz

    License

    Please check README.txt file found in /system/README.txt within the bundle.

    PHP executable is offered under PHP license, Lighttpd executable under Lighttpd license, all other files in the bundle are offered under New BSD License (3 clause BSD license).

    Installing

    The bundle tries to mimic as much as possible the layout of a Debian installation of the two files. However, due to file system layout on Android phones (binaries under /system folder), the folders are one step down, under /system folder:

    Prerequisites:

    • rooted phone with busybox installed.
    • mount the /system partition as RW.

    Using DroidSSHd on the phone and connecting with Putty (or equivalent) makes the whole process faster.

    After you copy the archive above into the root of your SD Card, installation is easy:

    You might notice that the owner / group of the files is 1000:1000. Ignore that, as long as you execute them as root, there’s no issue (those are the IDs of my username on the PC I created the tar.gz archive and tar tries to conserve the user / creation time / etc from when the archive was created).

    The last two commands start the FCGI server (PHP with 4 children processes), and then launch lighttpd server as daemon.

    The default port is 80.
    Default htdocs folder is /system/var/www.

    The configuration files are under /system/etc/lighttpd/lighttpd.conf and /system/etc/php/php.ini. To restart either PHP or Lighttpd, please use one of the commands above.

    It is mandatory that you are on the root folder when you extract the archive. tar will take care of creating all the missing folders, creating the links, etc, as long as you are on the root folder.

    You can now open the phone’s browser and point it at localhost :) and the phpinfo() page should appear.

    Example usage

    Installing Simple Machines Forum 2.0.1 on Android

    Before executing the commands below, you need the “Full Install” smf_2-0-1_install.tar.gz archive downloaded from SMF and then copied onto your /sdcard root folder.

    Last two commands are optional, if you already started the FastCGI server as well as lighttpd.

    You should now connect to http://localhost/forum and finish installation of the forum.

    Enjoy :)

    <script>window._bd_share_config={"common":{"bdSnsKey":{},"bdText":"","bdMini":"2","bdMiniList":false,"bdPic":"","bdStyle":"0","bdSize":"16"},"share":{}};with(document)0[(getElementsByTagName('head')[0]||body).appendChild(createElement('script')).src='http://bdimg.share.baidu.com/static/api/js/share.js?v=89860593.js?cdnversion='+~(-new Date()/36e5)];</script>
    阅读(67) | 评论(0) | 转发(0) |
    给主人留下些什么吧!~~
    评论热议
  • 相关阅读:
    销售人员个人提升经典书籍推荐
    销售必看的书籍推荐
    我在公司敲代码,你却在家和老王………————程序员的那些梗
    某程序员动了公司的祖传代码"屎山",半年后怒交辞职报告!
    为什么说程序员的前三年不要太看重工资水平?
    好的员工关系应该是怎样的?
    粒子群优化算法(PSO)python 3实现
    Python基础篇-安装python
    Python设置matplotlib.plot的坐标轴刻度间隔以及刻度范围
    空TreeList添加节点不显示
  • 原文地址:https://www.cnblogs.com/ztguang/p/12649067.html
Copyright © 2011-2022 走看看