Difference between revisions of "PHP"
Line 34: | Line 34: | ||
* [[OpenLDAP]] | * [[OpenLDAP]] | ||
* [[Mysql]] | * [[Mysql]] | ||
+ | |||
+ | ---- | ||
+ | |||
+ | == Configuration Information == | ||
+ | |||
+ | See '''./configure --help''' for more configuration options. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | == Non-Multilib == | ||
+ | |||
+ | Compile the package: | ||
+ | |||
+ | ./configure --prefix=/usr --sysconfdir=/etc/php --libdir=/usr/lib --localstatedir=/var --with-apxs2=/usr/sbin/apxs --with-mysql | ||
+ | make | ||
+ | |||
+ | Install the package | ||
+ | |||
+ | make install && | ||
+ | |||
+ | |||
+ | NOTE: NOT FINISHED YET! PLEASE WATCH OUT! | ||
+ | chown -v root:root /usr/lib/apache/httpd.exp \ | ||
+ | /usr/sbin/{apxs,apachectl,dbmmanage,envvars{,-std}} \ | ||
+ | /usr/share/man/man1/{dbmmanage,ht{dbm,digest,passwd}}.1 \ | ||
+ | /usr/share/man/man8/{ab,apachectl,apxs,htcacheclean,httpd}.8 \ | ||
+ | /usr/share/man/man8/{logresolve,rotatelogs,suexec}.8 && | ||
+ | chown -Rv apache:apache /srv/www |
Revision as of 12:50, 27 February 2007
Download Source: http://de.php.net/get/php-5.2.1.tar.bz2/from/a/mirror |
Contents
Introductin to PHP
PHP is a widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML.
PHP has MANY options that can be used. please refer to the ./configure --help script and see whats possible.
Warning:
The PHP Developer team means:
"We do not recommend using a threaded MPM in production with Apache2. Use the prefork MPM instead, or use Apache1. For information on why, read the related FAQ entry on using Apache2 with a threaded MPM"[1]"
Dependencies
Required
Optional
Configuration Information
See ./configure --help for more configuration options.
Non-Multilib
Compile the package:
./configure --prefix=/usr --sysconfdir=/etc/php --libdir=/usr/lib --localstatedir=/var --with-apxs2=/usr/sbin/apxs --with-mysql
make
Install the package
make install &&
NOTE: NOT FINISHED YET! PLEASE WATCH OUT!
chown -v root:root /usr/lib/apache/httpd.exp \ /usr/sbin/{apxs,apachectl,dbmmanage,envvars{,-std}} \ /usr/share/man/man1/{dbmmanage,ht{dbm,digest,passwd}}.1 \ /usr/share/man/man8/{ab,apachectl,apxs,htcacheclean,httpd}.8 \ /usr/share/man/man8/{logresolve,rotatelogs,suexec}.8 && chown -Rv apache:apache /srv/www