<?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>Ruben Causyn</title>
	<atom:link href="http://rubencausyn.be/feed/" rel="self" type="application/rss+xml" />
	<link>http://rubencausyn.be</link>
	<description>Broadcasting since 1984</description>
	<lastBuildDate>Thu, 15 Dec 2011 11:59:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Snippet: Show user profile anywhere.</title>
		<link>http://rubencausyn.be/2011/12/snippet-show-user-profile-anywhere/</link>
		<comments>http://rubencausyn.be/2011/12/snippet-show-user-profile-anywhere/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 11:59:31 +0000</pubDate>
		<dc:creator>ruben</dc:creator>
				<category><![CDATA[snippet]]></category>

		<guid isPermaLink="false">http://rubencausyn.be/?p=86</guid>
		<description><![CDATA[what if you want to show the full user profile in a custom block? global $user; $userdata = user_load($user->uid); return drupal_render(user_view($userdata));]]></description>
			<content:encoded><![CDATA[<p>what if you want to show the full user profile in a custom block?</p>
<p><code>global $user;<br />
$userdata = user_load($user->uid);<br />
return drupal_render(user_view($userdata));</code></p>
]]></content:encoded>
			<wfw:commentRss>http://rubencausyn.be/2011/12/snippet-show-user-profile-anywhere/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>fixing Drush 4.5 and Mamp (pro) 2.0</title>
		<link>http://rubencausyn.be/2011/10/fixing-drush-4-5-and-mamp-pro-2-0/</link>
		<comments>http://rubencausyn.be/2011/10/fixing-drush-4-5-and-mamp-pro-2-0/#comments</comments>
		<pubDate>Fri, 14 Oct 2011 10:32:16 +0000</pubDate>
		<dc:creator>ruben</dc:creator>
				<category><![CDATA[Big]]></category>
		<category><![CDATA[Drush]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[mamp 2.0]]></category>

		<guid isPermaLink="false">http://rubencausyn.be/?p=52</guid>
		<description><![CDATA[I am using Drush and Mamp for quite some time now on my mac. Drush was installed with homebrew and was recently updated to the 4.5 version. I upgraded my Mamp Pro to version 2.0 and started having issues with my Drush commands. I started looking into it and discovered [...]]]></description>
			<content:encoded><![CDATA[<p>I am using Drush and Mamp for quite some time now on my mac.</p>
<p>Drush was installed with homebrew and was recently updated to the 4.5 version.</p>
<p>I upgraded my Mamp Pro to version 2.0 and started having issues with my Drush commands.</p>
<p>I started looking into it and discovered some changes to Mamp which led to drush not being able to do anything.</p>
<p>I will go trough the process I did to make things work again.</p>
<p>1.&nbsp;PDO::__construct(): [2002] No such file or directory (trying to connect via unix:///var/mysql/mysql.sock)</p>
<p>This was fixed by implementing the changes proposed in <a href="http://drupal.org/node/1226422#comment-4766824">a comment in &nbsp;the issue queue for drush</a></p>
<p>mamp changed the directories so to fix this asap i added<br />
/Applications/MAMP/bin/php/php5.2.17/bin/php<br />
/Applications/MAMP/bin/php/php5.3.6/bin/php<br />
to drush/drush</p>
<p>The error went away but I now had issues with my memory limits, which was strange, as my memory limits in all php.ini-files were set high enough.</p>
<p>After some digging in Drush i found some information in the Readme-file that was worth trying to fix my issue.</p>
<p>As the memory limits were set high enough, but Drush wasn&#8217;t taking those limits in account, i tried the following:</p>
<blockquote><p>Alternately, if you only want to override a few values, copy example.drush.ini from the &#8220;examples&#8221; folder into $HOME/.drush or the folder /etc/drush and edit to suit.  See comments in example.drush.ini for more details.</p></blockquote>
<p>I set the memory_limit in the newly created drush.ini in my drush-folder, and all was working again.</p>
]]></content:encoded>
			<wfw:commentRss>http://rubencausyn.be/2011/10/fixing-drush-4-5-and-mamp-pro-2-0/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Disable rss.xml and replace with own feed(s)</title>
		<link>http://rubencausyn.be/2011/09/disable-rss-xml-and-replace-with-own-feeds/</link>
		<comments>http://rubencausyn.be/2011/09/disable-rss-xml-and-replace-with-own-feeds/#comments</comments>
		<pubDate>Mon, 05 Sep 2011 10:01:49 +0000</pubDate>
		<dc:creator>ruben</dc:creator>
				<category><![CDATA[How-to]]></category>

		<guid isPermaLink="false">http://rubencausyn.be/?p=44</guid>
		<description><![CDATA[While Drupal has no way of disabling the rss-feeds by default, it is possible to override the rss-output, and tell Drupal to use another feed. Create a new module with following code, and make sure to replace with the naming of your choice. In this blog post I assume you [...]]]></description>
			<content:encoded><![CDATA[<p>While Drupal has no way of disabling the rss-feeds by default, it is possible to override the rss-output, and tell Drupal to use another feed.</p>
<p>Create a new module with following code, and make sure to replace <yourmodulename> with the naming of your choice. In this blog post I assume you know how to create your own modules.</p>
<p><code><br />
function <yourmodulename>_menu_alter(&#038;$items) {<br />
   unset($items['rss.xml']);<br />
}</p>
<p>function </yourmodulename><yourmodulename>_init() {<br />
  drupal_add_feed(url('feed/news', array('absolute' => TRUE)), 'Website News RSS');<br />
  // You can add as many feeds as you want.<br />
}<br />
</yourmodulename></code></yourmodulename></p>
]]></content:encoded>
			<wfw:commentRss>http://rubencausyn.be/2011/09/disable-rss-xml-and-replace-with-own-feeds/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>merge folders in OSX</title>
		<link>http://rubencausyn.be/2011/08/merge-folders-in-osx/</link>
		<comments>http://rubencausyn.be/2011/08/merge-folders-in-osx/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 09:59:05 +0000</pubDate>
		<dc:creator>ruben</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://rubencausyn.be/?p=39</guid>
		<description><![CDATA[One of the biggest frustrations in Finder is that you cannot merge folders when moving them around. This Commandline solution does everything for you. ditto -V source destination]]></description>
			<content:encoded><![CDATA[<p>One of the biggest frustrations in Finder is that you cannot merge folders when moving them around.</p>
<p>This Commandline solution does everything for you.<br />
<code>ditto -V source destination</code></p>
]]></content:encoded>
			<wfw:commentRss>http://rubencausyn.be/2011/08/merge-folders-in-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubercart Checkout Tabs</title>
		<link>http://rubencausyn.be/2011/08/ubercart-checkout-tabs/</link>
		<comments>http://rubencausyn.be/2011/08/ubercart-checkout-tabs/#comments</comments>
		<pubDate>Mon, 22 Aug 2011 17:51:43 +0000</pubDate>
		<dc:creator>ruben</dc:creator>
				<category><![CDATA[Big]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Module]]></category>

		<guid isPermaLink="false">http://rubencausyn.be/?p=32</guid>
		<description><![CDATA[One of the clients I work for requested the ability to have the checkout of Ubercart split up in a multi-step process. Ubercart is built having a one-page checkout process in mind, so refactoring Ubercart to have a multi-page checkout process would take quite a lot of work, and make [...]]]></description>
			<content:encoded><![CDATA[<p>One of the clients I work for requested the ability to have the checkout of Ubercart split up in a multi-step process.</p>
<p>Ubercart is built having a one-page checkout process in mind, so refactoring Ubercart to have a multi-page checkout process would take quite a lot of work, and make the process of updating the core modules quite difficult.</p>
<p>This module provides some jQuery to convert the fieldsets in the checkout process of ubercart to a tabbed interface.</p>
<p>Enable this module and the checkout page gets tabbed.</p>
<p>The modules requires following modules:</p>
<ul>
<li>jquery_ui</li>
<li>jquery_update</li>
<li>uc_cart</li>
</ul>
<div><a href="http://drupal.org/sandbox/rubencausyn/1254172">Download this module</a> from drupal.org sandbox.</div>
]]></content:encoded>
			<wfw:commentRss>http://rubencausyn.be/2011/08/ubercart-checkout-tabs/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Domain module not working.</title>
		<link>http://rubencausyn.be/2011/08/domain-module-not-working/</link>
		<comments>http://rubencausyn.be/2011/08/domain-module-not-working/#comments</comments>
		<pubDate>Mon, 22 Aug 2011 08:59:06 +0000</pubDate>
		<dc:creator>ruben</dc:creator>
				<category><![CDATA[Big]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://rubencausyn.be/?p=7</guid>
		<description><![CDATA[One of my colleagues had issues with the domain-module while setting it up. It was impossible to get trough the checklist of the module-configuration, while he actually followed the installation-instructions. After some research I found that the error was related to a small typo in the settings.php . Once I changed [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://rubencausyn.be/wp-content/uploads/2011/08/druplicon.jpeg"><img class="size-thumbnail wp-image-16 alignleft" title="druplicon" src="http://rubencausyn.be/wp-content/uploads/2011/08/druplicon-150x150.jpg" alt="Druplicon" width="150" height="150" /></a>One of my colleagues had issues with the <a href="http://www.drupal.org/project/domain" target="_blank">domain-module</a> while setting it up.</p>
<p>It was impossible to get trough the checklist of the module-configuration, while he actually followed the installation-instructions.</p>
<p><span id="more-7"></span>After some research I found that the error was related to a small typo in the settings.php .</p>
<p>Once I changed the settings.php cookie line to the following, it all worked:<br />
<code>$cookie_domain = '.example.com';</code></p>
<p>Note the preceding &#8216;.&#8217; to the domain name, this is very important to get the session-handling working correctly on all subdomains.</p>
]]></content:encoded>
			<wfw:commentRss>http://rubencausyn.be/2011/08/domain-module-not-working/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

