Results 1 to 14 of 14

Thread: creating login and password tutorials

  1. #1
    Junior Member
    Join Date
    May 2008
    Age
    41
    Posts
    33
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    195
    Reputation
    10

    Default creating login and password tutorials

    Hi, thank you for reading my post, i am after a easy to follow tutorial on how to create a login and password for a website i am designing, or intermediate tutorial will be ok too. I have searched in google but they are all way to advanced, also have searched the threads in here to no availability, i am currently using dreamweaver to create the website, if there is an easier software to use for the login section i have no problems changing.

    Thank you
    Matt



Look Here ->
  • #2
    Senior Member
    Philquad's Avatar
    Join Date
    Jan 2008
    Location
    nelson bay
    Age
    55
    Posts
    3,872
    Thanks
    192
    Thanked 1,305 Times in 783 Posts
    Rep Power
    665
    Reputation
    16938

    Default

    you can simply password the pages or site via cpanel of the hosting
    under password protect
    https://www.facebook.com/philquad68

  • #3
    Junior Member
    Join Date
    May 2008
    Age
    41
    Posts
    33
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    195
    Reputation
    10

    Default

    Hi thank you for the reply, i am more after a members login section. i need the general site to be freely browsed and members to access other sections.

  • #4
    Senior Member
    Philquad's Avatar
    Join Date
    Jan 2008
    Location
    nelson bay
    Age
    55
    Posts
    3,872
    Thanks
    192
    Thanked 1,305 Times in 783 Posts
    Rep Power
    665
    Reputation
    16938

    Default

    like a forum?
    there sorta setup for that.
    but simply you could have certain general pages, and a link to members section,upon which you would need a user/pass to access.
    https://www.facebook.com/philquad68

  • #5
    Junior Member
    Join Date
    May 2008
    Age
    41
    Posts
    33
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    195
    Reputation
    10

    Default

    it is a golfclub website that i am designing, i need it to be as professional as possible and would prefere to have the signin page, yes like a forum, where we have to sign into here to create a post, but i am not after a forum.

  • #6
    Senior Member Decapper's Avatar
    Join Date
    Jan 2008
    Location
    Your mothers house
    Age
    52
    Posts
    1,026
    Thanks
    119
    Thanked 127 Times in 79 Posts
    Rep Power
    245
    Reputation
    617

    Default

    Can't you just use cpanel for the webpages that you want blocked... Then once signed in you can travel freely back and forth from password protect to non password protected areas... until browser is closed. Only draw back is you will have one login and password and you will have to create them manually

    Other than that I can not see an easier way.. Because to store users name for login you will need a database. Which would mean server side programming. Php or the such..
    For wholesale prices on your wedding gifts visit

    Priceless Weddings

  • #7
    Senior Member Decapper's Avatar
    Join Date
    Jan 2008
    Location
    Your mothers house
    Age
    52
    Posts
    1,026
    Thanks
    119
    Thanked 127 Times in 79 Posts
    Rep Power
    245
    Reputation
    617

    Default

    You could use which would allow you to have login. But its no easy feat setting up
    For wholesale prices on your wedding gifts visit

    Priceless Weddings

  • #8
    Senior Member
    Philquad's Avatar
    Join Date
    Jan 2008
    Location
    nelson bay
    Age
    55
    Posts
    3,872
    Thanks
    192
    Thanked 1,305 Times in 783 Posts
    Rep Power
    665
    Reputation
    16938

    Default

    he dont want a shop i dont think
    either forum, wordpress or
    make ya site, get a freelancer to create a custom login.
    i know a good one if u need
    https://www.facebook.com/philquad68

  • #9
    Member PunX0r's Avatar
    Join Date
    Jan 2008
    Location
    Tha Gong
    Posts
    349
    Thanks
    4
    Thanked 2 Times in 2 Posts
    Rep Power
    210
    Reputation
    18

    Default

    What about wordpress, you can set it that you need to login to post comments

  • #10
    Senior Member Decapper's Avatar
    Join Date
    Jan 2008
    Location
    Your mothers house
    Age
    52
    Posts
    1,026
    Thanks
    119
    Thanked 127 Times in 79 Posts
    Rep Power
    245
    Reputation
    617

    Default

    Not just used as shop... Can be used for other things with the amount of differnt plugins that are out there.. Just depends if you want to do the hard yards which sounds like a no in this case
    For wholesale prices on your wedding gifts visit

    Priceless Weddings

  • #11
    Junior Member
    Join Date
    Apr 2008
    Age
    49
    Posts
    158
    Thanks
    7
    Thanked 3 Times in 3 Posts
    Rep Power
    201
    Reputation
    22

    Default

    Quote Originally Posted by Decapper View Post
    Can't you just use cpanel for the webpages that you want blocked... Then once signed in you can travel freely back and forth from password protect to non password protected areas... until browser is closed. Only draw back is you will have one login and password and you will have to create them manually
    My control panel (plesk) allows multiple users (login/passwords) to be able to login to a page, it is not restricted to one user per page.
    My site is hosted on a microsoft server, so maybe this strict 1:1 user to page ratio only exists on linux cpanel?

    If thats the case, change hosting company

  • #12
    Junior Member
    Join Date
    Mar 2009
    Age
    39
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0
    Reputation
    10

    Default login

    there's no "easy" way to create a login page, they all require the use of a server side technology for the authentication e.g. php/mysql.

    the basic structure involves:

    1. user joining - script for validation of fields, script for securely posting of information to table on server.

    2. user logging in - secure script for login and creating a session or cookies

    3. script for controlling access - an include script for every member page to control who's allowed in.

    4. a script for logging out.

    5. a script for changing password.

    the good thing is, once you've created a generic login script, you can pretty much apply to any site.

    is your server a LAMP server.... is it running PHP/MYSQL?

  • #13
    Senior Member
    Philquad's Avatar
    Join Date
    Jan 2008
    Location
    nelson bay
    Age
    55
    Posts
    3,872
    Thanks
    192
    Thanked 1,305 Times in 783 Posts
    Rep Power
    665
    Reputation
    16938

    Default

    pays to check post dates sometimes.
    op hasnt been on for 4 months
    https://www.facebook.com/philquad68

  • #14
    Junior Member
    Join Date
    Mar 2009
    Age
    39
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0
    Reputation
    10

    Default thanks

    thanks for that,

    although it couldn't of hurt too much. now you've read the post you're all boffed up on login script structure! haha

  • Bookmarks

    Posting Permissions

    • You may not post new threads
    • You may not post replies
    • You may not post attachments
    • You may not edit your posts
    •