first you have to unzip your sources:
gzip -vd apache*.tar.gz | tar -vxf apache*.tar
gzip -vd php*.tar.gz | tar -vxf php*.tar
gzip -vd mysql*.tar.gz | tar -vxf mysql*.tar
then
cd apache..
./configure --prefix=/your/path/www
cd ..
cd mysql...
./configure --prefix=/usr/local/mysql
make | make install
./mysql_install_db
cd ..
cd php..
./configure --with-apache=.../apache... --with-mysql=/usr/local/mysql
--with-imap=/...imap --enable-track-vars
make | make install
cd ..
cd apache..
./configure --activate-module=src/modules/php4/libphp4.a
make | make install
and thats all...
now have fun...
On Tue, 14 Aug 2001, Roman wrote:
> Help me. I have RED HAT Linux 7.0 and I want install Apache web server with
> php and mysql support. How ?
>
> I have : apache_1.3.20.tar.gz
> php-4.0.6.tar.gz
> mysql-3.23.38.tar.gz
>
> thanx
>
>
> roman
>
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]