Installing Apache2 and PHP5 on OSX |
2008/08/16 ~ 阿亮 ~ |
最近用 Macport 換掉 MacOSX 的 Apache2 and PHP5. 新裝的 apache2, php5 理論上都裝到 /opt/local/ 的目錄,但用 phpinfo() 看,發現目錄一直仍指到原本 Mac OSX 內建的目錄 /etc, Configure command 的項目如下
/configure' '--prefix=/usr' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--disable-dependency-tracking' '--with-apxs2=/usr/sbin/apxs' '--with-ldap=/usr' '--with-kerberos=/usr' '--enable-cli' '--with-zlib-dir=/usr' '--enable-trans-sid' '--with-xml' '--enable-exif' '--enable-ftp' '--enable-mbstring' '--enable-mbregex' '--enable-dbx' '--enable-sockets' '--with-iodbc=/usr' '--with-curl=/usr' '--with-config-file-path=/etc' '--sysconfdir=/private/etc' '--with-mysql-sock=/var/mysql' '--with-mysqli=/usr/bin/mysql_config' '--with-mysql=/usr' '--with-openssl' '--with-xmlrpc' '--with-xsl=/usr' '--without-pear'
仍在 –prefix=/usr ,理論上應在 –prefix=/opt/local 找了很久,結果是兩個的 php.ini 版本是指定不同的 modules/ 目錄,在 MacOSX 版的 LoadModule 指定如下:
LoadModule php5_module libexec/apache2/libphp5.so
但在 Macport 版的 php.ini 指定如下:
LoadModule php5_module modules/libphp5.so
即 MacPort 版的 apache2 載入 MacOSX 的 php5,是可載入。但不是我要的。 真是被耍了。 重新
copy /opt/local/apache2/conf/httpd.conf.sample to /opt/local/apache2/conf/httpd.conf
再加上
LoadModule php5_module modules/libphp5.so
即可
另外加下面此段,將 PHP filetype 可以被執行
<IfModule php5_module> AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps <IfModule dir_module> DirectoryIndex index.html index.php </IfModule> </IfModule>
上述這些,都要重開 apache.