Jonathan Buchanan wrote:

I am uploading files to a HTTPS server using a perl script. Everything works fine when running the script from the command line.

However, when I call the script via a browser, I get the error:

501 Protocol scheme 'https' is not supported (Crypt::SSLeay not
installed)


The web server is configured on the same system as the perl script.


To see what the real error is, try adding this to your perl script:

use Crypt::SSLeay;

Then when it fails to load the library, you will know why better.
Make sure to read the README ( perldoc Crypt::SSLeay ) to resolve
more common loading errors with Crypt::SSLeay on various platforms,
as it could be a shared library loading issue for example.

Regards,

Josh

________________________________________________________________________
Josh Chamas, Founder    | NodeWorks - http://www.nodeworks.com
Chamas Enterprises Inc. | NodeWorks Directory - http://dir.nodeworks.com
http://www.chamas.com   | Apache::ASP - http://www.apache-asp.org



Reply via email to