in reply to Downloading with Perl?

How about creating your own authentication system using your web server? Just put your files in some protected directory that requires authentication. Then you can add and revoke access as needed.

Additionally, you won't have to give someone a script to download the files - they can just use their web browser. But if you need to script it, you can use LWP or wget or curl or ... In any case, the credentials you put in the script will only give access to the files in the protected directory.

Replies are listed 'Best First'.
Re^2: Downloading with Perl?
by Anonymous Monk on Jun 05, 2008 at 12:08 UTC
    Is it possible to get the files without supplying the credentials as if I were getting them from the server via a hyperlink?