<?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>PCR&#039;s notepad &#187; phpBB</title>
	<atom:link href="http://notepad.patheticcockroach.com/category/software/phpbb/feed/" rel="self" type="application/rss+xml" />
	<link>http://notepad.patheticcockroach.com</link>
	<description>The area in patheticcockroach.com where the EEG isn&#039;t isoelectric</description>
	<lastBuildDate>Fri, 30 Jul 2010 11:13:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Locking all forums in phpBB</title>
		<link>http://notepad.patheticcockroach.com/217/locking-all-forums-in-phpbb/</link>
		<comments>http://notepad.patheticcockroach.com/217/locking-all-forums-in-phpbb/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 17:18:00 +0000</pubDate>
		<dc:creator>David Dernoncourt</dc:creator>
				<category><![CDATA[phpBB]]></category>

		<guid isPermaLink="false">http://notepad.patheticcockroach.com/?p=217</guid>
		<description><![CDATA[I didn&#8217;t find a fast way to lock all forums in phpBB via the admin control panel (ACP), thus I messed a bit with the database, and soon found out that this query does the trick: UPDATE [phpbb_]forums SET forum_status=1 Just make sure you replace [phpbb_] with the database prefix you chose. To unlock, use: [...]]]></description>
			<content:encoded><![CDATA[<p>I didn&#8217;t find a fast way to lock all forums in phpBB via the admin control panel (ACP), thus I messed a bit with the database, and soon found out that this query does the trick:</p>
<blockquote><p>UPDATE [phpbb_]forums SET forum_status=1</p></blockquote>
<p>Just make sure you replace <span style="font-style:italic;">[phpbb_]</span> with the database prefix you chose.</p>
<p>To unlock, use:<br />
<blockquote>UPDATE [phpbb_]forums SET forum_status=0</p></blockquote>
<p>NB: this will unlock ALL forums, even those who were locked before you locked them all.</p>
]]></content:encoded>
			<wfw:commentRss>http://notepad.patheticcockroach.com/217/locking-all-forums-in-phpbb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google adsense in phpBB 3 (at the bottom or at the top)</title>
		<link>http://notepad.patheticcockroach.com/212/google-adsense-in-phpbb-3-at-the-bottom-or-at-the-top-2/</link>
		<comments>http://notepad.patheticcockroach.com/212/google-adsense-in-phpbb-3-at-the-bottom-or-at-the-top-2/#comments</comments>
		<pubDate>Sun, 31 Aug 2008 20:35:00 +0000</pubDate>
		<dc:creator>David Dernoncourt</dc:creator>
				<category><![CDATA[phpBB]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://notepad.patheticcockroach.com/?p=212</guid>
		<description><![CDATA[To add something at the bottom of your phpBB 3.x forum, edit the &#8220;overall_footer.html&#8221; file for the template(s) available on your phpBB: add whatever you want just before: &#60;/body&#62;&#60;/html&#62; To add something at the top, edit &#8220;overall_header.htm&#8221; near: &#60;h1&#62;{SITENAME}&#60;/h1&#62;]]></description>
			<content:encoded><![CDATA[<p>To add something at the bottom of your phpBB 3.x forum, edit the &#8220;overall_footer.html&#8221; file for the template(s) available on your phpBB: add whatever you want just before:<br />
<blockquote>&lt;/body&gt;<br />&lt;/html&gt;</p></blockquote>
<p>To add something at the top, edit &#8220;overall_header.htm&#8221; near:<br />
<blockquote>&lt;h1&gt;{SITENAME}&lt;/h1&gt;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://notepad.patheticcockroach.com/212/google-adsense-in-phpbb-3-at-the-bottom-or-at-the-top-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>phpBB &#8211; force your users to subscribe to thread by default</title>
		<link>http://notepad.patheticcockroach.com/205/phpbb-force-your-users-to-subscribe-to-thread-by-default/</link>
		<comments>http://notepad.patheticcockroach.com/205/phpbb-force-your-users-to-subscribe-to-thread-by-default/#comments</comments>
		<pubDate>Tue, 20 May 2008 08:05:00 +0000</pubDate>
		<dc:creator>David Dernoncourt</dc:creator>
				<category><![CDATA[phpBB]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://notepad.patheticcockroach.com/?p=205</guid>
		<description><![CDATA[It is really annoying when you have a forum where you often have members who come and never return, even to check their own topics. A partial solution for this is to run the following query, which will change all users preferences so that they have topic reply notification enabled by default: UPDATE [your phpBB [...]]]></description>
			<content:encoded><![CDATA[<p>It is really annoying when you have a forum where you often have members who come and never return, even to check their own topics. A partial solution for this is to run the following query, which will change all users preferences so that they have topic reply notification enabled by default:<br />
<blockquote>UPDATE [your phpBB database name].[the phpBB table prefix]users SET user_notify=1 WHERE [the phpBB table prefix]users.user_id >=53</p></blockquote>
<p>NB: replace 53 with the ID of the first real member (this is to avoid modifying settings for bot users).<br />This was tested with phpBB 3.0.1. The most efficient way to do this would be to run this query everytime someone signs up (include the code somewhere on the sign up page&#8230;), or to a lesser degree, run it regularly with a cron job.</p>
]]></content:encoded>
			<wfw:commentRss>http://notepad.patheticcockroach.com/205/phpbb-force-your-users-to-subscribe-to-thread-by-default/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
