docs:mac:builds:php

This is an old revision of the document!


php

FIXME - add postgres support

./configure --prefix=/usr/local --mandir=/usr/local/man --infodir=/usr/local/info --with-apxs2=/usr/local/apache2/bin/apxs --disable-cli --with-curl=/usr/local --enable-exif --enable-ftp --with-gd=/usr/local --with-jpeg-dir=/usr/local --with-png-dir=/usr/local --with-zlib-dir=/usr/local --with-freetype-dir=/usr/local --with-mcrypt=/usr/local --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-libxml-dir=/usr/local --enable-zip

make

sudo make install
./configure --prefix=/usr/local --mandir=/usr/local/man --infodir=/usr/local/info --with-apxs2=/usr/local/apache2/bin/apxs --disable-cli

make

sudo make install

The apache configuration files should automatically be modified. If not, make sure you have the following in httpd.conf:

# this line should already have been added by the php install process
LoadModule php5_module        modules/libphp5.so

# instead of this, add the lines in the following step to mime.types
# AddHandler php5-script php

Instead of the AddHandler line, add these lines to mime.types:

application/x-httpd-php			php phtml
application/x-httpd-php-source		phps

Start or restart apache, make a php page with the following to test the installation and configuration:

<?php

echo phpinfo();

?>

see php_cgi

  • docs/mac/builds/php.1197096377.txt.gz
  • Last modified: 2008/08/03 00:25
  • (external edit)