tags:

views:

79

answers:

1

We have two machines in our office that we are using as web servers. Both are running Perl 5.10.0. We installed an open source ticketing system, OTRS, and on one machine it runs perfectly fine but on the other we are receiving the error

Insecure dependency in require while running with -T switch.

I'm mystified as to why having two identical Perl installs on both machines has one running fine and the other not. I am wondering if this is something at the system level maybe? The software installs are identical. Any advice would be appreciated. Nikki

+1  A: 

You can read about Perl's taint mode. I suspect taint mode is enabled on one machine and it is not enabled on the other.

Sinan Ünür