<?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>Linux etc. &#187; Drupal</title>
	<atom:link href="http://promberger.info/linux/category/drupal/feed/" rel="self" type="application/rss+xml" />
	<link>http://promberger.info/linux</link>
	<description>my outsourced memory for your perusal</description>
	<lastBuildDate>Thu, 08 Sep 2011 11:06:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Drupal: how to disable broken module manually</title>
		<link>http://promberger.info/linux/2007/11/14/drupal-how-to-disable-broken-module-manually/</link>
		<comments>http://promberger.info/linux/2007/11/14/drupal-how-to-disable-broken-module-manually/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 13:31:46 +0000</pubDate>
		<dc:creator>Marianne</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://promberger.info/linux/2007/11/14/drupal-how-to-disable-broken-module-manually/</guid>
		<description><![CDATA[I did something wrong applying a patch to a module. This resulted in a broken site &#8212; I wasn&#8217;t able to see the Administration page anymore to disable the module (or any page for that matter). Log on to your server via SSH. mysql -p Gets you into mysql. To see your databases: show databases; [...]]]></description>
			<content:encoded><![CDATA[<p>I did something wrong applying a patch to a module. This resulted in a broken site &#8212; I wasn&#8217;t able to see the Administration page anymore to disable the module (or any page for that matter).</p>
<p>Log on to your server via SSH.</p>
<pre>mysql -p</pre>
<p>Gets you into <code>mysql</code>.<br />
To see your databases:</p>
<pre>show databases;</pre>
<p>To pick the drupal database:</p>
<pre>use drupal;</pre>
<p>Then, substituting the module name for <code>module_name</code> below:</p>
<pre>UPDATE `system` SET `status` = '0' WHERE `name` = 'module_name' LIMIT 1;</pre>
<p>Finally:</p>
<pre>quit;</pre>
]]></content:encoded>
			<wfw:commentRss>http://promberger.info/linux/2007/11/14/drupal-how-to-disable-broken-module-manually/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Drupal form tweaker module</title>
		<link>http://promberger.info/linux/2007/11/14/drupal-form-tweaker-module/</link>
		<comments>http://promberger.info/linux/2007/11/14/drupal-form-tweaker-module/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 11:54:13 +0000</pubDate>
		<dc:creator>Marianne</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://promberger.info/linux/2007/11/14/drupal-form-tweaker-module/</guid>
		<description><![CDATA[The Drupal Form Tweaker module lets you change the way users can select vocabulary/ category terms when they submit content. By default, this is a dropdown list, which is a bit ugly and especially annoying to use if you want to select multiple terms. With form tweaker, you can set the terms to be presented [...]]]></description>
			<content:encoded><![CDATA[<p>The Drupal <a href="http://drupal.org/project/formtweaker">Form Tweaker module</a> lets you change the way users can select vocabulary/ category terms when they submit content. By default, this is a dropdown list, which is a bit ugly and especially annoying to use if you want to select multiple terms. With form tweaker, you can set the terms to be presented as radio buttons or checkboxes instead. Much nicer and easier to use. </p>
<p>Note that you set these preferences in <i>Administer&nbsp;&rarr;&nbsp;Content&nbsp;type</i>, not in the Category/ Vocabulary settings.</p>
]]></content:encoded>
			<wfw:commentRss>http://promberger.info/linux/2007/11/14/drupal-form-tweaker-module/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drupal border-spacing</title>
		<link>http://promberger.info/linux/2007/11/05/drupal-border-spacing/</link>
		<comments>http://promberger.info/linux/2007/11/05/drupal-border-spacing/#comments</comments>
		<pubDate>Mon, 05 Nov 2007 13:09:05 +0000</pubDate>
		<dc:creator>Marianne</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://promberger.info/linux/2007/11/05/drupal-border-spacing/</guid>
		<description><![CDATA[In my version of Drupal (5.something), with the theme I&#8217;m using (B7), if you try to set the distance between table cells using CSS border-spacing, this has no effect. You have to also set border-collapse: separate;]]></description>
			<content:encoded><![CDATA[<p>In my version of Drupal (5.something), with the theme I&#8217;m using (B7), if you try to set the distance between table cells using  CSS <code>border-spacing</code>, this has no effect. You have to also set <code>border-collapse: separate; </code></p>
]]></content:encoded>
			<wfw:commentRss>http://promberger.info/linux/2007/11/05/drupal-border-spacing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Where to install Drupal themes and modules</title>
		<link>http://promberger.info/linux/2007/11/01/where-to-install-drupal-themes-and-modules/</link>
		<comments>http://promberger.info/linux/2007/11/01/where-to-install-drupal-themes-and-modules/#comments</comments>
		<pubDate>Thu, 01 Nov 2007 22:49:08 +0000</pubDate>
		<dc:creator>Marianne</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Noobs]]></category>

		<guid isPermaLink="false">http://www.promberger.info/linux/2007/11/01/where-to-install-drupal-themes-and-modules/</guid>
		<description><![CDATA[In your drupal root directory, you have a directory modules and a directory themes. Turns out this is not where you want to install additional modules and themes. Instead, put them into (below the drupal root directory) sites/all/modules and sites/all/themes respectively (create directories if needed).]]></description>
			<content:encoded><![CDATA[<p>In your drupal root directory, you have a directory <code>modules</code> and a directory <code>themes</code>. Turns out this is not where you want to install additional modules and themes. Instead, put them into (below the drupal root directory) <code>sites/all/modules</code> and <code>sites/all/themes</code> respectively (create directories if needed).</p>
]]></content:encoded>
			<wfw:commentRss>http://promberger.info/linux/2007/11/01/where-to-install-drupal-themes-and-modules/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>R: Delicious statistical-computing recipes at R-Cookbook.com</title>
		<link>http://promberger.info/linux/2007/09/28/r-online-collection-of-recipes-at-r-cookbookcom/</link>
		<comments>http://promberger.info/linux/2007/09/28/r-online-collection-of-recipes-at-r-cookbookcom/#comments</comments>
		<pubDate>Fri, 28 Sep 2007 10:32:44 +0000</pubDate>
		<dc:creator>Marianne</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Noobs]]></category>
		<category><![CDATA[R]]></category>

		<guid isPermaLink="false">http://www.promberger.info/linux/2007/09/28/r-online-collection-of-recipes-at-r-cookbookcom/</guid>
		<description><![CDATA[Just on the R mailing list, more good news for users and wannabe-users of R: R-Cookbook.com is a new community site that offers handy R recipes. Once you register, you can post your own recipes and create a collection of your personal favorites. Looks like someone put Drupal to good use. My only quip so [...]]]></description>
			<content:encoded><![CDATA[<p>Just on the R mailing list, more good news for users and wannabe-users of R: <a href="http://R-Cookbook.com">R-Cookbook.com</a> is a new community site that offers handy R recipes.  Once you register, you can post your own recipes and create a collection of your personal favorites. Looks like someone put <a href="http://drupal.org">Drupal</a> to good use. My only quip so far is that I think they should lose the comma between &#8220;delicious&#8221; and &#8220;statistical-computing&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://promberger.info/linux/2007/09/28/r-online-collection-of-recipes-at-r-cookbookcom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

