hello? Groups.
I have 2 web servers and 3 oracle database servers.
if I try to connect DB server with SQL*PLUS commend, connect successfully.
When i try to connect DB server with php script,
one server has error, ORA-01017, to 2 oracle databases. ( 1 database is connected successfully )
and the other server is connected successfully to all databses .
Two web server is same in httpd.conf and php.ini.
php script is like this.
$connect=OciLogOn("ID1","PW1","DB1 name") or die("error");
ID1 , PW1 , DB1 name is right and succesfully connected with SQL*PLUS commend !
and other script >>
$connect=OciLogOn("ID2","PW2","DB2 name") or die("error");
executed successfully!!
I don't know what is problem!
Groups, please help me!!