Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

$ ./configure --help $ tar xvfz apr-util-1.5.2.tar.gz $ mv apr-util-1.5.2 httpd-2.4.4/srclib/apr-util $ tar xvfz pcre-8.32.gz $ mv pcre-8.32 httpd-2.4.4/srclib/pcre $ .

/configure --prefix=/wwwroot --enable-so --with-included-apr --with-pcre --enable-so (default) tells configure to enable module so, which allows Apache t o load shared modules. $ make $ make install $ tar xvfz php-5.4.15.tar.gz $ ./configure --prefix=/wwwroot/php --with-apxs2=/wwwroot/bin/apxs --with-config -file-path=/wwwroot/php --with-mysql $ make $ make install Add "LoadModule php5_module modules/libphp5.so" into httpd.conf "AddType application/x-httpd-php .php"

./configure --prefix=/wwwroot --enable-so --with-included-apr --with-pcre --enab le-authnz-ldap --enable-ldap --with-ldap --enable-ssl --enable-ssl-staticlib-dep s

You might also like