active questions tagged login - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T19:41:36Zhttp://stackoverflow.com/feeds/tag/loginhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1929340/how-to-create-a-secure-php-login-system-allowing-for-keep-me-logged-in-functio0how to create a secure php login system, allowing for "keep me logged in" functionality?pixeline2009-12-18T16:38:41Z2009-12-18T18:28:32Z
<p>hello,</p>
<p>I use a simple login system based on SESSION vars. Once the user logs in, a session var is set that tells my script the user is to be accepted in. I don't use any custom clientside cookie var.</p>
<p>I would like to offer the option on the login screen that says "keep me loggued in the whole day". How does one do that in a secure way?</p>
http://stackoverflow.com/questions/1928272/django-use-hash-guid-in-username0Django: use hash/guid in usernameArt2009-12-18T13:43:55Z2009-12-18T13:47:39Z
<p>Hi all,</p>
<p>I am going to use email as a username across the website, however I still need to pre-fill the mandatory username field in User model somehow.</p>
<p>Initially I was thinking of using a md5 hash of the email as username, but given the limitation of 30 characters it is not possible. Also I don't think I can use GUIDs for that as they are also longer than 30 chars when converted to string hex.</p>
<p>Any suggestions greatly appreciated!</p>
http://stackoverflow.com/questions/1924776/do-i-need-to-query-the-database-to-verify-logged-in-status-when-user-views-privat0Do I need to query the database to verify logged in status when user views private pages?Jeff2009-12-17T21:39:51Z2009-12-17T21:49:15Z
<p>.. Or is it enough to just check for a session variable that indicates a successful login has in fact been performed?</p>
<p>What are different ways to go about this? The ideal and not so ideal?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1900141/asp-net-login-control0Asp.net Login Control Ashian2009-12-14T10:36:50Z2009-12-17T18:02:26Z
<p>Hi,
I have a web application that I use Login Control and ASP.net membership for Sign in process.
my application work propebly untill last week I upload new version, in this version I didnt change the login UC and just the main page ( default page after user logged in ) changed.</p>
<p>but some users report me they cant login and redirect to Login page.
some note:
1- this problem occure just in IE browser
2- users that report this problem can login to old version </p>
<p>I add a log procedure and see users redirected becuase of this code</p>
<pre><code>if (!this.User.Identity.IsAuthenticated)
{
Response.Redirect("~/Secure/Signin.aspx");
}
</code></pre>
<p>I checked and see this.User.Identity.Name was empty or null.</p>
<p>What setting maybe changed?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1906333/why-is-cakephp-hashing-my-password-twice0Why is CakePHP hashing my password twice?Jeremy S.2009-12-15T09:58:20Z2009-12-17T12:45:54Z
<p>Hi,</p>
<p>im Using CakePHPs standard Auth mechanism, but I have some problems with that.
Everytime a user logges in the password got hashed twice. </p>
<p>I have the Auth Component in the <code>var $componets Array</code> in the <code>app_controller.php</code>
and one in the <code>var $components</code> Array from my <code>users_controller</code> where the login action is
defined. I have defined a <code>beforeFilter</code> in my <code>users_controller</code> like this</p>
<pre><code> function beforeFilter(){
parent::beforeFilter();
$this->Auth->autoRedirect = false;
</code></pre>
<p>Now when I print out my $this->data in cakephps hashPassword funktion in the Auth component file (auth.php line 854) like this</p>
<pre><code> function hashPasswords($data) {
</code></pre>
<p>pr($data);</p>
<p>I can see that <code>pr(...)</code> gets called twice.</p>
<p>Can anybody tell me why this is, or can help me to find a solution, please.</p>
<p>Greetz Jeremy</p>
http://stackoverflow.com/questions/1914275/googles-app-engine-python-how-to-get-parameters-from-a-log-in-pages-1Googles App Engine, Python: How to get parameters from a log-in pages?brilliant2009-12-16T12:08:21Z2009-12-17T05:33:40Z
<p>Here is a quote from <a href="http://stackoverflow.com/questions/1901701/how-to-check-for-an-http-status-code-of-401">here</a>:</p>
<blockquote>
<p>So in short ... you need to look into login
page, see what params it uses e.g
login=xxx, password=yyy, post it to
that page and you will have to manage
the cookies too, that is where library
like twill etc come into picture.</p>
</blockquote>
<p>How could I do it using Python and Google App Engine? Can anybody please give me some clue? I have already asked a question about the authenticated request, but here it seems the matter is different as here I am suggested to look into login page and get parameters, and also I have to deal with cookies.</p>
http://stackoverflow.com/questions/1913107/how-to-manage-sessions-in-web-driven-iphone-application0How to manage sessions in web-driven Iphone ApplicationKundan2009-12-16T08:16:54Z2009-12-16T08:16:54Z
<p>I am Making an Iphone application which is web-service enabled. Also I have skeleton of this application.I am using rest to feed the contents of view controllers. When application is launched it is presented with Login page asking username and password. Clicking Login button sends request to server and in response xml data is fetched. Then I parse this data to get user logged. But i dont know how will i manage sessions,and how clicking logout button will end this session. This application is most-like RSSFeeder,means user gets real-time data.
Any help would be greatly appreciated.Thank You All.</p>
http://stackoverflow.com/questions/1901101/auditing-desktop-application-user-and-securing-access-to-a-desktop-application1Auditing desktop application user and securing access to a desktop applicationsurajs2009-12-14T14:01:32Z2009-12-14T14:53:12Z
<p>Question is about providing auditing (who used the application, when) and securing (who can launch the application - no fine grain control or data security) a desktop application developed you. </p>
<p>What would you prefer?</p>
<ol>
<li><p>Have an authentication mechanism built into your application</p>
<p>If using this option, we have to include user and password management, login screen, etc. within the application itself. </p></li>
<li><p>Use underlying OS for auditing and authenticating</p>
<p>Here the application needs to be configured after installation such that only users belonging to certain groups can execute the main program or edit the configuration file.</p></li>
</ol>
http://stackoverflow.com/questions/1895955/gmail-facebook-without-username-password-php-login-header-problem0Gmail/Facebook without username/password - PHP Login Header ProblemTony2009-12-13T08:59:12Z2009-12-13T13:54:55Z
<p>Hi all.</p>
<p>I want to create my own personal login gateway into Gmail/Facebook/any other site. In this gateway I enter my master username and password, then I can choose where to login (gmail/facebook/etc) without entering those usernames because they are stored on the server.</p>
<p>I tried to implement this by using cURL to send POST request with the headers and post data sent in Firefox during regular login. However, this doesn't work for neither facebook or gmail.</p>
<p>Has anyone tried this or have an idea about why this doesn't work?</p>
<p>Thanks.</p>
<p>// Edited
I am thinking the problem that it doesn't work lie in the fact that the IP address of the php server which sent the curl request to gmail is different from my browser's so, when the response from the gmail server is fed back to the browser, it still cannot authenticate.</p>
<p>Or is that the cookie I sent using curl to Gmail server actually changes according to time.</p>
http://stackoverflow.com/questions/1726720/what-patterns-or-idioms-exist-for-gui-requring-user-to-provided-4-distinct-sets1What patterns or idioms exist for GUI requring user to provided 4 distinct sets of login creditials?bn2009-11-13T02:16:39Z2009-12-13T02:25:13Z
<p><strong>Background:</strong></p>
<p>The application I am working on happens to be web-based, but the question applies to any GUI. I need to request three distinct pieces of information from the user four times -- each set is for one of four servers. There is no commonality between the sign-on for each server, or in other words, the four sets of credentials are unique.</p>
<p>Single-sign-on after the initial logins are done is available. Once the user logs into a server, the status is persisted on the main view of the application.</p>
<p>This is currently implemented via four separate links, that upon clicking, display a pop-up dialog for the user to enter in their information for the corresponding server they selected. </p>
<p><strong>Question</strong>:</p>
<p>I was considering this design and trying to think of a way to make the multiple login process easier on the user. I have a few ideas, but wanted to first see if they compared to what ideas of the collective consciousness of the stackoverflow community might have.</p>
<p>Thanks for the help,</p>
<p>-bn</p>
http://stackoverflow.com/questions/1893119/python-script-to-login-to-a-url1Python script to login to a url [closed]Hulk2009-12-12T11:26:58Z2009-12-12T13:21:04Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/1892958/sending-http-request-to-apache-through-a-python-script">sending http request to apache through a python script</a> </p>
</blockquote>
<p>Can some one please tell how to login to a url where we can provide the credentials of user name and password to login.... and how to make sure that we have logged in through a pyhton script......</p>
<p>Thanks.....</p>
http://stackoverflow.com/questions/1081660/disable-account-due-to-login-3-times-failed3Disable Account due to Login 3 times failed.Hoe Chin2009-07-04T06:31:54Z2009-12-12T06:17:03Z
<p>Recently i read an article is about prevent brute-force attack. It said that automatically disabling user accounts is a poor security mechanism to fight a dictionary attack. In the first place, If an attacker can disable an account by incorrectly guessing its password three times every 30 minutes, he can effectively prevent that user from ever accessing the system. In the second place, because this technique assumes that the attacker is keeping the username constant and varying the password. What if the attacker instead kept the password constant and varied the username? We already know that a large percentage of users use common passwords like “password”. A hacker using a dictionary attack could try “password” for each of the users in his username list, which would not only have a high chance of success, but would also evade the account lockout logic. An attacker could make thousands of login attempts, and even if every one of them failed, the system will only register one incorrect login per account. </p>
<p>Can anyone give me some suggestions to make the disable account more secure ?</p>
http://stackoverflow.com/questions/1886861/facebook-connect-login-problem0Facebook connect login problemSimon2009-12-11T09:29:09Z2009-12-12T05:47:30Z
<p>I am trying to have a connect button on my site. Once the user has clicked the facebook login button, the pop up will ask the user to enter the authentication detail and the parent window will either redirect or refresh the page and the login button became a logout button.</p>
<p>My problem is when a user clicked the connect button from the popup, the popup page will redirect to my canvas page rather than closed the popup instead. </p>
http://stackoverflow.com/questions/1890064/api-for-sending-sms-to-mobile-phones-from-website2API for Sending SMS to Mobile Phones from Websitehagope2009-12-11T18:41:50Z2009-12-12T00:50:42Z
<p>I'd like to include user validation in my web app, to prevent the user from creating many accounts. </p>
<p>For example, when a new user signs up, they must enter a mobile phone number, receive an SMS, then enter a confirmation code.</p>
<p>Is there a service or API out there that automates/simplifies this process? </p>
<p>Thanks!</p>
http://stackoverflow.com/questions/392594/concurrent-user-sessions-why-dont-we-see-more-of-it1Concurrent User Sessions - Why Don't We See More Of It?jamtoday2008-12-25T07:06:27Z2009-12-11T22:05:14Z
<p>This is something of a rant, as well as a question.</p>
<p>There are some sites, like Facebook, where you would only want to be logged into one account at a time. </p>
<p>But everything from blogging sites to email always force you to logout before you can login to another account.</p>
<p>And I understand the security implications, and how it would make cookie-based sessions a little more complex, but why don't we see more of this? </p>
<p>Why would multiple users from a single client at once be a bad idea? </p>
http://stackoverflow.com/questions/1885199/drupal-external-authentication1Drupal External AuthenticationChris2009-12-11T01:05:40Z2009-12-11T14:28:51Z
<p>I have a cURL PHP script which is able to validate a username/password against the external source.</p>
<p>What is the best way to integrate this as a login requirement for (select) users in Drupal?</p>
http://stackoverflow.com/questions/1884599/apple-developer-connection-log-in-problems1Apple Developer Connection log-in problemsGreg Maletic2009-12-10T22:40:52Z2009-12-10T22:40:52Z
<p>Is there a trick to logging in to Apple Developer Connection? For the past two weeks, out of about 100 tries, I've been able to log in three times. Every other time, after a successful entry of my username and password, it takes me back to the login screen.</p>
<p>This happens to me on both my Macs, on Safari and Firefox, so I'm not hopeful of a solution. But I have a hard time believing that the situation is really this bad...</p>
http://stackoverflow.com/questions/1882407/major-php-issues-1major php issuesjparry1002009-12-10T17:00:31Z2009-12-10T17:38:36Z
<p>I am trying to create a simple login system. When I run the login form (with the correct username and password) it doesn't seem to run the php. Any suggestions?</p>
<pre><code><?php
$host="linuxserver"; // Host name
$username="jparry2"; // Mysql username
$password=""; // Mysql password
$db_name="jparry2"; // Database name
$tbl_name="customer"; // Table name
// Connect to server and select databse.
mysqli_connect("$host", "$username", "$password")or die("cannot connect");
mysqli_select_db("$db_name")or die("cannot select DB");
// username and password sent from form
$myusername=$_POST['myusername'];
$mypassword=$_POST['mypassword'];
// To protect MySQL injection
$myusername = stripslashes($myusername);
$mypassword = stripslashes($mypassword);
$myusername = mysql_real_escape_string($myusername);
$mypassword = mysql_real_escape_string($mypassword);
$sql="SELECT * FROM $tbl_name WHERE username='$myusername' and password='$mypassword'";
$result=mysqli_query($sql);
// Mysql_num_row is counting table row
$count=mysqli_num_rows($result);
// If result matched $myusername and $mypassword, table row must be 1 row
if($count==1){
// Register $myusername, $mypassword and redirect to file “login_success.php”
session_register("myusername");
session_register("mypassword");
header("location:login_success.php");
}
else {
echo "Wrong Username or Password";
}
?>
<html>
<body>
</body>
</html>
</code></pre>
<p>edit added login form code</p>
<pre><code><html>
<head><title>Login</title></head>
<body>
<form action='checklogin.php'
method='POST' style='margin: .5in'>
<p><label for='user_name' style='font-weight: bold;
padding-bottom: 1em'>USER ID: </label>
<input type='text' name='myusername' id='myusername'
value='' /></p>
<p><label for='password' style= 'font-weight: bold'>Password: </label>
<input type='password' name='mypassword' id='mypassword'
value='' /></p>
<p><input type='submit' value='Login'> </p>
<input type='hidden' name='sent' value='yes'/>
<a href= "/home/jparry2/public_html/register.php">Register</a>
</form>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1781453/zend-authentication-problem-with-subdomain1Zend Authentication Problem with subdomainNAVEED2009-11-23T06:39:35Z2009-12-10T12:27:04Z
<p>I am working on a project using zend framework, php, mysql on ubuntu.</p>
<p>I have created hostname <strong>test.dev</strong> on my local machine and using zend authentication. When an user is authenticated using zend authentication, I set session variable for logged in user id. I use this session variable(userid) on different pages to sure authentication. </p>
<p><strong>Question:</strong>
Now I have to create a subdomain. I have created a new hostname <strong>mypage.test.dev</strong> on my local machine. Both hostnames are pointing to same directory, for example /var/www/test/public. But when I login on <strong>test.dev</strong>, I have to login again on subdomain <strong>mypage.test.dev</strong>. Even session variables of <strong>test.dev</strong> are not accessable on <strong>mypage.test.dev</strong>.</p>
<p>How can I login on all subdomains using one login?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1872451/is-this-a-bad-login-algorithm-in-flash-php-and-mysql1Is this a bad login algorithm in flash, php and mysql ?mysqllearner2009-12-09T08:40:14Z2009-12-09T09:22:41Z
<p>My site is in flash. The login is also in flash. This is the login flow:</p>
<ol>
<li><p>Enter username and password</p></li>
<li><p>Send to authentication.php page</p></li>
<li><p>Here is my doubt on authentication.php page:</p>
<p>(1) Check the post parameters, i.e username and password</p>
<p>(2) Sha/hash the password</p>
<p>(3) Q1(query 1), select username and password from users table</p>
<p>(4) If matched, do another query(Q2), check if the user is still on ban status</p>
<p>(5) If user is not in ban status, do a query (Q3) to check if the user is first log for today</p>
<p>(6) If its first log, do update query (Q4) to rewards some money to the user</p>
<p>(7) Create session, userid, a hashed session variable using md5. i.e</p>
<p>$_SESSION['loggin'] = 1;</p>
<p>$_SESSION['hash'] = md5(username.secret);</p>
<p>(I use the $_SESSION['hash'] for another authentication in another page, just ignore this)</p></li>
<li><p>Return result to flash.</p></li>
</ol>
<p>I know its a very bad login flow, alots of mysql queries, 2 hashing(php calculations). I am still thinking/looking for a better way for this. Like combining the query etc. Any ideas on how to improve the flow?? (I must meet all the stuff i mentioned above)</p>
<p>[The current login is slow]</p>
http://stackoverflow.com/questions/1862391/login-to-multiple-web-sites-by-login-only-once-at-a-my-site0login to multiple web sites by login only once at a my site.Ankur Agrawal2009-12-07T19:40:43Z2009-12-07T19:50:42Z
<p>I want to create a site in php such that, when user would login to my website, then they can add their favorite website and enter its login information once. My site will save his login information for other sites in my database, and the next time, user logged onto my website need not to enter his login information to other sides again. My site will automatically do this for them. </p>
<p>I am not sure whether this is possible or not. As I am a beginner in php. Also would javascript be useful for this? </p>
<p>Would it be possible to do this by limiting this feature to some fixed websites?</p>
<p>Ankur</p>
http://stackoverflow.com/questions/1861418/auto-login-user-to-third-party-site-without-showing-a-password-to-him0Auto login user to third party site without showing a password to himRoman2009-12-07T17:15:01Z2009-12-07T18:18:23Z
<h3>Background</h3>
<p>We are integrating third party email solution into our site. When a user goes to the <code>Mail</code> page it must be automatically authenticated at the <code>Mail</code> site. </p>
<p>For now, the <code>Mail</code> link points to our page which automatically submits a form with the user's login and password. After clicking <code>submit</code> the user is redirected to the <code>Mail</code> site with authentication cookie.</p>
<p>The problem with this approach is that we do not want the user to see his <code>Mail</code> password, because we generate it automatically for him and there are some sane reasons not to show it.</p>
<h3>Question</h3>
<p>Is there any way to receive mail authentication cookies without sending the login information to the client and performing <code>form.submit</code> operation from the client's browser? Is there a better way to do what I'm trying to do?</p>
<h3>Edit</h3>
<p>Of course "I am trying to do it programatically". Looks like that there are no sane solution except pass these login/password to the client. Looks like we must accept that user can see his mail password and somehow make sure he cannot use this information to change password to some other value we will not know.</p>
http://stackoverflow.com/questions/1858448/what-should-i-store-in-cookies-to-implement-remember-me-during-user-login3What should I store in cookies to implement "Remember me" during user loginhalocursed2009-12-07T07:43:28Z2009-12-07T08:08:02Z
<p>I have a login system in place for my website, the details of the user which are stored in the database are <strong>userid</strong>(unique for every user and identifier), <strong>email address</strong>(unique), <strong>display name</strong>(not unique), <strong>password</strong> and <strong>membersince</strong>.<br />
Now what should I store in the cookies? I was thinking about storing just the userid in the cookie with an expiration date and then if the user revisits my website after signing up check for the cookie and log him in( which kind of doesn't look right to me) and destroy the cookie if he decides to log out.<br />
*A little explanation would also be very helpful. Thanks</p>
http://stackoverflow.com/questions/1851774/the-web-site-administration-tool-times-out-after-a-period-of-inactivity0the Web Site Administration Tool times out after a period of inactivitybala35692009-12-05T10:08:09Z2009-12-05T11:10:58Z
<p>I am using Visual studio, 2008, and am attempting to create an Admin section so the site owners can go in and alter their site. However, whenever I go to Website->ASP .Net Configuration to try to open the website administration tool, it tells me:</p>
<p>An error was encountered. Please return to the previous page and try again.</p>
<p>If I click on the "How do I use this tool" option at the top right, I get this error:</p>
<p>Tool Has Timed Out</p>
<p>As a security measure, the Web Site Administration Tool times out after a period of inactivity. Changes to machine.config or web.config may also result in the tool needing to be restarted. To continue configuring your web site, restart the tool.
and I just don't know what else to do!!Please help me......</p>
http://stackoverflow.com/questions/1849316/how-to-write-a-website-login-system0How to write a website login systemJay2009-12-04T20:01:14Z2009-12-04T20:35:56Z
<p>I am looking for the best way to write a website login system.</p>
<p>I am a desktop software developer and have only done minimal website coding with html, css, and php.</p>
<p>My goals for the website login system are to allow users to sign up for the site, edit their profile, and view information such as purchases etc...</p>
<p>I would like the option to add further features in the future such as a help desk from inside of the login software.</p>
<p>My question is, what is the best way to do this?</p>
<ol>
<li><p>Code by hand: What language/framework is the best to use for this? Ruby on Rails? Symfony? CakePHP?</p></li>
<li><p>Are there any good outsourced options to consider?</p></li>
</ol>
http://stackoverflow.com/questions/1002716/sharepoint-popup-login-windows2Sharepoint popup login windowsaspguy2009-06-16T16:55:32Z2009-12-04T07:28:19Z
<p>Hi,</p>
<p>After I log into my sharepoint website, I have to login everytime I access a document from the library. Is there a way to fix this?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1842982/how-can-the-windows-xp-login-be-passed-to-my-jboss-portal-application0How can the windows xp login be passed to my jboss portal application?spartikus2009-12-03T21:18:51Z2009-12-03T21:26:50Z
<p>My users will be logging into a secure windows xp workstation. They will be launching a jboss portal (app server = 4.2.2.GA, portal = 2.6.5) web application. This web application currently has them log in again. I can set this up to authenticate against an LDAP server but what I really want is to have them be authenticated based on the windows xp login they already used to get on the workstation. So the user experience would be to login to the windows workstation and then launching the website would go to the first logged in page. </p>
<p>I have no experience working this stuff so I would love some reference material. </p>
http://stackoverflow.com/questions/1840211/setup-ssl-for-form-login-only-on-tomcat-webapp0Setup SSL for form login only on Tomcat webappBrabster2009-12-03T14:30:34Z2009-12-03T14:55:10Z
<p>Can I set Tomcat (or my webapp if it's done that way) to require SSL for confidentiality of the built-in Form-Based Login mechanism?</p>
<p>i.e. to protect the users credentials, and use standard http for any other transactions?</p>
http://stackoverflow.com/questions/1837934/login-logout-and-duration-time-in-php-and-mysql0Login, logout and duration time in php and mysql?mysqllearner2009-12-03T05:57:38Z2009-12-03T07:51:47Z
<p>I would like to store the login, logout and duration time in database. </p>
<ul>
<li>The login time is created when the user is authenticated(successfully logged in) </li>
<li>The logout time is created when the user clicks the logout button</li>
<li>The duration is logout - login time. (logout minus login)</li>
</ul>
<p>But the problem is, what if the user didnt click the logout button. Here are the situations:</p>
<ul>
<li>Internet loss</li>
<li>Close the browser/tab. (I need this must use javascript, but i donnu how to do it, any idea?)</li>
</ul>
<p>EDIT:</p>
<p>I forgot to add something to the question, the program is a full flash program, there is no navigation to other page. Only 1 page</p>
http://stackoverflow.com/questions/1821178/java-ajax-webapp-security0Java AJAX webapp securityMike Warren2009-11-30T17:26:44Z2009-12-02T15:03:47Z
<p>I'm experimenting with creating a simple AJAX Java webapp. </p>
<p>I'd like to use the container managed security provided by the Servlet container, but having investigated it have a feeling that it isn't going to work how I'd like it to. Basically I'd like to be able to have a login prompt on the main page, without the user having to navigate away to a login form.</p>
<p>As an example imagine a simple message board application and a user who wants to post a new message enters the text directly into a form on the screen, when it comes to pressing the submit button I would like be able to make an ajax call to determine if the user is already logged in, if not then I'd like to display a login div on the same page to allow the user to log in without navigating away to a separate login page.</p>
<p>The form based login provided by the servlet container seems to be based on the assumption that the user will be redirected to a separate login page at the point where they try to access something that is "secured", which isn't what I want to happen.</p>
<p>So I suppose what I'd like to know is if there is a standard way of allowing users to login within a single page ajax application using the container managed security, or some 3rd party library? I'm going to have a look at Spring security, but at first glance it seems to have the same problem that I'm having with the standard security. </p>
<p>EDIT:Found this very useful, think it may be the basis of my solution <a href="http://www.jroller.com/sjivan/entry/ajax%5Fbased%5Flogin%5Fusing%5Faceci" rel="nofollow">http://www.jroller.com/sjivan/entry/ajax%5Fbased%5Flogin%5Fusing%5Faceci</a></p>