|
Comments for: moon19990716
| Message # 1025115: |
|
Date: 04/05/05 11:27
By: Banzai Subject: RE: Problem in connecting Oracle with PHP You have to compile Apache with PHP and Oracle extensions. Here is a quick reference i created when I was setting up mine, ignore the lines that do not apply and remove references to the packages you ignored from apache compilation command line. Apache 2 - PHP 5- Oracle 10g - SSL on AS 3: Download source for every package. SSL: config --prefix=/usr/local/openssl make make test make install ln -s /usr/local/openssl/bin/openssl /usr/local/bin/openssl use the same openssl binary to create keys and certifcates for Apache SSL. Apache: configure --prefix= /usr/local/apache --enable-rewrite --enable-ssl --with-ssl =/usr/local/openssl --enable-so make make install Use openssl command line tool to generate ssl keys and certificates. openssl genrsa -des3 -out ca.key 1024 openssl req -new -x509 -days 10000 -key ca.key -out ca.crt openssl genrsa -des3 -out server.key 1024 backup and encode key so apache will not ask for password on each reboot mv server.key server.key.secure openssl req -new -days 10000 -key server.key -out server.csr sign.sh server.csr mkdir ssl.crt ssl.key cp server.crt ssl.crt cp server.key ssl.key HTTPD='/usr/local/apache/bin/httpd -DSSL' Oracle: Requires Oracle 10g client package installation. During install chose custom to select required libraries for PHP support (assumes remote Oracle server) Independent Products: Oracle Home: oracle10g_webservers_client Sun JDK extensions 9.0.4.0.0 Sun JDK 1.4.2.0.0 Java Runtime Environment 1.4.2.0.0 SSL Required Support Files for InstantClient 10.1.0.2.0 Oracle10g Real Application Clusters Common Files 10.1.0.2.0 JDBC Common Files 10.1.0.2.0 Oracle JDBC Thin Driver for JDK 1.2 10.1.0.2.0 Oracle Display Fonts 9.0.2.0.0 Bali Share 1.1.18.0.0 Oracle JFC Extended Windowing Toolkit 4.2.18.0.0 Documentation Required Support Files 10.1.0.2.0 SQL*Plus Required Support Files 10.1.0.2.0 Oracle Net Required Support Files 10.1.0.2.0 DBJAVA Required Support Files 10.1.0.2.0 regexp 2.1.9.0.0 Oracle Extended Windowing Toolkit 3.4.28.0.0 Oracle JDBC Thin Driver for JDK 1.4 for Instant Client 10.1.0.2.0 JDBC/OCI Common Files for Instant Client 10.1.0.2.0 Oracle Ice Browser 5.2.3.3.0 Oracle Help For Java 4.2.5.0.0a XDK Required Support Files 10.1.0.2.0 RDBMS Required Support Files 10.1.0.2.0 Oracle Client Required Support Files 10.1.0.2.0 Agent Required Support Files 10.1.0.2.0 Precompiler Required Support Files 10.1.0.2.0 Parser Generator Required Support Files 10.1.0.2.0 PL/SQL Required Support Files 10.1.0.2.0 LDAP Required Support Files 10.1.0.2.0 SSL Required Support Files 10.1.0.2.0 Oracle Locale Builder 10.1.0.2.0 JDBC/OCI Common Files 10.1.0.2.0 Platform Required Support Files 10.1.0.2.0 Oracle JDBC Thin Driver for JDK 1.4 10.1.0.2.0 Oracle JDBC/OCI Driver for JDK 1.4 10.1.0.2.0 Oracle JDBC/OCI Interfaces 10.1.0.2.0 Oracle Core Required Support Files 10.1.0.2.0 Oracle Globalization Support 10.1.0.2.0 Required Support Files 10.1.0.2.0 Oracle Code Editor 1.2.1.0.0I SQL*Plus 10.1.0.2.0 Enterprise Manager Minimal Integration 10.1.0.2.0 Beta Oracle UIX 2.1.21.0.0a Enterprise Manager plugin Common Files 10.1.0.2.0 Beta Installation Common Files 10.1.0.2.0 Extended Windowing Toolkit 3.3.18.0.0 Beta Assistant Common Files 10.1.0.2.0 Oracle Net Configuration Assistant 10.1.0.2.0 Oracle Net Manager 10.1.0.2.0 Oracle Net 10.1.0.2.0 Oracle Network Utilities 10.1.0.2.0 Installer SDK Component 10.1.0.2.0 Oracle RAC Required Support Files 10.1.0.2.0 Oracle RAC Required Support Files-HAS 10.1.0.2.0 Oracle One-Off Patch Installer 10.1.0.2.0 Oracle C++ Call Interface for Instant Client 10.1.0.2.0 Precompiler Common Files 10.1.0.2.0 Advanced Queueing (AQ) API 10.1.0.2.0 CSS Single-instance Common Files 10.1.0.2.0 Object Type Translator 10.1.0.2.0 Oracle C++ Call Interface 10.1.0.2.0 *Oracle Call Interface (OCI) 10.1.0.2.0 *Oracle Call Interfaces 10.1.0.2.0 Utilities Common Files 10.1.0.2.0 Character Set Migration Utility 10.1.0.2.0 Recovery Manager 10.1.0.2.0 SQL*Loader 10.1.0.2.0 Export/Import 10.1.0.2.0 Oracle Database Utilities 10.1.0.2.0 Oracle Client 10.1.0.2.0 PHP: configure --with-apache=/usr/local/apache --with-oci8=/oraclient/product/10.1.0/client_1 --with-mysql --with-apxs2=/usr/local/apache/bin/apxs --enable-sigchild |
Previous Message | Next Message |


