CGI: Execute a perl script inside another perl script

G

Gunnar Hjalmarsson

Gunnar said:
Maybe it doesn't acknowledge relative paths in @INC.

Or more likely, since '.' represents the current working directory, the
working directory is some other directory but the one where the scripts
are located.
Then, to prevent that the users need to edit the main script, you can
try to manipulate @INC like this instead:

use lib $0 =~ /(.+)[\\\/]/;

(Or you can use the FindBin module, even if it isn't mod_perl or
taint safe.)

Optionally you can try:

chdir '.';
do 'y.pl' or die $!;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top