Installation et configuration d'un serveur Web APACHE 2.2 avec PHP 5.3 sur un système UNIX
Par PlaceOweb le dimanche, mai 10 2009, 12:53 - Système - Lien permanent
Avec les versions actuelles :
- Apache 2.2.11 (httpd-2.2.11)
- PHP 5.3.0 (php-5.3.0RC2)
Apache
Téléchargement du serveur web httpd Apache sur le miroir d'OVH, puis décompression
[root@monserveur INSTALL]# wget "http://mir2.ovh.net/ftp.apache.org/dist/httpd/httpd-2.2.11.tar.gz" 16:25:06 (248 KB/s) - « httpd-2.2.11.tar.gz » sauvegardé [6806786/6806786] [root@monserveur INSTALL]# tar -xzvf httpd-2.2.11.tar.gz
Compilation et installation
# APACHE ------------------------------------------------------------------------------------------- ./configure \ --prefix=/APP/APACHE \ --enable-static-support \ --enable-so
Configuration de PHP pour Apache
Éditez de nouveau le fichier apache-2.2.11/conf/httpd.conf.
Recherchez la série de lignes commençant par #LoadModule et ajoutez à la suite LoadModule php5_module modules/libphp5.so
Cette ligne sert à charger en mémoire le module de PHP pour Apache. # indique qu'il s'agit d'un commentaire.
Ajoutez à la fin du fichier AddType application/x-httpd-php .php .inc. Cette ligne sert à spécifier quelles sont les extensions qui seront interprétées par PHP, vous pouvez en ajoutez autant que vous le voulez.
Afin de prendre en compte l'extension .php en ce qui concerne les pages d'index, cherchez la ligne DirectoryIndex index.html et modifiez la en DirectoryIndex index.php index.html index.htm.
[root@monserveur APACHE]# vim conf/httpd.conf # Example: # LoadModule foo_module modules/mod_foo.so LoadModule php5_module modules/libphp5.so # Changement de l'ordre pages d'index # DirectoryIndex index.html DirectoryIndex index.php index.html # Ajout de la déclaration des extensions qui seront interprétées par PHP AddType application/x-httpd-php .php .inc
PHP
Nous installerons PHP avec les extensions :
- d'accès aux bases de données (MySQL (pilote natif MYSQL : mysqlnd), Oracle (OCI) SQLite et PDO MySQL, PDO OCI, PDO SQLite) :
- pdo-mysql
- pdo-oci
- pdo-sqlite
- mysql
- mysqli
- oci8
- sqlite
- les librairies graphiques
- les librairies mail
- les librairies ssl
- et les autres extensions classiques
Installation et configuration
Installation sur les systèmes UNIX
# PHP 5.3.0 ------------------------------------------------------------------------------------------- [root@monserveur php-5.3.0RC2]# ./configure \ --prefix=/APP/PHP \ --with-apxs2=/APP/APACHE/bin/apxs \ \ --with-mysql=mysqlnd \ --with-mysqli=mysqlnd \ --with-pdo-mysql=mysqlnd \ --with-oci8=instantclient,/APP/LIB/instantclient_11_1 \ --with-pdo-oci=instantclient,/APP/LIB/instantclient_11_1,11.1.0.7.0 \ \ --with-openssl \ --with-zlib \ --enable-bcmath \ --with-bz2 \ --enable-calendar \ --with-curl \ --with-curlwrappers \ --enable-exif \ --enable-ftp \ \ --with-gd \ --with-png-dir=/APP/LIB/libpng-1.2.36 \ --with-jpeg-dir=/APP/LIB/jpeg-6b \ --with-freetype-dir=/APP/LIB/freetype-2.3.9 \ --enable-gd-native-ttf \ \ --enable-mbstring \ --enable-soap \ --enable-sockets \ --with-xsl \ --enable-zip \ +--------------------------------------------------------------------+ | Notice: | | If you encounter <defunc> processes when using a local Oracle-DB | | please recompile PHP and specify --enable-sigchild when configuring| | (This problem has been reported under Linux using Oracle >= 8.1.5) | +--------------------------------------------------------------------+ [root@monserveur php-5.3.0RC2]# make [root@monserveur php-5.3.0RC2]# make install Installing PHP SAPI module: apache2handler /APP/APACHE/build/instdso.sh SH_LIBTOOL='/APP/APACHE/build/libtool' libphp5.la /APP/APACHE/modules /APP/APACHE/build/libtool --mode=install cp libphp5.la /APP/APACHE/modules/ cp .libs/libphp5.so /APP/APACHE/modules/libphp5.so cp .libs/libphp5.lai /APP/APACHE/modules/libphp5.la libtool: install: warning: remember to run `libtool --finish /INSTALL/php/php-5.3.0RC2/libs' chmod 755 /APP/APACHE/modules/libphp5.so [activating module `php5' in /APP/APACHE/conf/httpd.conf] Installing PHP CLI binary: /APP/PHP/bin/ Installing PHP CLI man page: /APP/PHP/man/man1/ Installing build environment: /APP/PHP/lib/php/build/ Installing header files: /APP/PHP/include/php/ Installing helper programs: /APP/PHP/bin/ program: phpize program: php-config Installing man pages: /APP/PHP/man/man1/ page: phpize.1 page: php-config.1 Installing PEAR environment: /APP/PHP/lib/php/ [PEAR] Archive_Tar - already installed: 1.3.3 [PEAR] Console_Getopt - already installed: 1.2.3 [PEAR] Structures_Graph- already installed: 1.0.2 [PEAR] XML_Util - already installed: 1.2.1 [PEAR] PEAR - already installed: 1.8.0 Wrote PEAR system config file at: /APP/PHP/etc/pear.conf You may want to add: /APP/PHP/lib/php to your php.ini include_path /INSTALL/php/php-5.3.0RC2/build/shtool install -c ext/phar/phar.phar /APP/PHP/bin ln -s -f /APP/PHP/bin/phar.phar /APP/PHP/bin/phar Installing PDO headers: /APP/PHP/include/php/ext/pdo/ [root@ monserveur php-5.3.0RC2]#
Les extensions PHP
----------------------------------------------------------------------------------------------------- [Oracle] Oracle Instant Client 1. Télécharger les fichiers zip Basic et SDK depuis le site officiel d'Oracle. 2. Décompressez les 2 dans le même dossier 3. Créer les liens symboliques dans le dossier sdk 1. ln -s libocci.so.11.1 libocci.so 2. ln -s libclntsh.so.11.1 libclntsh.so Oracle Database Instant Client http://www.oracle.com/technology/tech/oci/instantclient/index.html Oracle Instant Client Downloads http://www.oracle.com/technology/software/tech/oci/instantclient/index.html Instant Client Downloads for Linux x86-64 Version 11.1.0.7.0 Instant Client Package - Basic: All files required to run OCI, OCCI, and JDBC-OCI applications basic-11.1.0.7.0-linux-x86_64.zip (47,149,968 bytes) (cksum - 574632590) *Instant Client Package - SDK: Additional header files and an example makefile for developing Oracle applications with Instant Client sdk-11.1.0.7.0-linux-x86_64.zip (607,351 bytes) (cksum - 24114492) [root@monserveur oracle]# cat /etc/ld.so.conf include ld.so.conf.d/*.conf /APP/LIB/jpeg-6b/lib /APP/LIB/freetype-2.3.9/lib /APP/LIB/libpng-1.2.36/lib /APP/LIB/instantclient_11_1 [root@monserveur oracle]# ldconfig [root@monserveur oracle]# ldconfig -p | grep oci libocijdbc11.so (libc6,x86-64) => /APP/LIB/instantclient_11_1/libocijdbc11.so libociei.so (libc6,x86-64) => /APP/LIB/instantclient_11_1/libociei.so
Erreurs rencontrées
# --with-oci8=/APP/LIB/instantclient_11_1 checking Oracle ORACLE_HOME install directory... /APP/LIB/instantclient_11_1 checking ORACLE_HOME library validity... configure: error: Expected an ORACLE_HOME top level directory but /APP/LIB/instantclient_11_1 appears to be an Instant Client directory. Try --with-oci8=instantclient,/APP/LIB/instantclient_11_1 # --with-oci8=instantclient,/APP/LIB/instantclient_11_1 \ --with-pdo-oci=instantclient,/APP/LIB/instantclient_11_1 \ checking Oracle Instant Client directory... /APP/LIB/instantclient_11_1 checking Oracle Instant Client SDK header directory... configure: error: Oracle Instant Client SDK header files not found # --with-oci8=instantclient,/APP/LIB/instantclient_11_1 \ --with-pdo-oci=instantclient,/APP/LIB/instantclient_11_1 \ +SDK checking Oracle Instant Client directory... /APP/LIB/instantclient_11_1 checking Oracle Instant Client SDK header directory... /APP/LIB/instantclient_11_1/sdk/include checking Oracle Instant Client version... configure: error: Link from /APP/LIB/instantclient_11_1/libclntsh.so to libclntsh.so.11.1 not found # --with-oci8=instantclient,/APP/LIB/instantclient_11_1 \ --with-pdo-oci=instantclient,/APP/LIB/instantclient_11_1 \ +SDK +ls pour linker les .so checking Oracle Instant Client directory... /APP/LIB/instantclient_11_1 checking Oracle Instant Client SDK header directory... /APP/LIB/instantclient_11_1/sdk/include checking Oracle Instant Client version... 11.1 checking whether to enable pcntl support... no checking whether to enable PDO support... yes checking for PDO_DBLIB support via FreeTDS... no checking for Firebird support for PDO... no checking for MySQL support for PDO... yes checking for PDO includes... checking for PDO includes... /INSTALL/php/php-5.3.0RC2/ext checking Oracle OCI support for PDO... yes checking Oracle Install-Dir... instantclient,/APP/LIB/instantclient_11_1 checking if that is sane... yes checking for oci.h... /APP/LIB/instantclient_11_1/sdk/include configure: error: Unsupported Oracle version ----------------------------------------------------------------------------------------------------- [GD + libpng + libjpeg + freetype2] # --with-gd \ If configure fails try --with-jpeg-dir=<DIR> configure: error: libpng.(a|so) not found. [root@monserveur php-5.3.0RC2]# locate libpng. /usr/lib/libpng.so.3 /usr/lib/libpng.so.3.10.0 /usr/lib64/libpng.so.3 /usr/lib64/libpng.so.3.10.0 [root@monserveur php-5.3.0RC2]# locate libjpeg /usr/lib/libjpeg.so.62 /usr/lib/libjpeg.so.62.0.0 /usr/lib64/libjpeg.so.62 /usr/lib64/libjpeg.so.62.0.0 # --with-gd=/usr/lib64/libgd.so.2 \ If configure fails try --with-jpeg-dir=<DIR> If configure fails try --with-png-dir=<DIR> and --with-zlib-dir=<DIR> If configure fails try --with-xpm-dir=<DIR> If configure fails try --with-freetype-dir=<DIR> configure: error: Unable to find gd.h anywhere under /usr/lib64/libgd.so.2 [root@monserveur php-5.3.0RC2]# locate gd.h /INSTALL/php/php-5.2.9/ext/gd/php_gd.h /INSTALL/php/php-5.2.9/ext/gd/libgd/gd.h /INSTALL/php/php-5.3.0RC2/ext/gd/php_gd.h /INSTALL/php/php-5.3.0RC2/ext/gd/libgd/gd.h # --with-gd=/APP/LIB/php-5.3.0RC2/ext/gd/libgd/ \ If configure fails try --with-jpeg-dir=<DIR> If configure fails try --with-png-dir=<DIR> and --with-zlib-dir=<DIR> If configure fails try --with-xpm-dir=<DIR> If configure fails try --with-freetype-dir=<DIR> configure: error: Unable to find libgd.(a|so) anywhere under /APP/LIB/php-5.3.0RC2/ext/gd/libgd/ # --with-gd=/usr/lib64 \ If configure fails try --with-jpeg-dir=<DIR> If configure fails try --with-png-dir=<DIR> and --with-zlib-dir=<DIR> If configure fails try --with-xpm-dir=<DIR> If configure fails try --with-freetype-dir=<DIR> configure: error: Unable to find gd.h anywhere under /usr/lib64 http://fr2.php.net/manual/fr/image.requirements.php http://www.libgd.org/ http://www.libgd.org/releases/gd-2.0.35.tar.gz 1. zlib, available from http://www.gzip.org/zlib/ Data compression library 2. libpng, available from http://www.libpng.org/pub/png/ Portable Network Graphics library; requires zlib 3. FreeType 2.x, available from http://www.freetype.org/ Free, high-quality, and portable font engine 4. JPEG library, available from http://www.ijg.org/ Portable JPEG compression/decompression library 5. XPM, available from http://koala.ilog.fr/lehors/xpm.html X Pixmap library [root@monserveur gd-2.0.35]# ./configure --prefix=/APP/LIB/gd-2.0.35 ** Configuration summary for gd 2.0.34: Support for PNG library: no Support for JPEG library: no Support for Freetype 2.x library: no Support for Fontconfig library: no Support for Xpm library: no Support for pthreads: yes [root@monserveur gd-2.0.35]# ./configure --prefix=/APP/LIB/gd-2.0.35 \ --with-png=/APP/LIB/libpng-1.2.36 \ --with-freetype=/APP/LIB/freetype-2.3.9 \ --with-jpeg=/APP/LIB/jpeg-6b ** Configuration summary for gd 2.0.34: Support for PNG library: yes Support for JPEG library: yes Support for Freetype 2.x library: yes Support for Fontconfig library: no Support for Xpm library: no Support for pthreads: yes http://www.libpng.org/pub/png/ http://www.libpng.org/pub/png/libpng.html http://freefr.dl.sourceforge.net/sourceforge/libpng/libpng-1.2.36.tar.gz [root@monserveur libpng-1.2.36]# ./configure --prefix=/APP/LIB/libpng-1.2.36 [root@monserveur libpng-1.2.36]# make check [root@monserveur libpng-1.2.36]# make install ---------------------------------------------------------------------- Libraries have been installed in: /APP/LIB/libpng-1.2.36/lib If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- http://www.ijg.org/ http://www.ijg.org/files/ http://www.ijg.org/files/jpegsrc.v6b.tar.gz [root@monserveur jpeg-6b]# ./configure --prefix=/APP/LIB/jpeg-6b --enable-shared [root@monserveur jpeg-6b]# make [root@monserveur jpeg-6b]# make install ---------------------------------------------------------------------- Libraries have been installed in: /APP/LIB/jpeg-6b/lib If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,--rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- http://www.freetype.org http://freefr.dl.sourceforge.net/sourceforge/freetype/freetype-2.3.9.tar.gz [root@monserveur freetype-2.3.9]# ./configure --prefix=/APP/LIB/freetype-2.3.9 [root@monserveur freetype-2.3.9]# make [root@monserveur freetype-2.3.9]# make install ---------------------------------------------------------------------- Libraries have been installed in: /APP/LIB/freetype-2.3.9/lib If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ----------------------------------------------------------------------
Configuration détaillée de php.ini
Doc de php.net
- Description des directives internes du php.ini
- Comportement des dates
- Liste des Fuseaux Horaires Supportés sûrement "Europe/Paris" pour ceux qui lisent ce post, qui ce traduit dans le fichier php.ini :
date.timezone = Europe/Paris
Les cas d'erreur
PHP Warning: mktime(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Europe/Berlin' for 'CEST/2.0/DST' instead in /myfile.php on line 75 PHP Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Europe/Berlin' for 'CEST/2.0/DST' instead in /myfile.php on line 75
Correction par définition du fuseau horaire dans php.ini : date.timezone = Europe/Paris
[root@ monserveur bin]# ./php /test_mysql_con.php PHP Warning: mysql_connect(): OK packet 6 bytes shorter than expected in /test_mysql_con.php on line 2 PHP Warning: mysql_connect(): mysqlnd cannot connect to MySQL 4.1+ using old authentication in /test_mysql_con.php on line 2
<?php $conSql = mysql_connect('192.168.0.123', 'myuser', 'mypass'); if (!$conSql) { die('Connexion impossible : ' . mysql_error()); } ?>
Alors qu'avec un autre utilisateur, et toujours à destination du même serveur MySQL 5.0, cela fonctionne...
Re-création de l'utilisateur MySQL :
GRANT ALL PRIVILEGES ON `my_bases%` . * TO "myuser"@"192.168.%" IDENTIFIED BY 'mypass'; FLUSH PRIVILEGES;
Ressources
- php.net
- Oracle
- INSTALLATION ET CONFIGURATION D'UN SERVEUR WEB APACHE 2.2, PHP 5, MYSQL 5.0 ET PHPMYADMIN POUR WINDOWS par giminik
- PHP 5.3 : Compilation et Installation sur une vmware par pascal-martin
- MySQL native driver for PHP - mysqlnd
- Installing the oci8 library for PHP 5 on Ubuntu 8.04 / 8.10
- Blog de REMI
- Compiling and Enabling GD in PHP 4.3
php-5.3.0RC2 ./configure --help
Usage: configure [options] [host] Options: [defaults in brackets after descriptions] Configuration: --cache-file=FILE cache test results in FILE --help print this message --no-create do not create output files --quiet, --silent do not print `checking...' messages --version print the version of autoconf that created configure Directory and file names: --prefix=PREFIX install architecture-independent files in PREFIX [/usr/local] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [same as prefix] --bindir=DIR user executables in DIR [EPREFIX/bin] --sbindir=DIR system admin executables in DIR [EPREFIX/sbin] --libexecdir=DIR program executables in DIR [EPREFIX/libexec] --datadir=DIR read-only architecture-independent data in DIR [PREFIX/share] --sysconfdir=DIR read-only single-machine data in DIR [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data in DIR [PREFIX/com] --localstatedir=DIR modifiable single-machine data in DIR [PREFIX/var] --libdir=DIR object code libraries in DIR [EPREFIX/lib] --includedir=DIR C header files in DIR [PREFIX/include] --oldincludedir=DIR C header files for non-gcc in DIR [/usr/include] --infodir=DIR info documentation in DIR [PREFIX/info] --mandir=DIR man documentation in DIR [PREFIX/man] --srcdir=DIR find the sources in DIR [configure dir or ..] --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names Host type: --build=BUILD configure for building on BUILD [BUILD=HOST] --host=HOST configure for HOST [guessed] --target=TARGET configure for TARGET [TARGET=HOST] Features and packages: --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --x-includes=DIR X include files are in DIR --x-libraries=DIR X library files are in DIR --enable and --with options recognized: --with-libdir=NAME Look for libraries in .../NAME rather than .../lib --disable-rpath Disable passing additional runtime library search paths --enable-re2c-cgoto Enable -g flag to re2c to use computed goto gcc extension SAPI modules: --with-aolserver=DIR Specify path to the installed AOLserver --with-apxs[=FILE] Build shared Apache 1.x module. FILE is the optional pathname to the Apache apxs tool [apxs] --with-apache[=DIR] Build Apache 1.x module. DIR is the top-level Apache build directory [/usr/local/apache] --enable-mod-charset APACHE: Enable transfer tables for mod_charset (Rus Apache) --with-apxs2filter[=FILE] EXPERIMENTAL: Build shared Apache 2.0 Filter module. FILE is the optional pathname to the Apache apxs tool [apxs] --with-apxs2[=FILE] Build shared Apache 2.0 Handler module. FILE is the optional pathname to the Apache apxs tool [apxs] --with-apache-hooks[=FILE] EXPERIMENTAL: Build shared Apache 1.x module. FILE is the optional pathname to the Apache apxs tool [apxs] --with-apache-hooks-static[=DIR] EXPERIMENTAL: Build Apache 1.x module. DIR is the top-level Apache build directory [/usr/local/apache] --enable-mod-charset APACHE (hooks): Enable transfer tables for mod_charset (Rus Apache) --with-caudium[=DIR] Build PHP as a Pike module for use with Caudium. DIR is the Caudium server dir [/usr/local/caudium/server] --disable-cli Disable building CLI version of PHP (this forces --without-pear) --with-continuity=DIR Build PHP as Continuity Server module. DIR is path to the installed Continuity Server root --enable-embed[=TYPE] EXPERIMENTAL: Enable building of embedded SAPI library TYPE is either 'shared' or 'static'. [TYPE=shared] --with-isapi[=DIR] Build PHP as an ISAPI module for use with Zeus --with-litespeed Build PHP as litespeed module --with-milter[=DIR] Build PHP as Milter application --with-nsapi=DIR Build PHP as NSAPI module for Netscape/iPlanet/Sun Webserver --with-phttpd=DIR Build PHP as phttpd module --with-pi3web[=DIR] Build PHP as Pi3Web module --with-roxen=DIR Build PHP as a Pike module. DIR is the base Roxen directory, normally /usr/local/roxen/server --enable-roxen-zts ROXEN: Build the Roxen module using Zend Thread Safety --with-thttpd=SRCDIR Build PHP as thttpd module --with-tux=MODULEDIR Build PHP as a TUX module (Linux only) --with-webjames=SRCDIR Build PHP as a WebJames module (RISC OS only) --disable-cgi Disable building CGI version of PHP General settings: --enable-gcov Enable GCOV code coverage (requires LTP) - FOR DEVELOPERS ONLY!! --enable-debug Compile with debugging symbols --with-layout=TYPE Set how installed files will be laid out. Type can be either PHP or GNU [PHP] --with-config-file-path=PATH Set the path in which to look for php.ini [PREFIX/lib] --with-config-file-scan-dir=PATH Set the path where to scan for configuration files --enable-safe-mode Enable safe mode by default --with-exec-dir[=DIR] Only allow executables in DIR under safe-mode [/usr/local/php/bin] --enable-sigchild Enable PHP's own SIGCHLD handler --enable-magic-quotes Enable magic quotes by default. --enable-libgcc Enable explicitly linking against libgcc --disable-short-tags Disable the short-form start tag by default --enable-dmalloc Enable dmalloc --disable-ipv6 Disable IPv6 support --enable-fd-setsize Set size of descriptor sets Extensions: --with-EXTENSION=[shared[,PATH]] NOTE: Not all extensions can be build as 'shared'. Example: --with-foobar=shared,/usr/local/foobar/ o Builds the foobar extension as shared extension. o foobar package install prefix is /usr/local/foobar/ --disable-all Disable all extensions which are enabled by default --with-regex=TYPE regex library type: system, php. [TYPE=php] WARNING: Do NOT use unless you know what you are doing! --disable-libxml Disable LIBXML support --with-libxml-dir[=DIR] LIBXML: libxml2 install prefix --with-openssl[=DIR] Include OpenSSL support (requires OpenSSL >= 0.9.6) --with-kerberos[=DIR] OPENSSL: Include Kerberos support --with-pcre-regex=DIR Include Perl Compatible Regular Expressions support. DIR is the PCRE install prefix [BUNDLED] --without-sqlite3[=DIR] Do not include SQLite3 support. DIR is the prefix to SQLite3 installation directory. --with-zlib[=DIR] Include ZLIB support (requires zlib >= 1.0.9) --with-zlib-dir=Define the location of zlib install directory --enable-bcmath Enable bc style precision math functions --with-bz2[=DIR] Include BZip2 support --enable-calendar Enable support for calendar conversion --disable-ctype Disable ctype functions --with-curl[=DIR] Include cURL support --with-curlwrappers Use cURL for url streams --enable-dba Build DBA with bundled modules. To build shared DBA extension use --enable-dba=shared --with-qdbm[=DIR] DBA: QDBM support --with-gdbm[=DIR] DBA: GDBM support --with-ndbm[=DIR] DBA: NDBM support --with-db4[=DIR] DBA: Berkeley DB4 support --with-db3[=DIR] DBA: Berkeley DB3 support --with-db2[=DIR] DBA: Berkeley DB2 support --with-db1[=DIR] DBA: Berkeley DB1 support/emulation --with-dbm[=DIR] DBA: DBM support --without-cdb[=DIR] DBA: CDB support (bundled) --disable-inifile DBA: INI support (bundled) --disable-flatfile DBA: FlatFile support (bundled) --disable-dom Disable DOM support --with-libxml-dir[=DIR] DOM: libxml2 install prefix --with-enchant[=DIR] Include enchant support. GNU Aspell version 1.1.3 or higher required. --enable-exif Enable EXIF (metadata from images) support --disable-fileinfo Disable fileinfo support --disable-filter Disable input filter support --with-pcre-dir FILTER: pcre install prefix --enable-ftp Enable FTP support --with-openssl-dir[=DIR] FTP: openssl install prefix --with-gd[=DIR] Include GD support. DIR is the GD library base install directory [BUNDLED] --with-jpeg-dir[=DIR] GD: Set the path to libjpeg install prefix --with-png-dir[=DIR] GD: Set the path to libpng install prefix --with-zlib-dir[=DIR] GD: Set the path to libz install prefix --with-xpm-dir[=DIR] GD: Set the path to libXpm install prefix --with-freetype-dir[=DIR] GD: Set the path to FreeType 2 install prefix --with-t1lib[=DIR] GD: Include T1lib support. T1lib version >= 5.0.0 required --enable-gd-native-ttf GD: Enable TrueType string function --enable-gd-jis-conv GD: Enable JIS-mapped Japanese font support --with-gettext[=DIR] Include GNU gettext support --with-gmp[=DIR] Include GNU MP support --with-mhash[=DIR] Include mhash support --disable-hash Disable hash support --without-iconv[=DIR] Exclude iconv support --with-imap[=DIR] Include IMAP support. DIR is the c-client install prefix --with-kerberos[=DIR] IMAP: Include Kerberos support. DIR is the Kerberos install prefix --with-imap-ssl[=DIR] IMAP: Include SSL support. DIR is the OpenSSL install prefix --with-interbase[=DIR] Include InterBase support. DIR is the InterBase base install directory [/usr/interbase] --enable-intl Enable internationalization support --with-icu-dir=DIR Specify where ICU libraries and headers can be found --disable-json Disable JavaScript Object Serialization support --with-ldap[=DIR] Include LDAP support --with-ldap-sasl[=DIR] LDAP: Include Cyrus SASL support --enable-mbstring Enable multibyte string support --disable-mbregex MBSTRING: Disable multibyte regex support --disable-mbregex-backtrack MBSTRING: Disable multibyte regex backtrack check --with-libmbfl[=DIR] MBSTRING: Use external libmbfl. DIR is the libmbfl base install directory [BUNDLED] --with-onig[=DIR] MBSTRING: Use external oniguruma. DIR is the oniguruma install prefix. If DIR is not set, the bundled oniguruma will be used --with-mcrypt[=DIR] Include mcrypt support --with-mssql[=DIR] Include MSSQL-DB support. DIR is the FreeTDS home directory [/usr/local/freetds] --with-mysql[=DIR] Include MySQL support. DIR is the MySQL base directory. If mysqlnd is passed as DIR, the MySQL native driver will be used [/usr/local] --with-mysql-sock[=DIR] MySQL/MySQLi/PDO_MYSQL: Location of the MySQL unix socket pointer. If unspecified, the default locations are searched --with-zlib-dir[=DIR] MySQL: Set the path to libz install prefix --with-mysqli[=FILE] Include MySQLi support. FILE is the path to mysql_config. If mysqlnd is passed as FILE, the MySQL native driver will be used [mysql_config] --enable-embedded-mysqli MYSQLi: Enable embedded support Note: Does not work with MySQL native driver! --with-oci8[=DIR] Include Oracle (OCI8) support. DIR defaults to $ORACLE_HOME. Use --with-oci8=instantclient,/path/to/instant/client/lib to use an Oracle Instant Client installation --with-adabas[=DIR] Include Adabas D support [/usr/local] --with-sapdb[=DIR] Include SAP DB support [/usr/local] --with-solid[=DIR] Include Solid support [/usr/local/solid] --with-ibm-db2[=DIR] Include IBM DB2 support [/home/db2inst1/sqllib] --with-ODBCRouter[=DIR] Include ODBCRouter.com support [/usr] --with-empress[=DIR] Include Empress support [$EMPRESSPATH] (Empress Version >= 8.60 required) --with-empress-bcs[=DIR] Include Empress Local Access support [$EMPRESSPATH] (Empress Version >= 8.60 required) --with-birdstep[=DIR] Include Birdstep support [/usr/local/birdstep] --with-custom-odbc[=DIR] Include user defined ODBC support. DIR is ODBC install base directory [/usr/local]. Make sure to define CUSTOM_ODBC_LIBS and have some odbc.h in your include dirs. f.e. you should define following for Sybase SQL Anywhere 5.5.00 on QNX, prior to running this configure script: CPPFLAGS="-DODBC_QNX -DSQLANY_BUG" LDFLAGS=-lunix CUSTOM_ODBC_LIBS="-ldblib -lodbc" --with-iodbc[=DIR] Include iODBC support [/usr/local] --with-esoob[=DIR] Include Easysoft OOB support [/usr/local/easysoft/oob/client] --with-unixODBC[=DIR] Include unixODBC support [/usr/local] --with-dbmaker[=DIR] Include DBMaker support --enable-pcntl Enable pcntl support (CLI/CGI only) --disable-pdo Disable PHP Data Objects support --with-pdo-dblib[=DIR] PDO: DBLIB-DB support. DIR is the FreeTDS home directory --with-pdo-firebird[=DIR] PDO: Firebird support. DIR is the Firebird base install directory [/opt/firebird] --with-pdo-mysql[=DIR] PDO: MySQL support. DIR is the MySQL base directoy If mysqlnd is passed as DIR, the MySQL native native driver will be used [/usr/local] --with-zlib-dir[=DIR] PDO_MySQL: Set the path to libz install prefix --with-pdo-oci[=DIR] PDO: Oracle OCI support. DIR defaults to $ORACLE_HOME. Use --with-pdo-oci=instantclient,prefix,version for an Oracle Instant Client SDK. For Linux with 10.2.0.3 RPMs (for example) use: --with-pdo-oci=instantclient,/usr,10.2.0.3 --with-pdo-odbc=flavour,dir PDO: Support for 'flavour' ODBC driver. include and lib dirs are looked for under 'dir'. 'flavour' can be one of: ibm-db2, iODBC, unixODBC, generic If ',dir' part is omitted, default for the flavour you have selected will used. e.g.: --with-pdo-odbc=unixODBC will check for unixODBC under /usr/local. You may attempt to use an otherwise unsupported driver using the "generic" flavour. The syntax for generic ODBC support is: --with-pdo-odbc=generic,dir,libname,ldflags,cflags When build as shared the extension filename is always pdo_odbc.so --with-pdo-pgsql[=DIR] PDO: PostgreSQL support. DIR is the PostgreSQL base install directory or the path to pg_config --without-pdo-sqlite[=DIR] PDO: sqlite 3 support. DIR is the sqlite base install directory [BUNDLED] --with-pgsql[=DIR] Include PostgreSQL support. DIR is the PostgreSQL base install directory or the path to pg_config --disable-phar Disable phar support --disable-posix Disable POSIX-like functions --with-pspell[=DIR] Include PSPELL support. GNU Aspell version 0.50.0 or higher required --with-libedit[=DIR] Include libedit readline replacement (CLI/CGI only) --with-readline[=DIR] Include readline support (CLI/CGI only) --with-recode[=DIR] Include recode support --disable-session Disable session support --with-mm[=DIR] SESSION: Include mm support for session storage --enable-shmop Enable shmop support --disable-simplexml Disable SimpleXML support --with-libxml-dir=DIR SimpleXML: libxml2 install prefix --with-snmp[=DIR] Include SNMP support --with-openssl-dir[=DIR] SNMP: openssl install prefix --enable-ucd-snmp-hack SNMP: Enable UCD SNMP hack --enable-soap Enable SOAP support --with-libxml-dir=DIR SOAP: libxml2 install prefix --enable-sockets Enable sockets support --without-sqlite=DIR Do not include sqlite support. DIR is the sqlite base install directory [BUNDLED] --enable-sqlite-utf8 SQLite: Enable UTF-8 support for SQLite --with-sybase-ct[=DIR] Include Sybase-CT support. DIR is the Sybase home directory [/home/sybase] --enable-sysvmsg Enable sysvmsg support --enable-sysvsem Enable System V semaphore support --enable-sysvshm Enable the System V shared memory support --with-tidy[=DIR] Include TIDY support --disable-tokenizer Disable tokenizer support --enable-wddx Enable WDDX support --with-libxml-dir=DIR WDDX: libxml2 install prefix --with-libexpat-dir=DIR WDDX: libexpat dir for XMLRPC-EPI (deprecated) --disable-xml Disable XML support --with-libxml-dir=DIR XML: libxml2 install prefix --with-libexpat-dir=DIR XML: libexpat install prefix (deprecated) --disable-xmlreader Disable XMLReader support --with-libxml-dir=DIR XMLReader: libxml2 install prefix --with-xmlrpc[=DIR] Include XMLRPC-EPI support --with-libxml-dir=DIR XMLRPC-EPI: libxml2 install prefix --with-libexpat-dir=DIR XMLRPC-EPI: libexpat dir for XMLRPC-EPI (deprecated) --with-iconv-dir=DIR XMLRPC-EPI: iconv dir for XMLRPC-EPI --disable-xmlwriter Disable XMLWriter support --with-libxml-dir=DIR XMLWriter: libxml2 install prefix --with-xsl[=DIR] Include XSL support. DIR is the libxslt base install directory (libxslt >= 1.1.0 required) --enable-zip Include Zip read/write support --with-zlib-dir[=DIR] ZIP: Set the path to libz install prefix --with-pcre-dir ZIP: pcre install prefix --enable-mysqlnd-threading MYSQLND: Enable threaded fetch. Note: This forces ZTS on! PEAR: --with-pear=DIR Install PEAR in DIR [PREFIX/lib/php] --without-pear Do not install PEAR Zend: --with-zend-vm=TYPE Set virtual machine dispatch method. Type is one of CALL, SWITCH or GOTO [TYPE=CALL] --enable-maintainer-zts Enable thread safety - for code maintainers only!! --disable-inline-optimization If building zend_execute.lo fails, try this switch --enable-zend-multibyte Compile with zend multibyte support TSRM: --with-tsrm-pth[=pth-config] Use GNU Pth --with-tsrm-st Use SGI's State Threads --with-tsrm-pthreads Use POSIX threads (default) Libtool: --enable-shared[=PKGS] build shared libraries [default=yes] --enable-static[=PKGS] build static libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --with-gnu-ld assume the C compiler uses GNU ld [default=no] --disable-libtool-lock avoid locking (might break parallel builds) --with-pic try to use only PIC/non-PIC objects [default=use both] --with-tags[=TAGS] include additional configurations [automatic] --with-gnu-ld assume the C compiler uses GNU ld [default=no]