Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

SSL Secure Sever

Options
  • 02-01-2007 6:48pm
    #1
    Closed Accounts Posts: 1,541 ✭✭✭


    Hi .

    I would like to make the login area of my website more secure by means of an SSL protocol (https://).

    Can anyone here give any guidance, links, advice etc in relation to doing this from scratch without any experience or solid info.

    thanks.

    finn.


Comments

  • Closed Accounts Posts: 1,200 ✭✭✭louie


    First you need to get a SSL certificate then depending on the language you use you set the http to https

    example in php:
    [php]
    //change page to secure
    function secure_page() {
    if ( !isset($_SERVER) || strtolower($_SERVER) != 'on' ) {
    header ('Location: https://'.$_SERVER.$_SERVER);
    exit();
    }
    }
    # end when you want to change to https:// just call the function at the
    #top of the page
    secure_page();
    [/php]


  • Registered Users Posts: 2,472 ✭✭✭Sposs


    you also need to have the domain you wish to set it up on, on a dedicated IP, have a look here for more

    http://www.ssl365.com/support/support.html


Advertisement