<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments for Mr Kirkland 2.0</title>
	<atom:link href="http://www.mrkirkland.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mrkirkland.com</link>
	<description>Web Development, Accessibility and Search Marketing</description>
	<pubDate>Mon, 12 May 2008 04:46:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>Comment on CodeIgniter Language File Translator by Derek Allard</title>
		<link>http://www.mrkirkland.com/codeigniter-language-file-translator/#comment-564</link>
		<dc:creator>Derek Allard</dc:creator>
		<pubDate>Sat, 10 May 2008 13:40:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrkirkland.com/codeigniter-language-file-translator/#comment-564</guid>
		<description>Super Nice!  I love the simplicity and effectiveness of this.  Great work both!</description>
		<content:encoded><![CDATA[<p>Super Nice!  I love the simplicity and effectiveness of this.  Great work both!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding a user to phpbb3 from an external script by Daniel</title>
		<link>http://www.mrkirkland.com/adding-a-user-to-phpbb3-from-an-external-script/#comment-563</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Fri, 02 May 2008 01:09:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrkirkland.com/adding-a-user-to-phpbb3-from-an-external-script/#comment-563</guid>
		<description>Thanks, works perfectly!</description>
		<content:encoded><![CDATA[<p>Thanks, works perfectly!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding a user to phpbb3 from an external script by lilferry</title>
		<link>http://www.mrkirkland.com/adding-a-user-to-phpbb3-from-an-external-script/#comment-562</link>
		<dc:creator>lilferry</dc:creator>
		<pubDate>Thu, 01 May 2008 04:09:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrkirkland.com/adding-a-user-to-phpbb3-from-an-external-script/#comment-562</guid>
		<description>oh hell. Disregard my above post, the post script on this site is filtering away the signs I wrote. Let me specify again:
Replace all â€ and â€˜ with &#34; or &apos;</description>
		<content:encoded><![CDATA[<p>oh hell. Disregard my above post, the post script on this site is filtering away the signs I wrote. Let me specify again:<br />
Replace all â€ and â€˜ with &quot; or &apos;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding a user to phpbb3 from an external script by lilferry</title>
		<link>http://www.mrkirkland.com/adding-a-user-to-phpbb3-from-an-external-script/#comment-561</link>
		<dc:creator>lilferry</dc:creator>
		<pubDate>Thu, 01 May 2008 04:07:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrkirkland.com/adding-a-user-to-phpbb3-from-an-external-script/#comment-561</guid>
		<description>Cheers! 
To make kirkland's code work: Replace all â€ and â€˜ with " or '.</description>
		<content:encoded><![CDATA[<p>Cheers!<br />
To make kirkland&#8217;s code work: Replace all â€ and â€˜ with &#8221; or &#8216;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding a user to phpbb3 from an external script by Russ</title>
		<link>http://www.mrkirkland.com/adding-a-user-to-phpbb3-from-an-external-script/#comment-430</link>
		<dc:creator>Russ</dc:creator>
		<pubDate>Mon, 07 Apr 2008 19:39:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrkirkland.com/adding-a-user-to-phpbb3-from-an-external-script/#comment-430</guid>
		<description>Looks like I missed the first part of the code when copying. I've listed full program below. Sorry about that.

session_begin();
$auth-&#62;acl($user-&#62;data);

/* the file with the actual goodies */
include($phpbb_root_path .'includes/functions_user.php');

$result = mysql_pconnect('server', 'database', 'password');
$result = mysql_select_db('database');
$query = "select * from users";
$result = mysql_query($query);
while ($row = mysql_fetch_assoc($result))
{
	$username = $row['username'];
	$password = $row['password'];
	$email = $row['email']
	$user_row = array(
		'username' =&#62; $username,
		'user_password' =&#62; md5($password), 
		'user_email' =&#62; $email,
		'group_id' =&#62; 2,     #Registered users group
		'user_timezone' =&#62; 0,
		'user_dst' =&#62; 1,
		'user_lang' =&#62; 'en',
		'user_type' =&#62; 0,
		'user_actkey' =&#62; '',
		'user_dateformat' =&#62; 'D M d, Y g:i a',
		'user_style' =&#62; 1,
		'user_regdate' =&#62; time(),
	);
	/* Now Register user */
	$phpbb_user_id = user_add($user_row);
}
echo 'finished';
?&#62;</description>
		<content:encoded><![CDATA[<p>Looks like I missed the first part of the code when copying. I&#8217;ve listed full program below. Sorry about that.</p>
<p>session_begin();<br />
$auth-&gt;acl($user-&gt;data);</p>
<p>/* the file with the actual goodies */<br />
include($phpbb_root_path .&#8217;includes/functions_user.php&#8217;);</p>
<p>$result = mysql_pconnect(&#8217;server&#8217;, &#8216;database&#8217;, &#8216;password&#8217;);<br />
$result = mysql_select_db(&#8217;database&#8217;);<br />
$query = &#8220;select * from users&#8221;;<br />
$result = mysql_query($query);<br />
while ($row = mysql_fetch_assoc($result))<br />
{<br />
	$username = $row['username'];<br />
	$password = $row['password'];<br />
	$email = $row['email']<br />
	$user_row = array(<br />
		&#8216;username&#8217; =&gt; $username,<br />
		&#8216;user_password&#8217; =&gt; md5($password),<br />
		&#8216;user_email&#8217; =&gt; $email,<br />
		&#8216;group_id&#8217; =&gt; 2,     #Registered users group<br />
		&#8216;user_timezone&#8217; =&gt; 0,<br />
		&#8216;user_dst&#8217; =&gt; 1,<br />
		&#8216;user_lang&#8217; =&gt; &#8216;en&#8217;,<br />
		&#8216;user_type&#8217; =&gt; 0,<br />
		&#8216;user_actkey&#8217; =&gt; &#8221;,<br />
		&#8216;user_dateformat&#8217; =&gt; &#8216;D M d, Y g:i a&#8217;,<br />
		&#8216;user_style&#8217; =&gt; 1,<br />
		&#8216;user_regdate&#8217; =&gt; time(),<br />
	);<br />
	/* Now Register user */<br />
	$phpbb_user_id = user_add($user_row);<br />
}<br />
echo &#8216;finished&#8217;;<br />
?&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding a user to phpbb3 from an external script by Russ</title>
		<link>http://www.mrkirkland.com/adding-a-user-to-phpbb3-from-an-external-script/#comment-429</link>
		<dc:creator>Russ</dc:creator>
		<pubDate>Mon, 07 Apr 2008 19:31:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrkirkland.com/adding-a-user-to-phpbb3-from-an-external-script/#comment-429</guid>
		<description>If the above code doesn't work then try replacing the single quotes in the code. I suspect these are changed when uploading to this message board. It was one of the main problems with the original code above.

Cheers
Russ</description>
		<content:encoded><![CDATA[<p>If the above code doesn&#8217;t work then try replacing the single quotes in the code. I suspect these are changed when uploading to this message board. It was one of the main problems with the original code above.</p>
<p>Cheers<br />
Russ</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding a user to phpbb3 from an external script by Russ</title>
		<link>http://www.mrkirkland.com/adding-a-user-to-phpbb3-from-an-external-script/#comment-428</link>
		<dc:creator>Russ</dc:creator>
		<pubDate>Mon, 07 Apr 2008 19:27:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrkirkland.com/adding-a-user-to-phpbb3-from-an-external-script/#comment-428</guid>
		<description>I tried the code above with no success, so I hacked it around for a while as below. It retrieves a list of users from a MySQL table called USERS which has 3 fields; USERNAME, PASSWORD, EMAIL.

This works fine for me on PHPBB 3. FTPed as addusers.php to my forum directory and activated with HTTP://www.domain.com/forum/addusers.php.

-------------------------------------------------------
#addusers.php
session_begin();
$auth-&#62;acl($user-&#62;data);

/* the file with the actual goodies */
include($phpbb_root_path .'includes/functions_user.php');

$result = mysql_pconnect('server', 'database', 'password');
$result = mysql_select_db('database');
$query = "select * from users";
$result = mysql_query($query);
while ($row = mysql_fetch_assoc($result))
{
	$username = $row['username'];
	$password = $row['password'];
	$email = $row['email'];
	$user_row = array(
		'username' =&#62; $username,
		'user_password' =&#62; md5($password), 
		'user_email' =&#62; $email,
		'group_id' =&#62; 2,     #Registered users group
		'user_timezone' =&#62; 0,
		'user_dst' =&#62; 1,
		'user_lang' =&#62; 'en',
		'user_type' =&#62; 0,
		'user_actkey' =&#62; '',
		'user_dateformat' =&#62; 'D M d, Y g:i a',
		'user_style' =&#62; 1,
		'user_regdate' =&#62; time(),
	);
	/* Now Register user */
	$phpbb_user_id = user_add($user_row);
}
echo 'finished';
?&#62;</description>
		<content:encoded><![CDATA[<p>I tried the code above with no success, so I hacked it around for a while as below. It retrieves a list of users from a MySQL table called USERS which has 3 fields; USERNAME, PASSWORD, EMAIL.</p>
<p>This works fine for me on PHPBB 3. FTPed as addusers.php to my forum directory and activated with HTTP://www.domain.com/forum/addusers.php.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
#addusers.php<br />
session_begin();<br />
$auth-&gt;acl($user-&gt;data);</p>
<p>/* the file with the actual goodies */<br />
include($phpbb_root_path .&#8217;includes/functions_user.php&#8217;);</p>
<p>$result = mysql_pconnect(&#8217;server&#8217;, &#8216;database&#8217;, &#8216;password&#8217;);<br />
$result = mysql_select_db(&#8217;database&#8217;);<br />
$query = &#8220;select * from users&#8221;;<br />
$result = mysql_query($query);<br />
while ($row = mysql_fetch_assoc($result))<br />
{<br />
	$username = $row['username'];<br />
	$password = $row['password'];<br />
	$email = $row['email'];<br />
	$user_row = array(<br />
		&#8216;username&#8217; =&gt; $username,<br />
		&#8216;user_password&#8217; =&gt; md5($password),<br />
		&#8216;user_email&#8217; =&gt; $email,<br />
		&#8216;group_id&#8217; =&gt; 2,     #Registered users group<br />
		&#8216;user_timezone&#8217; =&gt; 0,<br />
		&#8216;user_dst&#8217; =&gt; 1,<br />
		&#8216;user_lang&#8217; =&gt; &#8216;en&#8217;,<br />
		&#8216;user_type&#8217; =&gt; 0,<br />
		&#8216;user_actkey&#8217; =&gt; &#8221;,<br />
		&#8216;user_dateformat&#8217; =&gt; &#8216;D M d, Y g:i a&#8217;,<br />
		&#8216;user_style&#8217; =&gt; 1,<br />
		&#8216;user_regdate&#8217; =&gt; time(),<br />
	);<br />
	/* Now Register user */<br />
	$phpbb_user_id = user_add($user_row);<br />
}<br />
echo &#8216;finished&#8217;;<br />
?&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Internet Explorer Submit Button Horizontal Padding by Amanda C.</title>
		<link>http://www.mrkirkland.com/internet-explorer-submit-button-horizontal-padding/#comment-427</link>
		<dc:creator>Amanda C.</dc:creator>
		<pubDate>Mon, 07 Apr 2008 15:02:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrkirkland.com/internet-explorer-submit-button-horizontal-padding/#comment-427</guid>
		<description>Thank you so much for putting this out here.  I have been looking for a solution to this problem for a current project at work.  This works perfectly.</description>
		<content:encoded><![CDATA[<p>Thank you so much for putting this out here.  I have been looking for a solution to this problem for a current project at work.  This works perfectly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Facebook Presentation at Tokyo 2.0 by Chinarut</title>
		<link>http://www.mrkirkland.com/facebook-presentation-at-tokyo-20/#comment-426</link>
		<dc:creator>Chinarut</dc:creator>
		<pubDate>Mon, 07 Apr 2008 09:34:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrkirkland.com/facebook-presentation-at-tokyo-20/#comment-426</guid>
		<description>Hi Mr Kirkland!

I was looking to see if there was a facebook office in Tokyo and viola - you are the center of operations ;-)

I just took a quick breeze and wondering if you will be at the Web 2.0 meetup tomorrow?   There is an IT professional meetup next tue (15th) as well.

A quick 2 min breeze through your presentation tells me that you are the developer of the Sentence Game app and you shared your experience getting it out there?

I'm curious if you are based out of Tokyo or were just dropping in.

ok - this is all for now - I'm an avid facebook researcher myself and you can take a look at my (admittedly raw) notes here if you'd like:

http://chinarut.wikispaces.com/Facebook

Please drop me an email if you don't mind (coComment hasn't been so hot for me) - I'll be sure to get it when I arrive in Tokyo tomorrow (tue 8th) - be there until the 16th.

ok chat soon!

ps. the " " is valid in an email address - u may want to look into this :)</description>
		<content:encoded><![CDATA[<p>Hi Mr Kirkland!</p>
<p>I was looking to see if there was a facebook office in Tokyo and viola - you are the center of operations <img src='http://www.mrkirkland.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
I just took a quick breeze and wondering if you will be at the Web 2.0 meetup tomorrow?   There is an IT professional meetup next tue (15th) as well.</p>
<p>A quick 2 min breeze through your presentation tells me that you are the developer of the Sentence Game app and you shared your experience getting it out there?</p>
<p>I&#8217;m curious if you are based out of Tokyo or were just dropping in.</p>
<p>ok - this is all for now - I&#8217;m an avid facebook researcher myself and you can take a look at my (admittedly raw) notes here if you&#8217;d like:</p>
<p><a href="http://chinarut.wikispaces.com/Facebook" rel="nofollow">http://chinarut.wikispaces.com/Facebook</a></p>
<p>Please drop me an email if you don&#8217;t mind (coComment hasn&#8217;t been so hot for me) - I&#8217;ll be sure to get it when I arrive in Tokyo tomorrow (tue 8th) - be there until the 16th.</p>
<p>ok chat soon!</p>
<p>ps. the &#8221; &#8221; is valid in an email address - u may want to look into this <img src='http://www.mrkirkland.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Viral Facebook Applications Part 2 by Mr Kirkland</title>
		<link>http://www.mrkirkland.com/viral-facebook-applications-part-2/#comment-425</link>
		<dc:creator>Mr Kirkland</dc:creator>
		<pubDate>Sat, 29 Mar 2008 12:39:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrkirkland.com/viral-facebook-applications-part-2/#comment-425</guid>
		<description>Check out the follow up story:
http://www.mrkirkland.com/attention-developers-facebook-delete-applications-without-warning/

Basically facebook has yet to give an adequate explanation.</description>
		<content:encoded><![CDATA[<p>Check out the follow up story:<br />
<a href="http://www.mrkirkland.com/attention-developers-facebook-delete-applications-without-warning/" rel="nofollow">http://www.mrkirkland.com/attention-developers-facebook-delete-applications-without-warning/</a></p>
<p>Basically facebook has yet to give an adequate explanation.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
