<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Perl &#187; authorization</title>
	<atom:link href="http://perl.baczynski.com/tag/authorization/feed" rel="self" type="application/rss+xml" />
	<link>http://perl.baczynski.com</link>
	<description>Perl, CPAN, YAPC... et ceatera</description>
	<lastBuildDate>Sat, 14 Aug 2010 17:20:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=5431</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Website authorization &#8211; my solution</title>
		<link>http://perl.baczynski.com/cpan/website-authorization-my-solution</link>
		<comments>http://perl.baczynski.com/cpan/website-authorization-my-solution#comments</comments>
		<pubDate>Wed, 11 Nov 2009 04:37:25 +0000</pubDate>
		<dc:creator>Lech</dc:creator>
				<category><![CDATA[cpan]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[authorization]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://perl.baczynski.com/?p=130</guid>
		<description><![CDATA[


I wrote about wondering how to make &#8220;login&#8221; to a dynamic website in Perl. The best solution advised by http://perldesignpatterns.com/?WebAuthentication was to make a temporary token: &#8220;cookie with an authorization token. Store the token in the database along with an expiration time separate of the cookie. The token should be random generated and completely seperate [...]


See also:<ol><li><a href='http://perl.baczynski.com/work/website-login-with-perl' rel='bookmark' title='Permanent Link: Website login with Perl'>Website login with Perl</a></li>
<li><a href='http://perl.baczynski.com/work/utf8-perl-application-lamp-dbi' rel='bookmark' title='Permanent Link: Utf8 in web perl application (LAMP) &#8211; dbi, mysql'>Utf8 in web perl application (LAMP) &#8211; dbi, mysql</a></li>
<li><a href='http://perl.baczynski.com/work/rocketaware-perl-resources' rel='bookmark' title='Permanent Link: Rocketaware &#8211; perl resources'>Rocketaware &#8211; perl resources</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I wrote <a title="Perl website login" href="http://perl.baczynski.com/work/website-login-with-perl">about wondering how to make &#8220;login&#8221;</a> to a dynamic website in Perl. The best solution advised by <a href="http://perldesignpatterns.com/?WebAuthentication">http://perldesignpatterns.com/?WebAuthentication</a> was to make a temporary token: &#8220;cookie with an authorization token. Store the token in the database along with an expiration time separate of the cookie. The token should be random generated and completely seperate from the password but handed out when the password is validated. This is the best case;&#8221;, but it was overshot for now, so I settled up for this scheme:</p>
<p>Whan user registers, his password is stored as md5 digest in database. Salt is generated &#8211; string of eight random letters, numbers etc.I use Crypt::PasswdMD5 qw(unix_md5_crypt);</p>
<p>When user logs in, password is checked-  crypted using crypted pass from database as salt:</p>
<p>if ( $cryptedpassword eq unix_md5_crypt($password, $cryptedpassword)) {</p>
<p>and if it is ok, cookie is stored with user ID and crypted password.</p>
<p>The cookie is then checked on every page, whether it contains the crypted password from database.</p>
<p>Well, this is my idea of doing it for now, already implemented, I feel a bit unease about that &#8211; what is the point of crypting password and storing it crypted, as it really matters whether the pass from cookie is equal to pass in database &#8211; it could be not crypted and it would work the same way.</p>
<p>The only advantage is that the password is not stored in cookie &#8211; but it is not needed, as just the digest is needed to pretend to be logged in.</p>
<p>What do you think?</p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fperl.baczynski.com%2Fcpan%2Fwebsite-authorization-my-solution&amp;partner=sociable" title="Print"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fperl.baczynski.com%2Fcpan%2Fwebsite-authorization-my-solution&amp;title=Website%20authorization%20-%20my%20solution&amp;bodytext=I%20wrote%20about%20wondering%20how%20to%20make%20%22login%22%20to%20a%20dynamic%20website%20in%20Perl.%20The%20best%20solution%20advised%20by%20http%3A%2F%2Fperldesignpatterns.com%2F%3FWebAuthentication%20was%20to%20make%20a%20temporary%20token%3A%20%22cookie%20with%20an%20authorization%20token.%20Store%20the%20token%20in%20the%20databas" title="Digg"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fperl.baczynski.com%2Fcpan%2Fwebsite-authorization-my-solution&amp;title=Website%20authorization%20-%20my%20solution&amp;notes=I%20wrote%20about%20wondering%20how%20to%20make%20%22login%22%20to%20a%20dynamic%20website%20in%20Perl.%20The%20best%20solution%20advised%20by%20http%3A%2F%2Fperldesignpatterns.com%2F%3FWebAuthentication%20was%20to%20make%20a%20temporary%20token%3A%20%22cookie%20with%20an%20authorization%20token.%20Store%20the%20token%20in%20the%20databas" title="del.icio.us"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fperl.baczynski.com%2Fcpan%2Fwebsite-authorization-my-solution&amp;t=Website%20authorization%20-%20my%20solution" title="Facebook"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fperl.baczynski.com%2Fcpan%2Fwebsite-authorization-my-solution&amp;title=Website%20authorization%20-%20my%20solution" title="Mixx"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fperl.baczynski.com%2Fcpan%2Fwebsite-authorization-my-solution&amp;title=Website%20authorization%20-%20my%20solution&amp;annotation=I%20wrote%20about%20wondering%20how%20to%20make%20%22login%22%20to%20a%20dynamic%20website%20in%20Perl.%20The%20best%20solution%20advised%20by%20http%3A%2F%2Fperldesignpatterns.com%2F%3FWebAuthentication%20was%20to%20make%20a%20temporary%20token%3A%20%22cookie%20with%20an%20authorization%20token.%20Store%20the%20token%20in%20the%20databas" title="Google Bookmarks"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Website%20authorization%20-%20my%20solution&amp;body=http%3A%2F%2Fperl.baczynski.com%2Fcpan%2Fwebsite-authorization-my-solution" title="email"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fperl.baczynski.com%2Fcpan%2Fwebsite-authorization-my-solution&amp;title=Website%20authorization%20-%20my%20solution&amp;source=Perl+Perl%2C+CPAN%2C+YAPC...+et+ceatera&amp;summary=I%20wrote%20about%20wondering%20how%20to%20make%20%22login%22%20to%20a%20dynamic%20website%20in%20Perl.%20The%20best%20solution%20advised%20by%20http%3A%2F%2Fperldesignpatterns.com%2F%3FWebAuthentication%20was%20to%20make%20a%20temporary%20token%3A%20%22cookie%20with%20an%20authorization%20token.%20Store%20the%20token%20in%20the%20databas" title="LinkedIn"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fperl.baczynski.com%2Fcpan%2Fwebsite-authorization-my-solution&amp;t=Website%20authorization%20-%20my%20solution" title="MySpace"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fperl.baczynski.com%2Fcpan%2Fwebsite-authorization-my-solution&amp;title=Website%20authorization%20-%20my%20solution" title="Reddit"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://perl.baczynski.com/feed" title="RSS"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Website%20authorization%20-%20my%20solution&amp;url=http%3A%2F%2Fperl.baczynski.com%2Fcpan%2Fwebsite-authorization-my-solution" title="Slashdot"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fperl.baczynski.com%2Fcpan%2Fwebsite-authorization-my-solution&amp;title=Website%20authorization%20-%20my%20solution" title="StumbleUpon"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fperl.baczynski.com%2Fcpan%2Fwebsite-authorization-my-solution%20Website%20authorization%20-%20my%20solution" title="Suggest to Techmeme via Twitter"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fperl.baczynski.com%2Fcpan%2Fwebsite-authorization-my-solution" title="Technorati"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Website%20authorization%20-%20my%20solution%20-%20http%3A%2F%2Fperl.baczynski.com%2Fcpan%2Fwebsite-authorization-my-solution" title="Twitter"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Twitthis"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/" title="Twitthis" alt="Twitthis" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fperl.baczynski.com%2Fcpan%2Fwebsite-authorization-my-solution&amp;t=Website%20authorization%20-%20my%20solution&opener=bm&amp;ei=UTF-8&amp;d=I%20wrote%20about%20wondering%20how%20to%20make%20%22login%22%20to%20a%20dynamic%20website%20in%20Perl.%20The%20best%20solution%20advised%20by%20http%3A%2F%2Fperldesignpatterns.com%2F%3FWebAuthentication%20was%20to%20make%20a%20temporary%20token%3A%20%22cookie%20with%20an%20authorization%20token.%20Store%20the%20token%20in%20the%20databas" title="Yahoo! Bookmarks"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fperl.baczynski.com%2Fcpan%2Fwebsite-authorization-my-solution&amp;submitHeadline=Website%20authorization%20-%20my%20solution&amp;submitSummary=I%20wrote%20about%20wondering%20how%20to%20make%20%22login%22%20to%20a%20dynamic%20website%20in%20Perl.%20The%20best%20solution%20advised%20by%20http%3A%2F%2Fperldesignpatterns.com%2F%3FWebAuthentication%20was%20to%20make%20a%20temporary%20token%3A%20%22cookie%20with%20an%20authorization%20token.%20Store%20the%20token%20in%20the%20databas&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>


<br/><br/>

<p>See also:<ol><li><a href='http://perl.baczynski.com/work/website-login-with-perl' rel='bookmark' title='Permanent Link: Website login with Perl'>Website login with Perl</a></li>
<li><a href='http://perl.baczynski.com/work/utf8-perl-application-lamp-dbi' rel='bookmark' title='Permanent Link: Utf8 in web perl application (LAMP) &#8211; dbi, mysql'>Utf8 in web perl application (LAMP) &#8211; dbi, mysql</a></li>
<li><a href='http://perl.baczynski.com/work/rocketaware-perl-resources' rel='bookmark' title='Permanent Link: Rocketaware &#8211; perl resources'>Rocketaware &#8211; perl resources</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://perl.baczynski.com/cpan/website-authorization-my-solution/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Website login with Perl</title>
		<link>http://perl.baczynski.com/work/website-login-with-perl</link>
		<comments>http://perl.baczynski.com/work/website-login-with-perl#comments</comments>
		<pubDate>Tue, 27 Oct 2009 04:55:49 +0000</pubDate>
		<dc:creator>Lech</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[authorization]]></category>
		<category><![CDATA[cpan]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://perl.baczynski.com/?p=116</guid>
		<description><![CDATA[Lately I was thinking about implementing logging (as in login/password) into a website with Perl. I mean, that I want to have a dynamic website, where users can login using login and password and do some stuff.
After googling for &#8220;how to make login site&#8221; mostly PHP session solutions came up. When I added &#8220;perl&#8221; to [...]


See also:<ol><li><a href='http://perl.baczynski.com/cpan/website-authorization-my-solution' rel='bookmark' title='Permanent Link: Website authorization &#8211; my solution'>Website authorization &#8211; my solution</a></li>
<li><a href='http://perl.baczynski.com/work/masons-and-mason' rel='bookmark' title='Permanent Link: Masons and mason'>Masons and mason</a></li>
<li><a href='http://perl.baczynski.com/work/utf8-web-application-lamp' rel='bookmark' title='Permanent Link: Utf8 in web perl application (LAMP)'>Utf8 in web perl application (LAMP)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Lately I was thinking about implementing logging (as in login/password) into a website with Perl. I mean, that I want to have a dynamic website, where users can login using login and password and do some stuff.</p>
<p>After googling for &#8220;how to make login site&#8221; mostly PHP session solutions came up. When I added &#8220;perl&#8221; to that google query, half of results was about logging into <strong>someone&#8217;s </strong>website (wget, LWP, WWW::Mechanize etc) and not making a login feature in existing dynamic website. Search for &#8220;perl authentication&#8221; found more relevant stuff.</p>
<p>Some pages suggested using .htaccess. Bleh. Beside, I want to have user in a SQL database.</p>
<p>One result pointed to CGI::Session on cpan. Nice. CGI::Session::Auth &#8211; nice too <img src='http://perl.baczynski.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  There is also Apache::Session to be found on cpan.</p>
<p>There was also a hint, to find a perl web forum script and see how it is done there. We&#8217;ll, I did it with one forum script, and found that user login and crypted password is stored in a cookie. Nice.</p>
<p>There also books that talk about how to do web authentication: <a href="http://astore.amazon.com/lechsarchaeopage/detail/1565926471">Perl for Web Site Management</a> or <a href="http://astore.amazon.com/lechsarchaeopage/detail/1565924193">CGI programming with Perl</a></p>
<p>Here we have some design patterns: <a href="http://perldesignpatterns.com/?WebAuthentication">http://perldesignpatterns.com/?WebAuthentication</a> and also: <a href="http://perldesignpatterns.com/?SessionPattern" target="_blank">http://perldesignpatterns.com/?SessionPattern</a> and <a href="http://perldesignpatterns.com/?PerlDesignPatterns" target="_blank">http://perldesignpatterns.com/?PerlDesignPatterns</a> . Even nicer <img src='http://perl.baczynski.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>But I still look for ultimate &#8220;how to&#8221; with examples about authorizing users (register, login, remind password etc.)  into some kind of dynamic website with Perl. Any hints?</p>



Share and Enjoy:


	<a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fperl.baczynski.com%2Fwork%2Fwebsite-login-with-perl&amp;partner=sociable" title="Print"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fperl.baczynski.com%2Fwork%2Fwebsite-login-with-perl&amp;title=Website%20login%20with%20Perl&amp;bodytext=Lately%20I%20was%20thinking%20about%20implementing%20logging%20%28as%20in%20login%2Fpassword%29%20into%20a%20website%20with%20Perl.%20I%20mean%2C%20that%20I%20want%20to%20have%20a%20dynamic%20website%2C%20where%20users%20can%20login%20using%20login%20and%20password%20and%20do%20some%20stuff.%0D%0A%0D%0AAfter%20googling%20for%20%22how%20to%20make%20logi" title="Digg"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fperl.baczynski.com%2Fwork%2Fwebsite-login-with-perl&amp;title=Website%20login%20with%20Perl&amp;notes=Lately%20I%20was%20thinking%20about%20implementing%20logging%20%28as%20in%20login%2Fpassword%29%20into%20a%20website%20with%20Perl.%20I%20mean%2C%20that%20I%20want%20to%20have%20a%20dynamic%20website%2C%20where%20users%20can%20login%20using%20login%20and%20password%20and%20do%20some%20stuff.%0D%0A%0D%0AAfter%20googling%20for%20%22how%20to%20make%20logi" title="del.icio.us"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fperl.baczynski.com%2Fwork%2Fwebsite-login-with-perl&amp;t=Website%20login%20with%20Perl" title="Facebook"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fperl.baczynski.com%2Fwork%2Fwebsite-login-with-perl&amp;title=Website%20login%20with%20Perl" title="Mixx"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fperl.baczynski.com%2Fwork%2Fwebsite-login-with-perl&amp;title=Website%20login%20with%20Perl&amp;annotation=Lately%20I%20was%20thinking%20about%20implementing%20logging%20%28as%20in%20login%2Fpassword%29%20into%20a%20website%20with%20Perl.%20I%20mean%2C%20that%20I%20want%20to%20have%20a%20dynamic%20website%2C%20where%20users%20can%20login%20using%20login%20and%20password%20and%20do%20some%20stuff.%0D%0A%0D%0AAfter%20googling%20for%20%22how%20to%20make%20logi" title="Google Bookmarks"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Website%20login%20with%20Perl&amp;body=http%3A%2F%2Fperl.baczynski.com%2Fwork%2Fwebsite-login-with-perl" title="email"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fperl.baczynski.com%2Fwork%2Fwebsite-login-with-perl&amp;title=Website%20login%20with%20Perl&amp;source=Perl+Perl%2C+CPAN%2C+YAPC...+et+ceatera&amp;summary=Lately%20I%20was%20thinking%20about%20implementing%20logging%20%28as%20in%20login%2Fpassword%29%20into%20a%20website%20with%20Perl.%20I%20mean%2C%20that%20I%20want%20to%20have%20a%20dynamic%20website%2C%20where%20users%20can%20login%20using%20login%20and%20password%20and%20do%20some%20stuff.%0D%0A%0D%0AAfter%20googling%20for%20%22how%20to%20make%20logi" title="LinkedIn"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fperl.baczynski.com%2Fwork%2Fwebsite-login-with-perl&amp;t=Website%20login%20with%20Perl" title="MySpace"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fperl.baczynski.com%2Fwork%2Fwebsite-login-with-perl&amp;title=Website%20login%20with%20Perl" title="Reddit"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://perl.baczynski.com/feed" title="RSS"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Website%20login%20with%20Perl&amp;url=http%3A%2F%2Fperl.baczynski.com%2Fwork%2Fwebsite-login-with-perl" title="Slashdot"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fperl.baczynski.com%2Fwork%2Fwebsite-login-with-perl&amp;title=Website%20login%20with%20Perl" title="StumbleUpon"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fperl.baczynski.com%2Fwork%2Fwebsite-login-with-perl%20Website%20login%20with%20Perl" title="Suggest to Techmeme via Twitter"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fperl.baczynski.com%2Fwork%2Fwebsite-login-with-perl" title="Technorati"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Website%20login%20with%20Perl%20-%20http%3A%2F%2Fperl.baczynski.com%2Fwork%2Fwebsite-login-with-perl" title="Twitter"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="" title="Twitthis"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/" title="Twitthis" alt="Twitthis" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fperl.baczynski.com%2Fwork%2Fwebsite-login-with-perl&amp;t=Website%20login%20with%20Perl&opener=bm&amp;ei=UTF-8&amp;d=Lately%20I%20was%20thinking%20about%20implementing%20logging%20%28as%20in%20login%2Fpassword%29%20into%20a%20website%20with%20Perl.%20I%20mean%2C%20that%20I%20want%20to%20have%20a%20dynamic%20website%2C%20where%20users%20can%20login%20using%20login%20and%20password%20and%20do%20some%20stuff.%0D%0A%0D%0AAfter%20googling%20for%20%22how%20to%20make%20logi" title="Yahoo! Bookmarks"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fperl.baczynski.com%2Fwork%2Fwebsite-login-with-perl&amp;submitHeadline=Website%20login%20with%20Perl&amp;submitSummary=Lately%20I%20was%20thinking%20about%20implementing%20logging%20%28as%20in%20login%2Fpassword%29%20into%20a%20website%20with%20Perl.%20I%20mean%2C%20that%20I%20want%20to%20have%20a%20dynamic%20website%2C%20where%20users%20can%20login%20using%20login%20and%20password%20and%20do%20some%20stuff.%0D%0A%0D%0AAfter%20googling%20for%20%22how%20to%20make%20logi&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://perl.baczynski.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>


<br/><br/>

<p>See also:<ol><li><a href='http://perl.baczynski.com/cpan/website-authorization-my-solution' rel='bookmark' title='Permanent Link: Website authorization &#8211; my solution'>Website authorization &#8211; my solution</a></li>
<li><a href='http://perl.baczynski.com/work/masons-and-mason' rel='bookmark' title='Permanent Link: Masons and mason'>Masons and mason</a></li>
<li><a href='http://perl.baczynski.com/work/utf8-web-application-lamp' rel='bookmark' title='Permanent Link: Utf8 in web perl application (LAMP)'>Utf8 in web perl application (LAMP)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://perl.baczynski.com/work/website-login-with-perl/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
