Quote:
Originally posted by sdiva
in my script ive typed (one example of many variations ive tried):
require 5;
use 'LWP::Simple qw(/home/virtual/sbcadmin/home/httpd/cgi-bin/myperl/LWP/Simple.pm);
SIDE NOTE: my server info: Red Hat Linux release 6.0 (Hedwig)
Kernel 2.2.12-20ensim on an i686
is this simply something i cannot do without admin and root privileges or is my syntax incorrect somewhere?
thanks in advance,
sdiva [/b]
|
try:
require 5; #
perl 5 or >
use lib '/home/virtual/sbcadmin/home/httpd/cgi-bin/myperl';
use LWP::Simple;