How to? - part of the site over ssl, other part not
        Posted  
        
            by spirytus
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by spirytus
        
        
        
        Published on 2010-05-11T23:28:48Z
        Indexed on 
            2010/05/11
            23:34 UTC
        
        
        Read the original article
        Hit count: 267
        
What is common practice for coding web applications where part of the site has to be secured (e.g. checkout section) and part not necessarily, lets say homepage. As far as I know sharing sessions in between http and https parts of the site is not easily possible (or is it?). What would be common approach if I wanted to display on http page like homepage, shopping cart data (items) that users ordered on https pages? How those two parts of the site would communicate if necessary? Also isn't it security flaw in popular shopping carts as it seems that many of these have only checkout pages secured (ssl) and the rest not? I'm using php if it makes any difference.
© Stack Overflow or respective owner