docs:mac:builds:php

This is an old revision of the document!


php

  • first install apache2, curl, gd, libjpeg, libpng, libxml2, libmcrypt, mysql (or mysqli), postgresql, zlib
  • :!: if you will be installing xdebug, do NOT use the –disable-cli switch shown below!
  • :!: my most recent build-from-scratch project for php found that libxml2 is not required to be built and installed since Leopard includes it already, so php doesn't error out as shown below; this was built with Mac OS X 10.5.5
./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 --with-pgsql=/usr/local/pgsql

make

sudo make install

:!:I had problems installing on Leopard with ld (when linking). The problem seems to be with libxml2. I installed my own libxml2, but Leopard has it's own. It seems like my headers were read, but it tried to link against Apple's older libraries. To fix it, do the following:

  • attempt your build as before
  • when you get to the point where the build process breaks (the very end, during linking with ld), copy the last gcc command (Warning: it is HUGE)
    gcc -bundle -bundle_loader /usr/local/apache2/bin/httpd -L/usr/lib -L/usr/lib -laprutil-1 -lsqlite3 -lexpat -liconv -L/usr/lib -lapr-1 -lpthread -I/usr/include -g -O2   -L/usr/local/lib -L/usr/local/mysql/lib/mysql
    ...
    -lz -lmysqlclient -lmcrypt -lltdl -liconv -lgd -lfreetype -lpng -lz -ljpeg -lcurl -lz -lm -lxml2 -lz -liconv -lm -lcurl -lssl -lcrypto -lldap -lz -lxml2 -lz -liconv -lm -lmysqlclient -lz -lm -lxml2 -lz -liconv -lm -lxml2 -lz -liconv -lm -lxml2 -lz -liconv -lm -lxml2 -lz -liconv -lm  -o libs/libphp5.bundle && cp libs/libphp5.bundle libs/libphp5.so
  • paste this into TextWrangler, and remove all references in the beginning of -L/usr/lib
  • copy and paste this command back to the terminal, press enter, and your module should properly link
  • type make again to confirm the build process is complete
  • run sudo make install as usual
./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

post install configuration

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

If you want to control custom settings for php, create or edit php.ini in /usr/local/lib.

Installing PDFLib

  1. download PDFLib for Mac OSX from http://www.pdflib.com (at the time of this writing, the correct file name was PDFlib-7.0.3p5-MacOSX-10.5-Universal-php.dmg)
  2. open the disk image
  3. read up on the documentation (the doc folder)
  4. navigate to bind/php5/php-520 (read the install instructions, or continue with these steps if you are installing this exact version)
  5. create directory /usr/local/lib/php/extensions
  6. create directory /usr/local/lib/php/extensions/no-debug-non-zts-20060613
  7. copy the libpdf_php.so file to /usr/local/lib/php/extensions/no-debug-non-zts-20060613
  8. add the following to php.ini
    extension=libpdf_php.so
  9. start or restart apache, and check a phpinfo page to verify that the module has loaded

enabling logging of php errors to a file

  1. add the following to php.ini
    error_log=/usr/local/apache2/logs/phperror.log
    log_errors=1

enabling debugging features

see xdebug

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.1229756794.txt.gz
  • Last modified: 2008/12/20 00:06
  • (external edit)