好了,我有OCI,了Apache,PHP和SUSE这个可怕的问题。 首先,版本:
PHP 5.3.15 (cli)
Apache/2.2.22 (Linux/SUSE)
OCI8 1.4.9
SUSE 12.2 32 bit
Oracle client 10.2.0.4
问题
我真的很简单的PHP文件:
<?php
error_reporting(E_ALL);
ini_set('display_errors', '1');
oci_connect('user', 'passwd', 'host/sid');
?>
当我从命令行中运行它,它执行罚款:
machine:~ # php oci.php
machine:~ #
但是,当我在浏览器中运行它,它给了我:
Warning: oci_connect() [function.oci-connect]: OCIEnvNlsCreate() failed. There is something wrong with your system - please check that ORACLE_HOME and LD_LIBRARY_PATH are set and point to the right directories
Apache的配置
我一直在努力,现在这个问题有一段时间了,我敢肯定我的Apache配置是正确的。
我导出所有必需的变量任何Apache进程开始之前 -我加
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/path/to/oracle/home/lib; export LD_LIBRARY_PATH
ORACLE_HOME=/path/to/oracle/home; export ORACLE_HOME
TNS_ADMIN=/path/to/oracle/home/network/admin; export TNS_ADMIN
NLS_LANG=POLISH_POLAND.EE8MSWIN1250; export NLS_LANG
在年初/etc/init.d/apache2
脚本(由我启动apache /etc/init.d/apache2 start
)。
从Apache的运行wwwrun
用户,是谁在oinstall
和dba
组:
machine:~ # cat /etc/apache2/uid.conf
User wwwrun
Group www
machine:~ # id wwwrun
uid=30(wwwrun) gid=8(www) groups=8(www),113(oinstall),114(dba)
machine:~ # l $ORACLE_HOME
total 216
drwxr-xr-x 48 oracle oinstall 4096 Jan 25 17:07 ./
drwxrwxr-x 3 oracle oinstall 4096 Jan 25 17:01 ../
...
machine:~ #
可能的问题
我没有任何的环境变量Environment
中部分phpinfo();
输出 - 可这是什么问题? 如果是的话,我怎么能解决这个问题? 它是某种安全问题的? 我读过有关这样的问题启用SELinux的,但我没有它,我的防火墙是关闭的。
解?
任何帮助将不胜感激!