http://qs321.pair.com?node_id=236318


in reply to Re: Encrypt Data
in thread Encrypt Data

Yes you got it that's exactly what i am trying to do. Sorry, for my short info. I didn't quiet get what you wrote. Can you please include a more thorough explanation.
Thank you.

Replies are listed 'Best First'.
Re: Re: Re: Encrypt Data
by fuzzyping (Chaplain) on Feb 18, 2003 at 17:50 UTC
    Install mod_ssl on your Apache webserver. Configure the directory that your script is in to use SSL with the SSLRequireSSL directive. Here is a sample block from my server:
    <Directory "/var/www/perl"> Options FollowSymLinks AllowOverride All SSLRequireSSL Order allow,deny Allow from all AuthType Basic AuthName "Sample encrypted stuff" AuthUserFile conf/users Require valid-user </Directory>
    As you can see, I'm using basic (plaintext) authentication using the htpasswd utility and password file. Hope this helps.

    -fp
      I am not on Apache, I am using Microsoft's IIS. I am running Windows NT server, and i am not using any htpasswd or passoword files as you mentioned. Is it the same for IIS?
      Also mod_ssl i should install it through MSDOS as such ppm install mod_ssl but i need to have a mod_ssl.pm file. Right?

      Thanks a lot, appreciate very much.
        Sorry, I don't do Microsoft. You're on your own. :(

        -fp