The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
0answers
84 views

Codeigniter Login Controller

Instead of creating an Admin_Controller or MY_Controller I was going to try and just try out all my controllers on requirements that are needed per controller. I know this may seem like additional ...
2
votes
1answer
43 views

JQuery/AJAX registration

function reg(email, pass){ $.ajax({ url: "uman.php", type: "post", data:{email: email, password: pass}, success: ...
1
vote
0answers
25 views

node.js Passport Wrapper 2

First attempt was done here: My second attempt (now using jslint to make sure the spacing is correct and have incorporate the majority of the feedback from previous attempt). /* * Export single ...
6
votes
1answer
82 views

Review on a PHP login/authentication system

I am currently working on a small website for my scuba diving club, and it needs a "simple" login system to allow members-only features etc. I've been using the php-login-minimal as the base for the ...
4
votes
2answers
79 views

PHP Authentication Security

Can someone look over this? This is the entire authentication file. It's referenced at the beginning of all my catalog editing files to make sure only the specified user is logged in. I want to ...
5
votes
1answer
128 views

LEGO® Universe Authentication Server

Please note that all credit for code goes to humanoid24 and I have only helped the bare minimum required to be able to post it here. I am working with some friends to replicate a server for the game ...
10
votes
8answers
943 views

Basic password authentication system app

This is a console app I wrote for an end-of-chapter assignment in Jumping into C++. The parameters were for it to have a basic password system, and if you are eager, a multiple password / username ...
7
votes
1answer
125 views

node.js passport wrapper

I have started some experiments with node.js. Any comment on style (especially the callbacks) and best practice is appreciated: PassportControl.js /* * Export single function that creates the ...
5
votes
1answer
83 views

Password storage slim/trim it down?

I have created a personal password storage program that takes the user's username, password, and for what account it is for, and stores it in a text file and can also read from them (assuming you type ...