Some other background information:
Using the following PHP code:
------------------------------------
<?php
foreach (array('PATH', 'NLS_LANG', 'NLS_NCHAR', 'ORACLE_HOME') as
$env)
{
print $env;
if (isset($_ENV[$env]))
{
print '=' . htmlspecialchars($_ENV[$env]);
}
else
{
print ' not set';
}
print '<br>';
}
?>
I get:
------------------------------------
PATH not set
NLS_LANG not set
NLS_NCHAR not set
ORACLE_HOME not set
Which is somewhat strange since I have set the NLS_LANG in my startup
batch file for Apache 2.2.
I also have set the following environment variables in my system:
NLS_LANG = ...
ORACLE_HOME = (points to my 9i installation folder)
And I also have the TNS_ADMIN which points to my 10g Instant client
folder (which contains my oci.dll, orannzsbb10.dll, oraociei10.dll and
tnsnames.ora which I copied).
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---