windows XP安裝配置Perl Apache

來源:互聯網
上載者:User
windows XP安裝配置Perl
下載:
Apache 1.3.29 :
ActivePerl :http://activestate.com/store/download.aspx?prdGUID=81fbce82-6bd5-49bc-a915-08d58c2648ca
進入View archive of older releases 下載ActivePerl-5.6.1.624-TRIAL2-MSWin32-x86-multi-thread.msi
mod_perl :http://perl.apache.org/download/index.html
mod_perl 1.0: Version 1.30 For use with Apache 1.3.x (同時有Installation 安裝說明,不過夠詳細)

1)雙擊ActivePerl-5.6.1.624-TRIAL2-MSWin32-x86-multi-thread.msi按照安裝嚮導進行安裝即可。如:最後安裝路徑為:C:\Perl\bin
在命令列測試
C:\Documents and Settings\user>perl -v
正常顯示版本號碼則表示安裝成功。

2)編譯擷取mod_perl.so;解壓mod_perl-1.0-current.tar.gz進入目錄執行:
C:\modperl_src> perl Makefile.PL APACHE_SRC=Apache的安裝目錄
(如:F:\mod_perl-1.0-current\mod_perl-1.30>perl Makefile.PL APACHE_SRC=E:\apac
he1329\Apache)
然後再執行(nmake命令需要安裝Microsofe Visual C++ 5.0以上):
C:\modperl_src> nmake
C:\modperl_src> nmake test
C:\modperl_src> nmake install
之後將在apache的modules目錄下得到mod_perl.so檔案。
3) Apache 以加入Perl支援
在httpd.conf檔案# Dynamic Shared Object (DSO) Support段的末尾加入以下兩行:
LoadModule perl_module modules/mod_perl.so
LoadFile "C:/Perl/bin/perl56.dll"

在# Reconstruction of the complete module list from all available modules段的末尾加入以下行:
AddModule mod_perl.c

找到#AddHandler cgi-script .cgi,然後修改為
AddHandler cgi-script .pl .cgi

找到<IfModule mod_alias.c>段,增加一個Directory元素對應上面的虛擬目錄如下:
<Directory "E:/proj/php">
AllowOverride All
Options Indexes Includes ExecCGI
</Directory>

注意:
一般喜歡在perl檔案裡寫
#!/usr/bin/perl
這麼寫的很大部分原因是為了相容 Linux(Unix).
但是假設你的 Perl 目錄為 C:\usr\bin, 而 Apache 目錄為 D:\Apache2. 那你所有的程式頭一行必須是

1. #!C:/usr/bin/perl.exe
2. #!usr/bin/perl
3. #!perl

這三種中的一種。其中第 3 種還必須得把 C:\usr\bin 加個 Path 中。
如果你不這麼做,當你訪問類如 http://localhost/cgi-bin/printenv.pl(此程式以#!/usr/bin/perl開頭時) 時就會報錯(查看apache的logs):

No such file or directory: couldn't spawn child process: D:/Apache2/cgi-bin/printenv.pl

解決這個問題的方法不是修改 httpd.conf 或者註冊表什麼的。你要麼都用 #!C:/usr/bin/perl.exe 開頭,要麼將 Apache 和 Perl 安裝到一個目錄中(都在 C: 或者都在 D:)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.