PHP + Apache + Oracle Installation

Source: Internet
Author: User

Install Apache

./Configure -- prefix =/opt/apache2 -- enable-module = so

Compile PHP

. /Configure -- prefix =/myhome/php-5 -- With-Gd -- With-JPEG-Dir =/usr -- With-zlib-Dir =/usr/local --- PNG-Dir =/usr/local \
-- With-apxs2 =/myhome/apache2/bin/apxs -- with-oci8 =/Oracle/product/10.2.0/db_7

Modify the Apache configuration file httpd. conf

Code

  Loadmodule php5_module modules  /  Libphp5.so
< Ifmodule mod_php5.c >
Addtype Application / X - Httpd - PHP. php
Php_admin_flag magic_quotes_gpc off
Php_admin_flag magic_quotes_runtime off
</ Ifmodule >

 

 

Test Database Connection
 

Code

<? PHP
  $ SQL  =  "  Select * From wh_hosts  "  ;
$ Db_conn = Oci_connect ( "Sys " , "Tiger " , "Sid " );
$ Stmt = Ociparse ($ db_conn, $ SQL );
Ociexecute ($ stmt );
$ Nrows = Oci_fetch_all ($ stmt, $ results );
Oci_free_statement ($ stmt );
Oci_close ($ db_conn ); ?>

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.