Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

SSL Secure Sever

  • 02-01-2007 05: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, Registered Users 2 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