1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Free PHP Login system

Discussion in 'PHP' started by eamiro, Mar 19, 2009.

  1. #1
    Here is a free PHP login system for you. Easy suitable for any site:

    http://evolt.org/PHP-Login-System-with-Admin-Features

    Enjoy :cool:
     
    eamiro, Mar 19, 2009 IP
  2. Ilyes

    Ilyes Banned

    Messages:
    129
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Nice but very long ...

    PS; Is that website yours ?
     
    Ilyes, Mar 20, 2009 IP
  3. eamiro

    eamiro Well-Known Member

    Messages:
    274
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    123
    #3
    No it isn't
     
    eamiro, Mar 22, 2009 IP
  4. jik34

    jik34 Active Member

    Messages:
    586
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    83
    Digital Goods:
    4
    Articles:
    2
    #4
    I like it because it can be easily integrated into any website, thanks for sharing it for us.

    Cheers.
     
    jik34, Mar 22, 2009 IP
  5. Hannaspice

    Hannaspice Active Member

    Messages:
    77
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    91
    #5
    I dun understand what is "$this->" variable mean?

    Thanks for quick reply.
     
    Last edited: Aug 2, 2009
    Hannaspice, Aug 2, 2009 IP
  6. aladinhw

    aladinhw Active Member

    Messages:
    337
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    68
    #6
    I tried it but I have a problem , I can't see my users passwords. It's crypted or something , this is an example of the passwords I see " b94236876742d440aaf00d2064a02442 " ?!?!?!

    Please help ; I need a way to acces my users account to modify their pages
     
    Last edited: Aug 2, 2009
    aladinhw, Aug 2, 2009 IP
  7. Hannaspice

    Hannaspice Active Member

    Messages:
    77
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    91
    #7
    I think the pasword is: " b94236876742d440aaf00d2064a02442 ", 'cause it got a md5 type.
     
    Hannaspice, Aug 4, 2009 IP
  8. premiumscripts

    premiumscripts Peon

    Messages:
    1,062
    Likes Received:
    48
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Not having access to the passwords is a good thing, you could probably reverse-engineer it though..

    But better would be to do something like this in a new page:

    
    session_start();
    $_SESSION['username'] = $_GET['username'];
    $_SESSION['userid'] = (int) $_GET['userid'];
    
    header('Location: bla'); //bla is the destination url
    
    PHP:
    You would then access that page like so: sessiontakeover.php?username=bla&userid=5 (look in the db for those values)

    Obviously you would have to protect this page so only you, the admin, can execute this.

    Btw, this is untested and might not work.
     
    premiumscripts, Aug 4, 2009 IP
  9. olddocks

    olddocks Notable Member

    Messages:
    3,275
    Likes Received:
    165
    Best Answers:
    0
    Trophy Points:
    215
    #9
    olddocks, Aug 5, 2009 IP
  10. Chemo

    Chemo Peon

    Messages:
    146
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #10
    Hey...look...another *FREE* and *BETTER* authentication system. Let those fools reinvent the wheel and the rest of us professionals will use the standards compliant libraries like PEAR, PECL, ZEND, etc.
     
    Chemo, Aug 5, 2009 IP
  11. premiumscripts

    premiumscripts Peon

    Messages:
    1,062
    Likes Received:
    48
    Best Answers:
    0
    Trophy Points:
    0
    #11
    That's true, always, ALWAYS, look if you find a possible script in PEAR, PECL, or ZEND first. They're better written and more error proof.
     
    premiumscripts, Aug 5, 2009 IP
  12. HivelocityDD

    HivelocityDD Peon

    Messages:
    179
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #12
    Its always better to use simple script instead of going for frameworks for these type of simple tasks like login system.

    Frameworks are always a burden and it will contain loads of unwanted stuff which we will have to include. For a simple application like login system personally I wont prefer frame works.

    But yes they might be more error proof :)

    Thanks friends for giving these links.
     
    HivelocityDD, Aug 8, 2009 IP
  13. Chemo

    Chemo Peon

    Messages:
    146
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #13
    Another option is integration with OpenID which is decentralized and designed for distributed authentication.
     
    Chemo, Aug 9, 2009 IP
  14. nomzz

    nomzz Well-Known Member

    Messages:
    475
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    110
    #14
    i prefer my own open id structure
     
    nomzz, Aug 11, 2009 IP
  15. kblessinggr

    kblessinggr Peon

    Messages:
    539
    Likes Received:
    13
    Best Answers:
    0
    Trophy Points:
    0
    #15
    The login system is apparently designed so that if the database is ever compromised that the user's passwords are not also compromised. I've hashed passwords too on systems I've written, and if a user needs a password reset (ie: they forgot) would just have to create them one from scratch in the database.
     
    kblessinggr, Aug 12, 2009 IP
  16. end22

    end22 Peon

    Messages:
    16
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #16
    is there mods for this login system, for example "add friend" "PM user" "upload profile picture" and so on???
     
    Last edited: Aug 15, 2009
    end22, Aug 15, 2009 IP
  17. rahahm33

    rahahm33 Well-Known Member

    Messages:
    197
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    125
    #17
    just use a well established framework such as zend of codeigniter. its alot more secure than this
     
    rahahm33, Aug 15, 2009 IP
  18. Hannaspice

    Hannaspice Active Member

    Messages:
    77
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    91
    #18
    Hannaspice, Aug 16, 2009 IP
  19. Hannaspice

    Hannaspice Active Member

    Messages:
    77
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    91
    #19
    Anybody learned the maaking.com login script?

    In users.php there is a problem: cannot be saved(submitted) EditMyInfo, however I typed "UPDATE "._prefix."users SET....";

    Can anybody used this script and now want to share with all digitalpoint members?
     
    Hannaspice, Sep 6, 2009 IP
  20. daljit

    daljit Well-Known Member

    Messages:
    312
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    101
    #20
    thanks for sharing
     
    daljit, Sep 7, 2009 IP