LoadRunner Web Tours 无法找到 systemPaths
LoadRunner Web Tours cannot locate systemPaths
设置 LoadRunner Web Tours 时遇到问题。在 error.log.
中出现以下错误
Can't locate systemPaths in @INC (@INC contains:
C:/strawberry/perl/site/lib C:/strawberry/perl/vendor/lib
C:/strawberry/perl/lib) at C:/WebTours/cgi-bin/welcome.pl line 16.,
referer: http://localhost:8080/WebTours/
我已经在环境变量路径中设置了这些链接。 systemPaths 不是那里的文件。在 welcome.pl 中,有 "require "systemPaths";"行,我不懂perl。谢谢
[我假设 C:\WebTours\cgi-bin\systemPaths.pm
存在。]
将以下内容添加到 C:\WebTours\cgi-bin\welcome.pl
:
use FindBin qw( $RealBin );
use lib $RealBin;
模块搜索路径 (@INC
) 用于包含当前工作目录 (.
),许多脚本错误地用作脚本所在目录的代理。所以 welcome.pl
是错误的,这在最近版本的 Perl 中变得非常明显。
设置 LoadRunner Web Tours 时遇到问题。在 error.log.
中出现以下错误Can't locate systemPaths in @INC (@INC contains: C:/strawberry/perl/site/lib C:/strawberry/perl/vendor/lib C:/strawberry/perl/lib) at C:/WebTours/cgi-bin/welcome.pl line 16., referer: http://localhost:8080/WebTours/
我已经在环境变量路径中设置了这些链接。 systemPaths 不是那里的文件。在 welcome.pl 中,有 "require "systemPaths";"行,我不懂perl。谢谢
[我假设 C:\WebTours\cgi-bin\systemPaths.pm
存在。]
将以下内容添加到 C:\WebTours\cgi-bin\welcome.pl
:
use FindBin qw( $RealBin );
use lib $RealBin;
模块搜索路径 (@INC
) 用于包含当前工作目录 (.
),许多脚本错误地用作脚本所在目录的代理。所以 welcome.pl
是错误的,这在最近版本的 Perl 中变得非常明显。