On Thu, 14 Oct 2004, Jeff Herbeck wrote:
> getstore("$URL", "/var/www/html/$remote_user/");
LWP::Simple's getstore() method takes a URL and a file as arguments.
You've given it a URL and a directory.
Try something like this:
getstore("$URL", "/var/www/html/$remote_user/foo");
(Note that it may seem obvious to use $URL as the filename, but this
won't work well -- urls are full of slashes, which will look like a
nested directory tree to your script. Maybe something like this:
my ($file = $URL) =~ s|/|_|g;
getstore( $URL, "/var/www/html/$remote_user/$file );
will work better...
--
Chris Devers
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>