September 2010
M T W T F S S
« Apr    
 12345
6789101112
13141516171819
20212223242526
27282930  

Traditional Way for Installing PHP(OCI enabled) + Apache on Linux

Actually, the traditional way is compiling source from scratch. Below is information from OTN: Installing Apache, PHP, JDeveloper, and the PHP Extension on Linux
Apache 1.3

Login as Oracle user.
Copy/download apache_1.3.31.tar.gz
tar -zxf apache_1.3.31.tar.gz
cd apache_1.3.31
Configure:
./configure –enable-module=so –prefix=$HOME/apache –with-port=8888

Build: make
Install: make install
Start Apache: $HOME/apache/bin/apachectl start
Go to a browser and [...]