<?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>[LINICKX].com &#187; WordPress</title>
	<atom:link href="http://www.linickx.com/archives/tag/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.linickx.com</link>
	<description>Moments of Genius followed by Trash.</description>
	<lastBuildDate>Fri, 27 Aug 2010 15:39:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>WordPress Custom Query for Custom Post Types and Taxonomy</title>
		<link>http://www.linickx.com/archives/3065/wordpress-custom-query-for-custom-post-types-and-taxonomy</link>
		<comments>http://www.linickx.com/archives/3065/wordpress-custom-query-for-custom-post-types-and-taxonomy#comments</comments>
		<pubDate>Wed, 25 Aug 2010 17:48:02 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=3065</guid>
		<description><![CDATA[I wanted to run a custom query against WP3.0 custom post types but all the documentation and google I found all pointed to posts in categories which doesn&#8217;t work if your post type isn&#8217;t post, this was my solution&#8230;. $my_query = $wp_query-&#38;gt;query; // Copy the existing query into a new one $my_query['posts_per_page'] = &#34;30&#34;; // [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to run a custom query against WP3.0 custom post types but all the documentation and google I found all pointed to posts in categories which doesn&#8217;t work if your post type isn&#8217;t <em>post</em>, this was my solution&#8230;.</p>
<pre class="brush: php;">
$my_query = $wp_query-&amp;gt;query; // Copy the existing query into a new one
$my_query['posts_per_page'] = &quot;30&quot;; // change the number we want displayed.
$my_query['orderby'] = &quot;title&quot;; // Sort by title.
$my_query['order'] = &quot;ASC&quot;; // 'A' first!
query_posts($my_query);  // Run our query.... normal service resumes.
</pre>
<p>Hopefully this post will give someone the <em>light bulb moment</em> they&#8217;re after.</p>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2010 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/archives/3065/wordpress-custom-query-for-custom-post-types-and-taxonomy/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xcode for WordPress Plug-in Developers</title>
		<link>http://www.linickx.com/archives/3007/xcode-for-wordpress-plug-in-developers</link>
		<comments>http://www.linickx.com/archives/3007/xcode-for-wordpress-plug-in-developers#comments</comments>
		<pubDate>Wed, 26 May 2010 19:42:04 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[SVN Commits]]></category>
		<category><![CDATA[xcode]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=3007</guid>
		<description><![CDATA[This post is an extension to this excellent article except with a subtle difference, I&#8217;m not interested in hacking the WP core, I&#8217;m writing a plug-in I&#8217;m going to assume that you&#8217;ve requested access to WordPress.org&#8217;s SVN repository, and you&#8217;ve found the admin panel and want to get your Xcode goodness hooked up to the [...]]]></description>
			<content:encoded><![CDATA[<p>This post is an extension to <a href="http://www.red-sweater.com/blog/141/livin-in-a-wordpress-hackers-paradise">this excellent article</a> except with a subtle difference, I&#8217;m not interested in hacking the WP core, I&#8217;m writing a plug-in <img src='http://www.linickx.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;m going to assume that you&#8217;ve <a href="http://wordpress.org/extend/plugins/add/">requested access</a> to WordPress.org&#8217;s SVN repository, and you&#8217;ve found the admin panel and want to get your Xcode goodness hooked up to the WP SVN.</p>
<p>To get started create a new Empty Xcode project.</p>
<table>
<tr>
<td>
<a href="http://www.linickx.com/files/2010/05/WP-Xcode-New-Empty-Project.png" rel="lightbox[3007]"><img src="http://www.linickx.com/files/2010/05/WP-Xcode-New-Empty-Project-150x150.png" alt="Screenshot of Xcode project chooser" title="WP Xcode New Empty Project" width="150" height="150" class="aligncenter size-thumbnail wp-image-3010" /></a>
</td>
<td>
<a href="http://www.linickx.com/files/2010/05/WP-Xcode-Empty-Linickx-Lifestream.png" rel="lightbox[3007]"><img src="http://www.linickx.com/files/2010/05/WP-Xcode-Empty-Linickx-Lifestream-150x150.png" alt="Empty XCode waiting for LINICKX LifeStream" title="WP Xcode Empty Linickx Lifestream" width="150" height="150" class="aligncenter size-thumbnail wp-image-3011" /></a>
</td>
</tr>
<tr>
<td><strong><em>Xcode project choose</em>r</strong>
</td>
<td>
<strong><em>Empty Project</em></strong>
</td>
</tr>
</table>
<p>From the menu bar select <code>SCM</code> then <code>Configure Repositories</code>, the window select the <code>+</code> to add a new repo, the username &#038; password pair are your wordpress.org credentials, you can find the URL to your SVN repo on the wordpress.org site. </p>
<table>
<tr>
<td>
<a href="http://www.linickx.com/files/2010/05/WordPress-dot-org-Admin-Interface.png" rel="lightbox[3007]"><img src="http://www.linickx.com/files/2010/05/WordPress-dot-org-Admin-Interface-150x150.png" alt="WordPress dot org Admin Interface" title="WordPress dot org Admin Interface" width="150" height="150" class="aligncenter size-thumbnail wp-image-3014" /></a>
</td>
</tr>
<tr>
<td> <em><strong>The WP.org admin interface</strong></em></td>
</tr>
</table>
<p>Next from the menu bar select <code>SCM</code> then <code>Repositories</code>, highlight the repo you&#8217;ve just created and choose checkout; you&#8217;re going to be asked for a folder to &#8220;save&#8221; the contents of the repo to, I chose inside my Xcode project folder.</p>
<table>
<tr>
<td>
<a href="http://www.linickx.com/files/2010/05/WP-Xcode-Config-Repo.png" rel="lightbox[3007]"><img src="http://www.linickx.com/files/2010/05/WP-Xcode-Config-Repo-150x150.png" alt="" title="WP Xcode Config Repo" width="150" height="150" class="aligncenter size-thumbnail wp-image-3015" /></a>
</td>
<td>
<a href="http://www.linickx.com/files/2010/05/WP-Xcode-Checkout.png" rel="lightbox[3007]"><img src="http://www.linickx.com/files/2010/05/WP-Xcode-Checkout-150x150.png" alt="Checking out with Xcode" title="WP Xcode Checkout" width="150" height="150" class="aligncenter size-thumbnail wp-image-3017" /></a>
</td>
</tr>
<tr>
<td>
<strong><em>Repo&#8217; Confi</em>g</strong>
</td>
<td>
<strong><em>Code Checkout</em></strong>
</td>
</tr>
</table>
<p>You now need to add those &#8220;checked out&#8221; files to you project, in the tree on the left, right/control click the blue project icon at the top and select add existing files, accept the defaults and the repo should be imported.</p>
<table>
<tr>
<td>
<a href="http://www.linickx.com/files/2010/05/WP-Xcode-Imported-Project.png" rel="lightbox[3007]"><img src="http://www.linickx.com/files/2010/05/WP-Xcode-Imported-Project-150x150.png" alt="Code imported" title="WP Xcode Imported Project" width="150" height="150" class="aligncenter size-thumbnail wp-image-3019" /></a>
</td>
</tr>
<tr>
<td>
<em><strong>Imported Code </strong></em>
</td>
</tr>
</table>
<p>These files now in the project need to be associated with the repo, this is done by highlighting the blue project icon and clicking the &#8220;Info&#8221; button, then click &#8220;Configure Roots &#038; SCM&#8221;; click the + button and choose your repo folder (again)&#8230; the dropdown on the right should automatically select the correct SCM.</p>
<table>
<tr>
<td>
<a href="http://www.linickx.com/files/2010/05/WP-Xcode-Project-LINICKX-LifeStream-Info.png" rel="lightbox[3007]"><img src="http://www.linickx.com/files/2010/05/WP-Xcode-Project-LINICKX-LifeStream-Info-150x150.png" alt="Project LINICKX LifeStream Info" title="WP Xcode Project LINICKX LifeStream Info" width="150" height="150" class="aligncenter size-thumbnail wp-image-3023" /></a>
</td>
<td>
<a href="http://www.linickx.com/files/2010/05/WP-Xcode-Edit-Project-Root.png" rel="lightbox[3007]"><img src="http://www.linickx.com/files/2010/05/WP-Xcode-Edit-Project-Root-150x150.png" alt="WP Xcode Edit Project Root" title="WP Xcode Edit Project Root" width="150" height="150" class="aligncenter size-thumbnail wp-image-3024" /></a>
</td>
</tr>
<tr>
<td><strong><em>Project Properties</em></strong></td>
<td><strong><em>Project Roots</em></strong></td>
</tr>
</table>
<p>If you now change a file / add / delete / etc it will appear under the SCM tree, you can right/control click and commit to the repo&#8230;. job done <img src='http://www.linickx.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<table>
<tr>
<td>
<a href="http://www.linickx.com/files/2010/05/WP-Xcode-readme-txt-changed.png" rel="lightbox[3007]"><img src="http://www.linickx.com/files/2010/05/WP-Xcode-readme-txt-changed-150x150.png" alt="WP Xcode readme txt changed" title="WP Xcode readme txt changed" width="150" height="150" class="aligncenter size-thumbnail wp-image-3026" /></a>
</td>
</tr>
<tr>
<td><strong><em>Yay it works</em>!</strong></td>
</tr>
</table>
<p>Very quickly you&#8217;re going to find out that you want to test your changes prior to commiting them, to do this you may want to copy your files upto a webserver&#8230;. I get Xcode to do that for me, using <a href="http://code.google.com/p/macfuse/">macfuse</a> to mount my webroot via ssh but for this example I&#8217;ll create a directory on the desktop &#8230; you also need to create any subdirectories you may need..  I have to create &#8220;admin&#8221;.</p>
<p>To copy the files we&#8217;re use an Xcode target, from the menu bar choose <code>Project</code> then <code>New Target</code> then <code>Copy Files Target</code>, I called my new target <em>CopyFile</em>. Using the info button change the absolute path of the copy &#8211; e.g. /Users/Nick/Desktop/LL &#8230; now here I ran into a problem (<em>suggestions welcome</em>)&#8230; next I created extra copy build phases for each subdirectory. Control/right click your Target ( i.e CopyFiles) then choose Add, New Build Phase, New Copy Files Build Phase&#8230; I then set the absolute path of this &#8220;sub target&#8221; to /Users/nick/Desktop/LL/admin/ to represent my admin subdirectory.</p>
<p>Finally DRAG down the files into their correct target, all being well and a fair wind clicking &#8220;BUILD&#8221; will cause your files to be copied into your directory. You can now make changes, click build to test, and then commit them to subversion when you&#8217;re happy <img src='http://www.linickx.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<table>
<tr>
<td>
<a href="http://www.linickx.com/files/2010/05/WP-Xcode-Finished-11-37-41.png" rel="lightbox[3007]"><img src="http://www.linickx.com/files/2010/05/WP-Xcode-Finished-11-37-41-150x150.png" alt="WP Xcode - Finished" title="WP Xcode - Finished" width="150" height="150" class="aligncenter size-thumbnail wp-image-3027" /></a></td>
</tr>
<tr>
<td><strong><em>Finished!</em></strong></td>
</tr>
</table>
<p>The red sweater post that inspires this now talks about creating a RUN shortcut to automatically open a web browser for testing, however mine didn&#8217;t work&#8230; I got this error &#8220;<em>The program being debugged is not being run</em>&#8220;&#8230; suggestions to fix welcome!</p>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2010 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/archives/3007/xcode-for-wordpress-plug-in-developers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>phpbb_recent_topics version 0.6</title>
		<link>http://www.linickx.com/archives/2998/phpbb_recent_topics-version-0-6</link>
		<comments>http://www.linickx.com/archives/2998/phpbb_recent_topics-version-0-6#comments</comments>
		<pubDate>Fri, 21 May 2010 14:13:29 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[phpBB]]></category>
		<category><![CDATA[phpbb_recent_topics]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=2998</guid>
		<description><![CDATA[Admin GUI It&#8217;s that time again, enough things have happened in the support forum to warrant another version. phpbb_recent_topics 0.6 owes a debt of gratitude to number3nl he has worked very hard to push in two main new features and his work was so good it only needed a couple of minor tweaks from myself. [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right">
<table>
<tr>
<td>
<div id="attachment_1935" class="wp-caption aligncenter" style="width: 160px"><a href="http://www.linickx.com/files/2009/08/phpbb_recent_topix_v05x.png" rel="lightbox[2998]"><img src="http://www.linickx.com/files/2009/08/phpbb_recent_topix_v05x-150x150.png" alt="Screenshot phpbb_recent_topics admin page" title="Screenshot phpbb_recent_topics admin page" width="150" height="150" class="size-thumbnail wp-image-1935" /></a><p class="wp-caption-text">Screenshot phpbb_recent_topics admin page</p></div>
</td>
</tr>
<tr>
<td align="center">Admin GUI</td>
</tr>
</table>
</div>
<p>It&#8217;s that time again, enough things have happened in <a href="http://wordpress.org/tags/phpbb-recent-topics">the support forum</a> to warrant another version.</p>
<p>phpbb_recent_topics 0.6 owes a debt of gratitude to <a href="http://wordpress.org/support/profile/5927575">number3nl</a> he has worked very hard to push in two main new features and his work was so good it only needed a couple of minor tweaks from myself.</p>
<p><strong>New Features!</strong></p>
<ul>
<li>The loooong awaited <strong><em>phpBB recent post</em></strong>s feature has been enabled, simply tick the box that says &#8220;Sort results by post date&#8221; and you&#8217;re away!</li>
<li>Tooltips are here! Yup if you&#8217;re into that kind of thing enabling tool tips will show a snippet of the post content to your visitors prior to them clicking on any links.</li>
<li>Admin UI Error Messages are here; the GUI will now inform you if you&#8217;re connected to phpBB.</li>
</ul>
<p><strong>Bug Fixes.</strong></p>
<ul>
<li>The variables in display.php now match those of admin-display.php; hopefully this will make community contribution simpler.</li>
<li>Uninstall.php has been added so removal of the plugin is more comprehensive.</li>
</ul>
<p><strong>A note to upgrader&#8217;s.</strong></p>
<ul>
<li>If you&#8217;re using secure database connectivity you&#8217;ll need to GRANT access to the posts table&#8230;.<br />
<code>GRANT SELECT ON phpbb_database.phpbb_posts TO wp_user@localhost;</code></li>
</ul>
<p><strong><a href="http://wordpress.org/extend/plugins/phpbb-recent-topics/">Download phpBB_Recent_Topics_0.6 from wordpress.org</a></strong></p>
<p>The usual stuff now follows&#8230;.</p>
<hr />
<p><strong>The Installation</strong></p>
<p><u>Before starting</u> you need to get your database configuration sorted. So, are you going to connect to the PHPBB Database securely or Insecurely?</p>
<p>To connect Securely you need to GRANT access TO WordPress FROM phpbb.</p>
<p><strong>How to GRANT wordpress read only access to phpBB ?</strong><br />
If you don&#8217;t know it already you need to find your wordpress mysql user id, it&#8217;ll be in wp-config.php</p>
<pre>define('DB_USER', 'wp_user');     // Your MySQL username</pre>
<p>and you should have already found your phpbb database &amp; table for the above.<br />
You need to type the following syntax into your mysql database</p>
<pre>GRANT SELECT ON phpbb_database.phpbb_topics TO wp_user@localhost;</pre>
<p><strong>AND</strong></p>
<pre>GRANT SELECT ON phpbb_database.phpbb_forums TO wp_user@localhost;</pre>
<p><strong>AND</strong></p>
<pre>GRANT SELECT ON phpbb_database.phpbb_posts TO wp_user@localhost;</pre>
<p>this can be achieved by logging into <a href="http://www.phpmyadmin.net">phpmyadmin</a> as your phpbb user, selecting SQL and pasting the correct GRANT into the text box.</p>
<p><strong>WordPress Installation</strong></p>
<ul>
<li>Unzip phpbb_recent_topics.tgz in your `/wp-content/plugins/` directory. (<em>You&#8217;ll have a new directory, with this plugin in /wp-content/plugins/phpbb_recent_topics</em>)</li>
<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress</li>
<li>Configure the plugin, you need to tell wordpress about phpbb, this is done in the wordpress menu &#8216;Settings&#8217; -&gt; &#8216;phpBB Recent Topics&#8217;<br />
The following Settings are required:</p>
<ul>
<li>* The name of your phpBB database (<em>e.g phpbb</em>)</li>
<li>* The name of the table where topics are held (<strong>the default is </strong><strong>phpbb_topics</strong> )</li>
<li>* The full url of your forum for links (<em>e.g. http://www.mydomain.com/forum</em>)</li>
<li>* The number of topics to show. (<em>If left blank you get 5</em>)</li>
<li>* The Date Formatting, i.e. &#8220;d/M/y &#8211; g:i a&#8221; similar to the WordPress &#8220;General Settings&#8221; </li>
</ul>
</li>
<li>The use of Insecure connectivity is optional &#8211; See Below</li>
<li>Tick the boxes of any Forums you don&#8217;t want this plugin to show posts from</li>
<li>Hit &#8216;Update Options&#8221;</li>
<li>To output the list of topics in a page or post&#8230;
<ul>
<li>* create a new page/post, type {phpbb_recent_topics} , hit &#8216;Publish&#8217; or &#8216;Create new page&#8217;</li>
</ul>
<p>To output the list of topics in your theme sidebar using the widget&#8230;</p>
<ul>
<li> * click &#8220;design&#8221; in the dashboard</li>
<li> * click &#8220;widgets&#8221;</li>
<li> * next to  <strong>phpBB Recent Topics click</strong> &#8220;add&#8221;</li>
<li> * click &#8220;save changes&#8221;</li>
</ul>
<p>To output the list of topics in your theme sidebar using a template tag&#8230;</p>
<ul>
<li>* edit sidebar.php and inside &lt;div id=&#8221;sidebar&#8221;&gt; type&#8230;
<pre>&lt;?php
if (function_exists('phpbb_topics')) {
phpbb_topics();
}
?&gt;</pre>
</li>
</ul>
</li>
</ul>
<p><strong>What is Insecure MySQL Connectivity &#038; How do I use it?</strong><br />
If you need to you can connect in a less secure manner, the connection details held in your PHPBB config.php can be loaded into WordPress. This is insecure becuase the phpbb3 credentials are store in clear text, this is bad cuase if someone somehow comprised WordPress they&#8217;d have full access to PHPBB.</p>
<p>To use, tick the &#8220;Enable Insecure Database Connection&#8221; box, and submit, when the page re-freshes you&#8217;ll have some more boxes to populate, from your phpbb config.php fill in</p>
<p><code><br />
$dbuser = phpbb MySQL Database UserName<br />
$dbpasswd = phpbb MySQL Database Password<br />
$dbhost = phpbb MySQL Server<br />
</code></p>
<p>Click update, and you should be connected!</p>
<p><strong>Support</strong><br />
I&#8217;ve always been honest about <u>support, there isn&#8217;t any</u>. Basically I write this for my own needs and then publish it for you to use for free. You&#8217;re more than welcome to post comments here and if you need support the community <a href="http://wordpress.org/tags/phpbb-recent-topics?forum_id=10#postform"><strong>phpbb-recent-topics forum</strong></a> is available, I do read every post there but we all have busy lives and I make no promises on how quickly I&#8217;ll reply to you.</p>
<p><strong>Finally Subversion</strong><br />
The source for this plugin is in the wordpress subversion, you can checkout the trunk directly from <a href="http://plugins.svn.wordpress.org/phpbb-recent-topics/">here</a>, if you weren&#8217;t aware wp.org also auto-magically creates a nightly build of any developments <a href="http://downloads.wordpress.org/plugin/phpbb-recent-topics.zip">here</a>.</p>
<p>I hope you enjoy my plug-in!</p>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2010 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/archives/2998/phpbb_recent_topics-version-0-6/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Dear Edgar, in response to your lifestream questions.</title>
		<link>http://www.linickx.com/archives/2913/dear-edgar-in-responds-to-your-lifestream-questions</link>
		<comments>http://www.linickx.com/archives/2913/dear-edgar-in-responds-to-your-lifestream-questions#comments</comments>
		<pubDate>Fri, 18 Dec 2009 11:31:01 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[LINICKX-LifeStream]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=2913</guid>
		<description><![CDATA[I&#8217;ve recently received this message thru my contact form, now it is either a very odd spam/phishing message or Edgar made a mistake on his email address as the domain doesn&#8217;t exist. Either way I&#8217;ve been asked QU 2 before so here&#8217;s my response while I update the FAQ Dear Creator of Plugin, thank you [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently received this message thru <a href="http://www.linickx.com/contact">my contact form</a>, now it is either a very odd spam/phishing message or Edgar made a mistake on his email address as <a href="http://dns-tools.domaintools.com/?q=icty.am&#038;m=dns">the domain doesn&#8217;t exist</a>.  Either way I&#8217;ve been asked QU 2 before so here&#8217;s my response while I update <a href="http://wordpress.org/extend/plugins/linickx-lifestream/faq/">the FAQ</a> <img src='http://www.linickx.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<blockquote><p>
Dear Creator of Plugin, thank you very much for your great job. I am trying to use it in web site.<br />
i am trying to use your plugin LINICKX LifeStream v0.2 and i have 2 questions.<br />
1. I inserted 23 URL of Feeds but plugin loading only 3 of them, why?<br />
2. Could I load also content of posts, if yes than how?<br />
great thanks!<br />
best regards<br />
Edgar
</p></blockquote>
<p>Actually Edgar I&#8217;ve only tested with about 5 feeds, so I will load up my test site and see what happens, it could be possible that your feed 4 is corrupt and blocking the rest.</p>
<p>If you wish to create posts from feeds see <a href="http://wordpress.org/extend/plugins/feedwordpress/">FeedWordPress by Charles Johnson</a>, I was planning to include this functionality but issues mean that now I&#8217;m not bothering, <a href="http://plugins.trac.wordpress.org/browser/linickx-lifestream/trunk/run.php#L236">see line L236 of run.php</a>, feel free to submit a patch if you can fix it.</p>
<p>Festive Regards,</p>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2010 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/archives/2913/dear-edgar-in-responds-to-your-lifestream-questions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LINICKX LifeStream V0.2</title>
		<link>http://www.linickx.com/archives/2751/linickx-lifestream-v0-2</link>
		<comments>http://www.linickx.com/archives/2751/linickx-lifestream-v0-2#comments</comments>
		<pubDate>Thu, 10 Dec 2009 13:15:08 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[LINICKX-LifeStream]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=2751</guid>
		<description><![CDATA[Version 0.2 is the first feature update to my LINICKX Lifestream plug-in. This version incorporates all the minor bug fixes from version 0.1 -> 0.1.3 and includes what I call my &#8220;Troubleshooting Feature Pack&#8221;. Version 0.1.x was plagued by a hidden multi-post issue, so not only is this fixed in V0.2, but I&#8217;ve included the [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_2901" class="wp-caption alignright" style="width: 160px"><a href="http://www.linickx.com/files/2009/12/v2-screenshot-1-800.png" rel="lightbox[2751]"><img src="http://www.linickx.com/files/2009/12/v2-screenshot-1-800-150x150.png" alt="Screen-shot of config screen" title="LINICKX LifeStream Admin Screen-Shot" width="150" height="150" class="size-thumbnail wp-image-2901" /></a><p class="wp-caption-text">Screen-shot of config screen</p></div>
<p>Version 0.2 is the first feature update to my LINICKX Lifestream plug-in. This version incorporates all the minor bug fixes from version 0.1 -> 0.1.3 and includes what I call my &#8220;Troubleshooting Feature Pack&#8221;.</p>
<p>Version 0.1.x was plagued by a hidden multi-post issue, so not only is this fixed in V0.2, but I&#8217;ve included the tools used by myself to fix the issue. If you&#8217;ve been effected by this, use the factory reset option to clear out the lifestream plug-in, the next time it runs new posts will be created of all your feeds&#8230; so yes you will get double posts&#8230; but that will then be the last time it happens! <img src='http://www.linickx.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Plug-in Features:</strong></p>
<ul>
<li>Admin Feature Pack (<em>NEW</em>)<br />
Verbose Cron Mode, now you can see what the plug-in is doing!<br />
View the contents of the Lifestream Feed DB<br />
View the URLS, Tags &#038; Categories stored in the plugin<br />
Factory Reset, remove all the settings without having to uninstall -> re-install
</li>
<li>Stream Any Feed.<br />
Most internet services like digg, twitter, lastfm and the like support RSS feeds of your activity, so you can stream any service even if I haven&#8217;t heard about it yet!</li>
<li>Posts are created from the feeds/stream.<br />
Each Feed item creates a new post, you can tag &amp; categorise your posts to give each stream a different look &amp; feel in your WordPress templates.</li>
<li>No dependencies.<br />
LINICKX LifeStream uses WordPress functions to do it&#8217;s work, so yes it&#8217;ll work on PHP4 &amp; PHP5 and you don&#8217;t need to update simplepie or an-other dependancy.</li>
<li>Flexible updating.<br />
By default LINICKX LifeStream should just work, WordPress will fetch the feeds every 5 minutes and store them in the WP Database, but you can change that. If you want to cron your updates every 1 minute you can, if you want the DB store in a file not in MySQL that&#8217;s not a problem either.</li>
</ul>
<p><strong>Bug Fixes</strong></p>
<ul>
<li>Version 0.2 Multi-Post issue &#8211; <a href="http://wordpress.org/support/topic/330243">http://wordpress.org/support/topic/330243</a></li>
<li>Pushed Version 0.1.3 more bug fixes; 0.1.2 broke auto updates, so 0.1.3 fixes it again!<br />
linickx.com was having execution timeout issues, so theres a patch to fix that for other users<br />
I&#8217;ve also introduced a config.php so that upgrades do not overwrite <code>$WPDIR</code> set by users.</li>
<li>Pushed version 0.1.2 to fix error in dashboard reported by <a href="http://www.aowao.de/">Markus</a> .</li>
<li>Pushed version 0.1.1 as the directory path changed when wordpress.org created their .zip file&#8230; all should be working again.</li>
</ul>
<p>Right now on LINICKX.com this plugin is streaming <a href="http://www.linickx.com/archives/tag/digg">Digg</a>, <a href="http://www.linickx.com/archives/tag/google-reader">Google Reader</a> and <a href="http://www.linickx.com/archives/category/blog/sync/svn/wp">WordPress Commits</a>&#8230; keep an eye for new things streamed such as delicious &#038; last fm <img src='http://www.linickx.com/wp/wp-includes/images/smilies/icon_cool.gif' alt=':cool:' class='wp-smiley' /> </p>
<div style="border: 2px dotted #0000FF; padding: 0.5em">
<ul>
<li><strong><em><a href="http://wordpress.org/extend/plugins/linickx-lifestream/">Download LINICKX LifeStream from WordPress.org</a></em></strong></li>
<li><a href="http://wordpress.org/tags/linickx-lifestream?forum_id=10#postform">Get <strong>Support and Help</strong> on WordPress.org</a></li>
<li><a href="http://plugins.trac.wordpress.org/newticket?component=linickx-lifestream&amp;owner=linickx">Submit <strong>Bugs and Patches</strong> to Trac</a></li>
</ul>
</div>
<p><strong>I&#8217;m still looking for help.</strong><br />
If you think you can javascript/ajax the admin interface, or my plug-in WordPress MU compatible, <a href="http://www.linickx.com/contact">please let me know</a>.</p>
<p><em>Disclaimer</em><br />
Plug-in development is a hobby, I have a full time job that takes priority. Feel free to leave comments on this post but ask support questions to the WordPress community. I will update this plugin as and when I need features to improve linickx.com and will consider any patches submitted including any good ideas you have.</p>
<p>If you use this plug-in, <a href="http://www.linickx.com/donate"><strong>please consider donating</strong></a> as I give this code away for free and giving something back is good for your kama <img src='http://www.linickx.com/wp/wp-includes/images/smilies/icon_cool.gif' alt=':cool:' class='wp-smiley' /> </p>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2010 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/archives/2751/linickx-lifestream-v0-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Version 0.1.3</title>
		<link>http://www.linickx.com/archives/2677/version-0-1-3</link>
		<comments>http://www.linickx.com/archives/2677/version-0-1-3#comments</comments>
		<pubDate>Mon, 09 Nov 2009 15:28:38 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[LINICKX-LifeStream]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=2677</guid>
		<description><![CDATA[I&#8217;m learning a lot with this plug-in development, it seems to be a lot more difficult than stuff I&#8217;ve done in the past. In just a few days I&#8217;ve had to push out 3 bug fix releases! 0.1.3 has fixed the following.. 0.1.2 broke auto updates. Basically there was an error message in the dashboard [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m learning a lot with <a href="http://wordpress.org/extend/plugins/linickx-lifestream/">this plug-in development</a>, it seems to be a lot more difficult than stuff I&#8217;ve done in the past.</p>
<p>In just a few days I&#8217;ve had to push out 3 bug fix releases! 0.1.3 has fixed the following..</p>
<p><strong>0.1.2 broke auto updates.</strong><br />
Basically there was an error message in the dashboard that a user was complaining about, upon fixing this I realised that auto-updating stopped working&#8230; I&#8217;m using cron updating so I didn&#8217;t spot this right away. I have now re-tested auto updates, and it is working for me in 0.1.3</p>
<p><strong>Execution timeout issues</strong><br />
linickx.com was having execution timeout issues, i.e. the script was being terminated by a low value in php.ini. <code>set_time_limit(20)</code> now happens before each fetch_feed to give each http request an extra 20seconds of execution time, I&#8217;ve also setup an is_running variable so multiple fetchs don&#8217;t happen at the same time, this should fix the multi-post issue I&#8217;m having here too!</p>
<p><strong>config.php</strong><br />
I&#8217;ve also introduced a config.php so that upgrades do not overwrite <code>$WPDIR</code> set by users. It&#8217;s become apparent that users want to use cron to update their feeds, since run.php gets overwtitten on every upgrade then users would need to re-edit the file, this would become quiet annoying. Copy config.sample.php to config.php and users shouldn&#8217;t have to worry about upgrades breaking this as the package will be re-pushing the sample leaving your file un-changed&#8230; this is exactly how WordPress handle this issue in the core.</p>
<p><strong>Fingers Crossed!</strong><br />
I&#8217;m hoping that&#8217;s the end of the bug fix releases and I can get on with Version 0.2 will be a feature release <img src='http://www.linickx.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2010 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/archives/2677/version-0-1-3/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Version 0.1.1</title>
		<link>http://www.linickx.com/archives/2659/version-0-1-1</link>
		<comments>http://www.linickx.com/archives/2659/version-0-1-1#comments</comments>
		<pubDate>Fri, 06 Nov 2009 22:09:41 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[LINICKX-LifeStream]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=2659</guid>
		<description><![CDATA[So the first few issues are flowing in&#8230; the package on wordpress.org didn&#8217;t work&#8230; I developed the plugin in a folder called lnx_lifestream but wordpress.org&#8217;s fancy system changed the path to linickx-lifestream &#8211; DOH! There was also an FAQ missing from the readme.txt, ie how to resolve the error message&#8230; Can&#8217;t find WordPress, edit $WPDIR [...]]]></description>
			<content:encoded><![CDATA[<p>So the first few issues are flowing in&#8230; the package on wordpress.org didn&#8217;t work&#8230; I developed the plugin in a folder called lnx_lifestream but wordpress.org&#8217;s fancy system changed the path to linickx-lifestream &#8211; DOH!</p>
<p>There was also an FAQ missing from the readme.txt, ie how to resolve the error message&#8230;</p>
<blockquote><p>Can&#8217;t find WordPress, edit $WPDIR in run.php</p></blockquote>
<p>This has now been fixed (<a href="http://wordpress.org/extend/plugins/linickx-lifestream/faq/">link to faq)</a>) but does shed light on a new issue&#8230; any changes to run.php get over-written on upgrades, I will need to think of a new plan to overcome this!</p>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2010 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/archives/2659/version-0-1-1/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing LINICKX LifeStream V0.1</title>
		<link>http://www.linickx.com/archives/2524/introducing-linickx-lifestream-v0-1</link>
		<comments>http://www.linickx.com/archives/2524/introducing-linickx-lifestream-v0-1#comments</comments>
		<pubDate>Fri, 06 Nov 2009 14:23:50 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[LINICKX-LifeStream]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=2524</guid>
		<description><![CDATA[UPDATE: This Plugin has been updated, the below links to the new file, but please comment on the new post, thanks. I&#8217;m proud to share with the WordPress community my new plugin, LINICKX LifeStream I&#8217;ve been trying to get more LifeStreaming into LINICKX.com for a while, as I&#8217;ve struggled to find an appropriate solution I&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<p style="border: 2px dotted #ff0000; padding: 0.5em; text-align: center"> <strong>UPDATE</strong>: This Plugin has been updated, the below links to the new file, but please <a href="http://www.linickx.com/archives/2751/linickx-lifestream-v0-2">comment on the new post</a>, <em>thanks</em>.</p>
<p>I&#8217;m proud to share with the WordPress community my new plugin, LINICKX LifeStream <img src='http://www.linickx.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;ve been trying to get more LifeStreaming into LINICKX.com for a while, as I&#8217;ve struggled to find an appropriate solution I&#8217;ve decided to write my own.</p>
<p><strong>Plug-in Features:</strong></p>
<ul>
<li>Stream Any Feed.<br />
Most internet services like digg, twitter, lastfm and the like support RSS feeds of your activity, so you can stream any service even if I haven&#8217;t heard about it yet!</li>
<li>Posts are created from the feeds/stream.<br />
Each Feed item creates a new post, you can tag &amp; categorise your posts to give each stream a different look &amp; feel in your WordPress templates.</li>
<li>No dependencies.<br />
LINICKX LifeStream uses WordPress functions to do it&#8217;s work, so yes it&#8217;ll work on PHP4 &amp; PHP5 and you don&#8217;t need to update simplepie or an-other dependancy.</li>
<li>Flexible updating.<br />
By default LINICKX LifeStream should just work, WordPress will fetch the feeds every 5 minutes and store them in the WP Database, but you can change that. If you want to cron your updates every 1 minute you can, if you want the DB store in a file not in MySQL that&#8217;s not a problem either.</li>
</ul>
<p>LINICKX Lifestream is currently feeding both <a href="http://www.linickx.com/archives/tag/digg">my Digg</a> &amp; <a href="http://www.linickx.com/archives/tag/google-reader">Google Reader posts</a>; in general I&#8217;m pretty poor at updating <a href="http://wordpress.org/extend/plugins/profile/linickx">my plug-ins</a> as this is a hobby, but since this project is part of my website and not a favour for a friend (<em>like the others</em>) I&#8217;m hoping to do a better job.</p>
<div style="border: 2px dotted #0000FF; padding: 0.5em">
<ul>
<li><strong><em><a href="http://wordpress.org/extend/plugins/linickx-lifestream/">Download LINICKX LifeStream from WordPress.org</a></em></strong></li>
<li><a href="http://wordpress.org/tags/linickx-lifestream?forum_id=10#postform">Get <strong>Support and Help</strong> on WordPress.org</a></li>
<li><a href="http://plugins.trac.wordpress.org/newticket?component=linickx-lifestream&amp;owner=linickx">Submit <strong>Bugs and Patches</strong> to Trac</a></li>
</ul>
</div>
<p><strong>I&#8217;m looking for help too!</strong><br />
The admin interface is a bit &#8220;clunky&#8221;, the reason being I don&#8217;t know javascript, if you do please consider writing a patch <img src='http://www.linickx.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
I also think this plugin would work well for WordPresMU users, but I don&#8217;t use it so if you do what changes need to be made to make this work for you?</p>
<p>You can download the source from here: <a href="http://plugins.svn.wordpress.org/linickx-lifestream/">http://plugins.svn.wordpress.org/linickx-lifestream/</a> or <a href="http://plugins.trac.wordpress.org/browser/linickx-lifestream/">Browse Trac</a></p>
<p><em>Disclaimer</em><br />
As with my other plug-ins this is a hobby, I have a full time job that takes priority. Feel free to leave comments here but ask support questions to the WordPress community. I will update this plugin as and when I need features to improve linickx.com but will consider any patches submitted and any good ideas you have.</p>
<p>If this plugin has been some use to you, <a href="http://www.linickx.com/donate"><strong>please consider donating</strong></a> as I give this code away for free and giving something back will make you feel good <img src='http://www.linickx.com/wp/wp-includes/images/smilies/icon_cool.gif' alt=':cool:' class='wp-smiley' /> </p>
<p><strong>UPDATE(s)</strong>: </p>
<ul>
<li>Pushed version 0.1.1 as the directory path changed when wordpress.org created their .zip file&#8230; all should be working again.</li>
<li>Pushed version 0.1.2 to fix error in dashboard reported by <a href="http://www.aowao.de/">Markus</a> <a href="http://www.linickx.com/archives/2524/introducing-linickx-lifestream-v0-1/comment-page-1#comment-10859">below</a>.</li>
<li>Pushed Version 0.1.3 more bug fixes; 0.1.2 broke auto updates, so 0.1.3 fixes it again!<br />
linickx.com was having execution timeout issues, so theres a patch to fix that for other users<br />
I&#8217;ve also introduced a config.php so that upgrades do not overwrite <code>$WPDIR</code> set by users.</li>
</ul>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2010 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/archives/2524/introducing-linickx-lifestream-v0-1/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Get ready for LINICKX LifeStream!</title>
		<link>http://www.linickx.com/archives/2520/get-ready-for-linickx-lifestream</link>
		<comments>http://www.linickx.com/archives/2520/get-ready-for-linickx-lifestream#comments</comments>
		<pubDate>Thu, 05 Nov 2009 12:53:06 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[LifeStream]]></category>
		<category><![CDATA[LINICKX-LifeStream]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=2520</guid>
		<description><![CDATA[Colleagues have noticed that in my spare time at work I&#8217;ve been &#8220;getting my geek on!&#8221; the definition being a vi window of code on one screen and google open in the other Linickx LifeStream will be a new WordPress plugin which allows you to life stream ANY feed. I&#8217;ve been having issues with FeedWordPress [...]]]></description>
			<content:encoded><![CDATA[<p>Colleagues have noticed that in my spare time at work I&#8217;ve been &#8220;getting my geek on!&#8221; the definition being a vi window of code on one screen and google open in the other <img src='http://www.linickx.com/wp/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Linickx LifeStream will be a new WordPress plugin which allows you to life stream ANY feed. I&#8217;ve been having issues with FeedWordPress and to be honest it didn&#8217;t really do what I wanted; now there are already may <a href="http://wordpress.org/extend/plugins/tags/lifestream">wordpress lifestream plug-ins</a>, but mine will be different.</p>
<p><strong>Difference 1</strong>: The plug-in isn&#8217;t service dependant&#8230; i.e. you don&#8217;t stream your twitter account or your LastFM account, you stream the feed. What this means is that when tomorrows-wizzy-new-service is launched you don&#8217;t have to wait for me to update the plug-in. It also means you can stream odd stuff, such as I&#8217;m going to stream my commits to the WordPress plug-in repo <img src='http://www.linickx.com/wp/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><strong>Difference 2</strong>: No Requirements. The requirements for this are the same as <a href="http://wordpress.org/about/requirements/">the WordPress requirements</a>. What this means is yes it works on PHP4 and no you don&#8217;t need a separate installation of simplepie.</p>
<p><strong>Difference 3</strong>: No Lifestream Pages, extra databases or tables. LifeStream feeds get created as &#8220;normal&#8221; WordPress posts, so if you digg something a post is created and you can do all the normal things like tag &amp; categorize the post.</p>
<p>I&#8217;m in the process of finishing the package and installing the plug-in here on linickx.com but <strong>when it&#8217;s ready</strong> you&#8217;ll be able to&#8230;</p>
<p style="text-align: center;"><a href="http://wordpress.org/extend/plugins/linickx-lifestream/">Download LINICKX LifeStream Here</a></p>
<p>With a little luck I&#8217;ll be able to remove <a href="http://www.linickx.com/archives/630/delicious-bad-behavior">this annoyance</a> and directly stream delicious and <a href="http://www.linickx.com/archives/2061/google-reader-lifestream-offline">get google reader working again</a>.</p>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2010 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/archives/2520/get-ready-for-linickx-lifestream/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Submit Bugs to TRAC</title>
		<link>http://www.linickx.com/archives/1879/submit-bugs-to-trac</link>
		<comments>http://www.linickx.com/archives/1879/submit-bugs-to-trac#comments</comments>
		<pubDate>Sat, 22 Aug 2009 10:11:31 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[phpBB]]></category>
		<category><![CDATA[phpbb_recent_topics]]></category>
		<category><![CDATA[root-cookie]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[trac]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=1879</guid>
		<description><![CDATA[Support for linickx plugins has always been community driven, but recently I&#8217;ve had a few bugs and patches submitted via email. To make like simpler I&#8217;ve found that I can track bugs using trac &#8211; bad pun! Here are some links PHPBB Recent Topics Get Support for phpbb_recent_topics Here Submit Bugs &#038; Patches for phpbb_recent_topics [...]]]></description>
			<content:encoded><![CDATA[<p>Support for linickx plugins has always been <a href="http://wordpress.org/support/">community driven</a>, but recently I&#8217;ve had a few bugs and patches submitted via email. </p>
<p>To make like simpler I&#8217;ve found that I can track bugs using trac &#8211; bad pun!</p>
<p>Here are some links <img src='http://www.linickx.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<ul>
<li>PHPBB Recent Topics
<ul>
<li><a href="http://wordpress.org/tags/phpbb-recent-topics?forum_id=10#postform">Get Support for phpbb_recent_topics Here</a></li>
<li><a href="http://plugins.trac.wordpress.org/newticket?component=phpbb-recent-topics&#038;owner=linickx">Submit Bugs &#038; Patches for phpbb_recent_topics Here</a></li>
</ul>
</li>
<li>
Root Cookie</p>
<ul>
<li><a href="http://wordpress.org/tags/root-cookie?forum_id=10#postform">Get Support for root-cookie Here</a></li>
<li><a href="http://plugins.trac.wordpress.org/newticket?component=root-cookie&#038;owner=linickx">Submit Bugs &#038; Patches for root-cookie Here</a></li>
</ul>
</li>
</ul>
<p>The difference between the two is simple: if you want help then click the support link if you want <strong>TO</strong> help then file a bug or submit a patch <img src='http://www.linickx.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img src="http://www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png" alt="Nick" /> <hr/>Copyright &copy; 2010 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/archives/1879/submit-bugs-to-trac/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
