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/12/20 00:38] billhdocs:mac:builds:php [2012/08/31 22:42] (current) – [My Preferred Libs] billh
Line 7: Line 7:
 ==== My Preferred Libs ==== ==== My Preferred Libs ====
   * first install [[apache2]], [[curl]], [[gd]], [[libjpeg]], [[libpng]], <del>[[libxml2]]</del>, [[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 shown below!+  * :!: 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   * :!: 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 16: 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 57: Line 79:
  
 ==== php.ini ==== ==== php.ini ====
-If you want to control custom settings for php, create or edit php.ini in /usr/local/lib.+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 === === enable debugging and error handling features ===
Line 84: Line 108:
 </code> </code>
   - start or restart apache, and check a phpinfo page to verify that the module has loaded   - start or restart apache, and check a phpinfo page to verify that the module has loaded
- 
 ==== starting and testing php ==== ==== 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:
  • docs/mac/builds/php.1229758703.txt.gz
  • Last modified: 2008/12/20 00:38
  • by billh