28 April 2004

##Create User On Oracle##
create user user_name identified by user_pass default tablespace users temporary tablespace temp;
grant connect, resource to user_name;
grant imp_full_database to user_name;
grant exp_full_database to user_name;
grant dba to user_name;

##PHP with Oracle###
./configure --with-apxs2 --enable-track-vars --with-mysql --with-pgsql --with-jpeg --with-png --enable-xml --with-zlib --with-oci8=/opt/oracle/product/9.2.0 -with-oracle=/opt/oracle/product/9.2.0 --enable-sigchild --enable-sockets