[PHP] installing php with apache rpm (rh linux 7.2)???

2001-12-27 Thread Duane Douglas

hi gang!

i have an apache rpm installed.  stuff will break if i uninstall it.  how 
do i install php to work with it?

tia

Duane Douglas
ASP / SQL Server Tutoring and Training


-- 
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]




Re: [PHP] installing php with apache rpm (rh linux 7.2)???

2001-12-27 Thread Brian Clark

* Duane Douglas ([EMAIL PROTECTED]) [Dec 27. 2001 13:24]:

 i have an apache rpm installed.  stuff will break if i uninstall it.  how 
 do i install php to work with it?

You can download the source tarball from php.net. Then configure it
--with-apxs to have it build an Apache DSO module. 

http://www.php.net/do_download.php?download_file=php-4.1.1.tar.gz

Download it, unpack it (tar -xzf php-4.1.1.tar.gz), and make your way 
through the INSTALL and README files.

tar -xzf php-4.1.1.tar.gz
cd php-4.1.1
less README
less INSTALL

Just remember, you want a DSO install because you don't want to fool
with Apache source, since you already have Apache installed via RPM.

IN the INSTALL file, start where it states:

QUICK INSTALL (DSO)

-- 
Brian Clark | Avoiding the general public since 1805!
Fingerprint: 07CE FA37 8DF6 A109 8119 076B B5A2 E5FB E4D0 C7C8
We are all fugitives of our own fate.


-- 
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]