NOTE !! mkdir Apache cd Apache dpkg-query -l | grep apache2 | grep ^ii | cut -f3 -d" " dpkg-repack apache2 apache2-common apache2-mpm-prefork apache2-utils libapache2-mod-fastcgi libapache2-mod-php5 libapache2-mod-python
http://httpd.apache.org/docs/2.0/mod/core.html#adddefaultcharset
http://www.hypexr.org/phpbb.php Setting up a Linux Server for phpBB :: phpBB tutorial
Open your .httpd.conf file (location varies depending on installation method). Customize the variables in this file to suit your needs and add:
#Add where the other LoadModule lines are
#Make sure this line exist only once
LoadModule php4_module /"PATH_TO_apache"/modules/libphp4.so
#Find DirectoryIndex and add index.php
DirectoryIndex index.php index.html
AddType application/x-httpd-php .php .php4
AddType application/x-httpd-php-source .phps
Open up /"PATH_TO_php.ini"/php.ini and add or uncomment:
extension=mysql.so
Also have "safe_mode = off" in your php.ini file. The only reason to have it set to on is in a shared hosting environment.
Restart Apache:
$ /etc/init.d/httpd start
http://buecher.lingoworld.de/apache2/showdir.php?id=757&o=date
VirtualHost unter WAMP Beschreibung von der Konfiguration der Komponenten
http://www.bananajoe.de/virtual_apache.html
Bsp: Apache2: NameVirtualHost 192.168.0.9 <VirtualHost dummy.bananajoe.de> ServerAdmin webmaster@bananajoe.de ServerName dummy.bananajoe.de DocumentRoot "C:/Programme/Apache Group/Apache2/htdocs/bananajoe" ErrorLog "C:/Programme/Apache Group/Apache2/htdocs/bananajoe/logs/error_log </VirtualHost>
http://buecher.lingoworld.de/apache2/showdir.php?id=757&o=date
Wiki/Linux/Apache2 (last modified 2008-11-04 07:00:03)