docs:mac:builds:php

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
docs:mac:builds:php [2008/06/09 22:38] billhdocs:mac:builds:php [2012/08/31 22:42] (current) – [My Preferred Libs] billh
Line 6: Line 6:
  
 ==== My Preferred Libs ==== ==== My Preferred Libs ====
-  * first install [[apache2]], [[curl]], [[gd]], [[libjpeg]], [[libpng]], [[libxml2]], [[libmcrypt]], [[mysql]] (or mysqli), [[postgresql]], [[zlib]]+  * first install [[apache2]], [[curl]], [[gd]], [[libjpeg]], [[libpng]], <del>[[libxml2]]</del>, [[libmcrypt]], [[mysql]] (or mysqli), [[postgresql]], [[zlib]] 
 +  * :!: if you will be installing [[xdebug]], do NOT use the --disable-cli switch (has since been removed from 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 
 +  * On Lion, it looks like everything installs fine except the cli for php.  It installed a file named php.dSYM in /usr/local/bin.  This file seems to be the actual php executable, so fo r now I just created a symbolic link named php beside the php.dSYM file. 
 +    * see https://bugs.php.net/bug.php?id=43341
 <code> <code>
-./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+./configure 
 + --prefix=/usr/local 
 + --mandir=/usr/local/man 
 + --infodir=/usr/local/info 
 + --with-apxs2=/usr/local/apache2/bin/apxs 
 + --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-pdo-mysql=/usr/local/mysql \ 
 + --with-libxml-dir=/usr/local 
 + --enable-zip 
 + --with-pgsql=/usr/local/pgsql 
 + --with-pdo-pgsql=/usr/local/pgsql \ 
 + --enable-mbstring
  
 make make
Line 14: Line 39:
 sudo make install sudo make install
 </code> </code>
- 
 ==== Leopard Update ==== ==== Leopard Update ====
 :!: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: :!: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:
Line 38: Line 62:
 </code> </code>
  
 +==== post install configuration ====
 The apache configuration files should automatically be modified.  If not, make sure you have the following in httpd.conf: The apache configuration files should automatically be modified.  If not, make sure you have the following in httpd.conf:
 <code> <code>
Line 53: Line 78:
 </code> </code>
  
 +==== php.ini ====
 +If you want to control custom settings for php, create or edit php.ini in /usr/local/lib.  If it doesn't exist, go into your php build directory and run this:<code bash>
 +sudo cp php.ini-development /usr/local/lib/php.ini
 +</code>
 +
 +=== enable debugging and error handling features ===
 +  * display errors by default<code>
 +display_errors=1
 +</code>
 +  * show all errors, notices, and warnings<code>
 +error_reporting=E_ALL
 +</code>
 +  * log all php errors to a file<code>
 +error_log=/usr/local/apache2/logs/phperror.log
 +log_errors=1
 +</code>
 +  * see also [[xdebug]]
 +
 +=== Installing PDFLib ===
 +  - 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)
 +  - open the disk image
 +  - read up on the documentation (the doc folder)
 +  - navigate to bind/php5/php-520 (read the install instructions, or continue with these steps if you are installing this exact version)
 +  - create directory /usr/local/lib/php/extensions
 +  - create directory /usr/local/lib/php/extensions/no-debug-non-zts-20060613
 +  - copy the libpdf_php.so file to /usr/local/lib/php/extensions/no-debug-non-zts-20060613
 +  - add the following to php.ini<code>
 +extension=libpdf_php.so
 +</code>
 +  - start or restart apache, and check a phpinfo page to verify that the module has loaded
 +==== starting and testing php ====
 Start or restart apache, make a php page with the following to test the installation and configuration: Start or restart apache, make a php page with the following to test the installation and configuration:
 <code> <code>
  • docs/mac/builds/php.1213072685.txt.gz
  • Last modified: 2008/08/03 00:25
  • (external edit)