in reply to Re: Re: Re: Adding a password to Zip compression ?
in thread Adding a password to Zip compression ?

Hi,

I always understood that all SSL connections are encrypted including the sending/receiving of logins and passwords. It will be as secure as SSL.

Sorry, I didn't explain it too well. At present, the user does have a login (.htacess,etc), and he accesses it like this

http://example.com/userloginpath

which, as I understand, still sends the user/pwd across the 'net as plain text. What I would like to do is to _force_ it to be

https://example.com/userloginpath

.. although he doesn't have SSL, I do, so using mine on a shared basis

https://mydomain/example.com/userloginpath

Peter

  • Comment on Re: Re: Re: Re: Adding a password to Zip compression ?

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: Adding a password to Zip compression ?
by CountZero (Bishop) on Jan 06, 2004 at 07:43 UTC
    Perhaps a job for the mod_rewrite engine of Apache? I think (without having tried it yet) that you can force such redirections by writing some rewriting rules.

    CountZero

    "If you have four groups working on a compiler, you'll get a 4-pass compiler." - Conway's Law

      Perhaps a job for the mod_rewrite engine of Apache? I think (without having tried it yet) that you can force such redirections by writing some rewriting rules.

      Yes, could be. Although I don't have access to, what's the file called, ..httpd.conf or something like that, I have been able to use .htacess and mod_rewrite successfully, so I will find out how to "force" that. :)

      Peter