./configure --prefix=/home/php5 --enable-fastcgi --enable-force-cgi-redirect --enable-soap #支持 fastcgilighttpd.conf配置static-file.exclude-extensions = ( ".php", ".pl", ".fc
转载
精选
2014-05-20 14:55:03
377阅读
http://hex.ro/wp/blog/php-and-lighttpd-for-android/ Update 7 May 2012: New version released, containing PH...
转载
2022-05-04 07:30:25
266阅读
Linux, Lighttpd, and PHP are three essential components for anyone looking to set up a web server. In this article, we will explore each of these components in detail and discuss how they work togethe
原创
2024-05-17 10:51:01
67阅读
http://wkt55555.blog.163.com/blog/static/44515259201461255249642/ 安装包内容: $ tar -tf ~/tmp/data_web.tar ./ ...
转载
2022-05-04 07:29:50
141阅读
转自:http://www.winstonyw.com/2008/05/28/installing-lighttpd-and-php-on-windows/
转载
2009-02-28 00:43:00
352阅读
2评论
1)下载,解压
#wget http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.28.tar.bz2 #tar xf lighttpd-1.4.28.tar.bz2
2)编译安装
# ./configure --prefix=/usr/loc
推荐
原创
2011-05-19 13:45:30
1766阅读
点赞
3评论
正则表达式需要tar xzvf pcre-6.6.tar.gz make clean ./configure --prefix=/usr/local/lighttpd make install cp doc/lighttpd.conf /usr/local/lighttpd/etc groupadd lighttpd chown -R lighttpd.lighttpd /
原创
2009-06-10 17:13:44
3356阅读
一:安装mysql
下载:wget http://blog.s135.com/soft/linux/nginx_php/mysql/mysql-5.1.33.zip
安装:
unzip mysql-5.1.33.zip
cd mysql-5.1.33.zip
./configure --prefix=/usr/local/mysql --enable-
原创
2021-08-01 19:06:02
187阅读
其实安装Lighttpd不需要什么别的软件,去https://www.kevinworthington.com/?s=lighttpd下载编译好的win32版就好了(本人用的是zip包,exe版类似)。1.解压到任何目录(最好是英文目录,其他语言的没试过),如d:\inetpub\LightTPD;我的系统环境:Vista32 中文版,PHP5.2.3和5.2.4,mysql 5.0.45;以下的
转载
精选
2010-03-25 22:01:02
1977阅读
一、安装相关软件包
[root@web ~]# yum -y install pcre pcre-devel bzip2-devel zlib zlib-devel mysql-server php php-mysql
二、编译并安装lighttpd
[root@web ~]# tar zxf lighttpd-1.4.30.tar.gz
原创
2012-04-05 20:46:05
1656阅读
点赞
1评论
练习记录
通过yum安装所需的软件包其中包括mysql-server php php-mysql
[root@localhost ~]# yum -y install gcc gcc-c++ bzip2-devel zlib zlib-devel mysql-server php php-mysql
安装pcre:
[root@localho
原创
2012-02-20 15:53:02
617阅读
安装lighttpd:[root@localhost ~]# tar zxvf lighttpd-1.4.30.tar.gz[root@localhost ~]# cd lighttpd-1.4.30[root@localhost lighttpd-1.4.30]# ./configure --prefix=/usr/local/lighttpd[root@localhost lighttpd-1
转载
精选
2016-07-14 14:09:32
669阅读
Windows版本的Lighttpd下载:
http://www.kevinworthington.com/downloads/
PHP下载:
http://www.php.net/
Mysql下载:
http://www.mysql.com/ 或者去其他软件下载站下载,官方下载比较麻烦!
PHP和Mysql的安装就省略了。
主要是针对Lightt
转载
2010-03-25 22:02:10
906阅读
一.windows下编译配置执行lighttpd1、下载并安装cygwin。2、下载lighttpd源码并解压3、在cygwin环境下进入lighttpd的解压文件夹后,执行:1> ./configure –prefix=C:/lighthttd2> make3> make installOK,此时...
转载
2014-09-27 12:01:00
93阅读
2评论
下午没事的时候装了一下lighttpd,和大家分享一下!
首先安装lighttpd之前先安装pcre包
确认libtool是否已经安装,如果没有安装的话,则先安装libtool
yum -y install libtool
分别执行以下三条命令:
autoreconf --force --install
libtoolize --automake --force
automake
原创
2011-04-17 13:04:18
2090阅读
Lighttpd + PHP-FastCGI + MySQL + eAccelerator 环境配置来自 http://www.linuxeden.com/forum/thread-162137-1-1.html一、软件准备============Lighttpd: http://www.lighttpd.netPHP: http://www.php.netMySQL: http://www.my
原创
2008-03-03 16:17:00
574阅读
(一)lighttpd1. 安装yum installlighttpd安装完毕后,系统中应该多了一个用户lighttpd和组lighttpd。这个用户,默认是不同意登陆的。我们改动/etc/passwd,将lighttpd改动为例如以下形式。lighttpd:x:489:470:lighttpd w...
转载
2015-02-21 16:20:00
139阅读
2评论
前提:已源码安装过Apache1.安装PHP之前安装PHP组件 GD 库freetype、jpegsrc、libpng、GD2(1).安装freetype tar zxvf freetype-2.3.10.tar.gz
cd freetype-2.3.10
./configure --prefix=/usr/local/freetype
make && make instal
原创
2013-04-28 13:48:28
1131阅读