Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
docs:mac:builds:php [2008/06/09 22:38] – billh | docs: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]], | + | * first install [[apache2]], |
+ | * :!: 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' | ||
+ | * On Lion, it looks like everything installs fine except the cli for php. It installed a file named php.dSYM in / | ||
+ | * see https:// | ||
< | < | ||
- | ./configure --prefix=/ | + | ./ |
+ | --prefix=/ | ||
+ | --mandir=/ | ||
+ | --infodir=/ | ||
+ | --with-apxs2=/ | ||
+ | --with-curl=/ | ||
+ | --enable-exif | ||
+ | --enable-ftp | ||
+ | --with-gd=/ | ||
+ | --with-jpeg-dir=/ | ||
+ | --with-png-dir=/ | ||
+ | --with-zlib-dir=/ | ||
+ | --with-freetype-dir=/ | ||
+ | --with-mcrypt=/ | ||
+ | --with-mysql=/ | ||
+ | --with-mysqli=/ | ||
+ | --with-pdo-mysql=/ | ||
+ | --with-libxml-dir=/ | ||
+ | --enable-zip | ||
+ | --with-pgsql=/ | ||
+ | --with-pdo-pgsql=/ | ||
+ | --enable-mbstring | ||
make | make | ||
Line 14: | Line 39: | ||
sudo make install | sudo make install | ||
</ | </ | ||
- | |||
==== Leopard Update ==== | ==== Leopard Update ==== | ||
:!:I had problems installing on Leopard with ld (when linking). | :!:I had problems installing on Leopard with ld (when linking). | ||
Line 38: | Line 62: | ||
</ | </ | ||
+ | ==== post install configuration ==== | ||
The apache configuration files should automatically be modified. | The apache configuration files should automatically be modified. | ||
< | < | ||
Line 53: | Line 78: | ||
</ | </ | ||
+ | ==== php.ini ==== | ||
+ | If you want to control custom settings for php, create or edit php.ini in / | ||
+ | sudo cp php.ini-development / | ||
+ | </ | ||
+ | |||
+ | === enable debugging and error handling features === | ||
+ | * display errors by default< | ||
+ | display_errors=1 | ||
+ | </ | ||
+ | * show all errors, notices, and warnings< | ||
+ | error_reporting=E_ALL | ||
+ | </ | ||
+ | * log all php errors to a file< | ||
+ | error_log=/ | ||
+ | log_errors=1 | ||
+ | </ | ||
+ | * see also [[xdebug]] | ||
+ | |||
+ | === Installing PDFLib === | ||
+ | - download PDFLib for Mac OSX from [[http:// | ||
+ | - open the disk image | ||
+ | - read up on the documentation (the doc folder) | ||
+ | - navigate to bind/ | ||
+ | - create directory / | ||
+ | - create directory / | ||
+ | - copy the libpdf_php.so file to / | ||
+ | - add the following to php.ini< | ||
+ | extension=libpdf_php.so | ||
+ | </ | ||
+ | - 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: | ||
< | < |