https

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jon Slaughter

    https

    How does one use this? Is it simply setting a variable or calling a function
    or is it completely different from http(i.e., is it transparent? Do I need
    to do anything significantly different than what I do in http?)


    Now what are the cons of using it rather than http? Right now I'm using http
    but wondering if I should use https for any reasons or not.

    Thanks,
    Jon


  • Rami Elomaa

    #2
    Re: https

    Jon Slaughter kirjoitti:
    How does one use this? Is it simply setting a variable or calling a function
    or is it completely different from http(i.e., is it transparent? Do I need
    to do anything significantly different than what I do in http?)
    First of all, this falls into the category of webmastering, not php.
    Now what are the cons of using it rather than http? Right now I'm using http
    but wondering if I should use https for any reasons or not.
    If you have a website that has a forum and image gallery of horses and
    hounds, then http is okay. If your site is an online bank, ecommerce or
    something other that handles confidential client information, then
    switch to https. It's all about security.

    It all starts by getting a certificate and configuring the web server to
    handle it. In php you don't do anything to enable https, the server
    takes care of that. In php you can just test wether it's http or https,
    that's all.

    --
    Rami.Elomaa@gma il.com

    "Wikipedia on vähän niinq internetin raamattu, kukaan ei pohjimmiltaan
    usko siihen ja kukaan ei tiedä mikä pitää paikkansa." -- z00ze

    Comment

    • Ivan Marsh

      #3
      Re: https

      On Fri, 01 Jun 2007 17:05:24 +0000, Jon Slaughter wrote:
      How does one use this? Is it simply setting a variable or calling a
      function or is it completely different from http(i.e., is it
      transparent? Do I need to do anything significantly different than what
      I do in http?)
      https is a webserver configuration issue. There is no difference in your
      code.
      Now what are the cons of using it rather than http? Right now I'm using
      http but wondering if I should use https for any reasons or not.
      https transfers traffic over an encrypted connection to protect data from
      sniffing. It is slightly slower, but any time you're transferring personal
      information, passwords, credit card data, etc... it should be done over
      https.

      Comment

      • Jon Slaughter

        #4
        Re: https


        "Ivan Marsh" <annoyed@you.no wwrote in message
        news:pan.2007.0 6.01.17.25.48.7 09051@you.now.. .
        On Fri, 01 Jun 2007 17:05:24 +0000, Jon Slaughter wrote:
        >
        >How does one use this? Is it simply setting a variable or calling a
        >function or is it completely different from http(i.e., is it
        >transparent? Do I need to do anything significantly different than what
        >I do in http?)
        >
        https is a webserver configuration issue. There is no difference in your
        code.
        >
        ok... thanks. Thats all I needed to know ;)

        Jon


        Comment

        Working...