reconfiguring PHP with Oracle8i

wxdqz

New Member
Hello,

I need to reconfigure PHP with Oracle8i because when I test a connection string I'm getting the following error.

Fatal error: Call to undefined function: ocilogon()

When I originally installed PHP I installed with Mysql and Apache w/SSL.

Here are my install notes:

# cd apache_1.3.x
# ./configure --prefix=/usr/local/apache

# cd ../php-4.0.x
# ./configure --with-mysql --with-apache=../apache_1.3.x --with-oci8=/usr/local/oracle/8i/..so on ...

That is my default directory (ORACLE_HOME).

# make
# make install

# cp php.ini-dist /usr/local/lib/php.ini

# cd openssl-0.9.x
# make
# make test
# make install
# cd..

# cd mod_ssl-2.6.4-1.3.12
# ./configure --with-apache=../apache_1.3.x
# cd..

# cd apache_1.3.x
# SSL_BASE=../openssl-0.9.x ./configure --enable-module=ssl --activate-module=src/modules/php4/libphp4.a --prefix=/usr/local/apache

# make
# make certificate
# make install

* uncomment 'AddType' line in httpd.conf

I would like if someone could test this for me since I am unable to do this because I first have to install Oracle8i. If anyone sees anything wrong with my notes please reply me.

Thank you.
 
Back
Top