2012 年二月 一 二 三 四 五 六 日 « 一 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 近期评论
- wlx [微博 ] 发表在《google彻底被封?》
- snake 发表在《google彻底被封?》
- Andrew Pelt 发表在《debian testing上安装oracle 10g》
- tiplip 发表在《webmap.cn使用的WEBGIS技术》
- 求助Evolution问题!! 发表在《evolution crashed in gutsy alpha》
分类目录
标签
anjuta apache backup breezy c++ compile convert dapper debian dns edgy evolution feisty firefox flash gnome gobang GRASS gutsy humor intrepid Linux mailman MapServer mysql openoffice Oracle php phpbb postfix PostGIS postgresql qgis sarge scim skype subversion svn tomcat ubuntu utf8 westdc Windows wordpress 中文
Tag Archives: apache
debian apache2
deboam的apache2是以multithreaded安装的,但目前mapserver好象还不能支持。 所以就想把php安装为fastcgi方式,但怎么改,apache2就是不认识action参数。 add to /etc/apache2/httpd.conf : ——- ### set according to /usr/share/doc/php4-cgi/README.Debian ### LoadModule actions_module /usr/lib/apache2/modules/mod_actions.so Action application/x-httpd-php /cgi-bin/php4 后来才发现,需要激活actions模块。
apache/php/mysql的安装
虽然已经安装过多次了,还是记录一下这次安装的过程。 cd ~ wget http://apache.freelamp.com/httpd/httpd-2.0.52.tar.gz tar xzf httpd-2.0.52.tar.gz wget http://cn.php.net/get/php-4.3.10.tar.gz/from/this/mirror tar xzf php-4.3.10.tar.gz cd ~/httpd-2.0.52 #make clean ./configure –enable-rewrite –enable-so make make install cd ~/php-4.3.10 #make clean ./configure –with-apxs2=/usr/local/apache2/bin/apxs make make install cd ~ wget http://dev.mysql.com/get/Downloads/\ MySQL-4.0/mysql-standard-4.0.23-pc-linux-i686.tar.gz/\ from/http://mysql.zawodny.com/