Quote from: davidm at Nov 17, 2005, 02:46 AM
Don’t know if the https settting does something, but if your website is running https, wouldn’t that mean it’s harder to intercept the encrypted password, since the http request is encrypted too ?
It does, but (and someone correct me if I’m wrong) even though that is great for requests involving logging in or sending a credit card, it’s not so wonderful if applied to an entire site. Necessary in some cases, but not optimal.
I believe the best-case situation is to have the pages involved in the encrypted requests in a secure HTTPS-specific directory, separate from your public HTTP pages that are meant to be served quickly, without the performance degradation associated with SSL encryption. This is because with HTTPS, the entire request/response transaction is encrypted, rather than data elements that have been identified as requiring encryption.
That said, I’m not sure how we could handle something like this with MODx, but it does offer some flexibility for site admins who allow HTTP and HTTPS access to the same content, giving their visitors a choice of using HTTPS communication on whatever pages they choose to. In this scenario, it is still a useful security option.