Apache CGI
apxs -cia mod_cgi.c
<Directory "/opt/wwwroot/DEVCENTER.51.com/cgi">
Options +ExecCGI
AllowOverride None
Order allow,deny
Allow from all
</Directory>
AddHandler cgi-scrip...
Programming Windows Batch Scripts
Windows 快速编辑模式:
如果使用鼠标左右键来复制和粘帖?
在 ms-dos或者cmd的"属性" -->"编辑-编辑选项" -->快速编辑模式-->保存。
重定向符
可以使用重定向符将命...
PHP安装mcrpyt模块
wget ftp://mcrypt.hellug.gr/pub/crypto/mcrypt/libmcrypt/libmcrypt-2.5.7.tar.gz
tar xzvf libmcrypt-2.5.7.tar.gz
cd libmcrpyt-2.5.7
./configure
make
make install
tar xjvf php-4.4.4.tar.bz2
cd php-4.4.4/ext/mcryp...
ICC编译Apache2,PHP5
cd /tmp
wget ftp://rpmfind.net/linux/redhat/updates/enterprise/4AS/en/os/SRPMS/libtool-1.5.6-4.EL4.1.src.rpm
rpm -i libtool-1.5.6-4.EL4.1.src.rpm
cd /usr/src/redhat/SPECS
rpmbuild -bp libtool.spec
cd /usr/src/redhat/BUILD...
src.rpm安装
安装.src.rpm软件包前需安装rpm-build包。
有些软件包是以.src.rpm结尾的,这类软件包是包含了源代码的rpm包,在安装时需要进行编译。这类软件包有两种安装方法:
方法一:
1. ...
Learning Perl 4th
Chapter 2 Scalar Data
Perl将里面的变量分成单数和复数的。单数就是Scalar,指单一的事物:数字(Number)或者一个字串(string). 在Perl里面,数字和字串几乎是一个东西,都是Scalar。
...