Hi,
We installed TeamSite 6.7.1 SP1 in Solaris 10 and migrated the contents into this server.After the migration,everything seems to be working fine.
We have a scenario,in which the ipl(perl) file is called in an TPL.
So when the user clicks the generate button the ipl is called and connects to the DB to make an entry of the generated HTML file name in the DB.
This work fine when the ipl file is executed through the command promt.But not through the TPL.When i click the generate button it calls the ipl but it fails when the connection to the DB line is executed.
It shows the following error..
"install_driver(Oracle) failed: Can't load '/app/mass1/teamsite/iw-home/iw-perl/site/lib/auto/DBD/Oracle/Oracle.so' for module DBD:

racle: ld.so.1: perl: fatal: libclntsh.so.9.0: open failed: No such file or directory at /app/mass1/teamsite/iw-home/iw-perl/lib/DynaLoader.pm line 229.
at (eval 2) line 3
Compilation failed in require at (eval 2) line 3.
Perhaps a required shared library or dll isn't installed where expected
at /app/mass1/teamsite/iw-home/iw-perl/bin/hottopics.pl line 59"..
I went through the forums and found that we need to set the ENV variables.In my coding i added the lines of code to set the ENV variables in the beginning of the perl file.
BEGIN
{
$ENV{'ORACLE_HOME'}='value1';
$ENV{'LD_LIBRARY_PATH'}='value2';
$ENV{'TNS_ADMIN'}='value3';
};
Still it is not working.
Please suggest to resolve the issue.
Thanks
Vasanthi P