I try it anothe one but i can't it.
I install oci8 to PHP but i have problems to connect.
This is the steps:
1. STEP
apt-get install php5-common php5 php5-dev libapache2-mod-php5 php5-cli
2. STEP
apt-get install build-essential php-pear
3. STEP
apt-get install libaio1
4. STEP - Download SDK an basic from:
www.oracle.com/technology/software/tech/...antclient/index.html
5. STEP
mkdir /opt/oracle
6. STEP
mv /ruta/archivos/zip/Basic.zip /opt/oracle
mv /ruta/archivos/zip/SDK.zip /opt/oracle
7. STEP
cd /opt/oracle
8. STEP
unzip \*.zip
9. STEP
mv instantclient_11_2 instantclient
10. STEP
cd instantclient
11. STEP
ln -s libclntsh.so.11.1 libclntsh.so
ln -s libocci.so.11.1 libocci.so
12. STEP
mkdir /opt/oracle/src
13. Download oci8-1.4.1.tgz from
pecl.php.net/package/oci8
cd /opt/oracle/src
14. STEP
tar xzvf /opt/oracle/src/oci8-1.2.4.tgz
15. STEP
cd /opt/oracle/src/oci8-1.2.4
phpize
16. STEP
export ORACLE_HOME=/opt/oracle/instantclient
17. STEP
./configure --with-oci8=share,instantclient,/opt/oracle/instantclient
18. STEP
make
19. STEP
make install
20. add this line in /etc/php5/apache2/php.ini
extension=oci8.so
21 STEP:
echo /opt/oracle/instantclient >> /etc/ld.so.conf
ldconfig
22. STEP
/etc/init.d/apache2 restart
23. Verify in backend of joomla in php info OCI8 or create a phpinfo.php.
<?php
phpinfo();
?>
this is rigth??