<?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/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>The Rebertian Times &#187; meta</title>
	<atom:link href="http://blog.rebertia.com/tag/meta/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.rebertia.com</link>
	<description>All my thoughts that are fit to blog. Which mostly consists of stuff about programming.</description>
	<lastBuildDate>Mon, 09 May 2011 20:44:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>HOWTO: Setup MediaWiki as a Single-user CMS</title>
		<link>http://blog.rebertia.com/2010/07/18/howto-setup-mediawiki-as-a-single-user-cms/</link>
		<comments>http://blog.rebertia.com/2010/07/18/howto-setup-mediawiki-as-a-single-user-cms/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 16:31:23 +0000</pubDate>
		<dc:creator>Chris Rebert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[MediaWiki]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[single-user]]></category>
		<category><![CDATA[wiki]]></category>

		<guid isPermaLink="false">http://blog.rebertia.com/?p=267</guid>
		<description><![CDATA[If, like me, you&#8217;re abusing MediaWiki as a content management system for your personal website, here are some suggested options to set in your LocalSettings.php: #Stricter than normal settings: #prevent anonymous users from registering $wgGroupPermissions['*']['createaccount'] = false; #prevent anonymous users from editing $wgGroupPermissions['*']['edit'] = false; $wgGroupPermissions['*']['createpage'] = false; #disable section edit links for anonymous viewers $wgDefaultUserOptions['editsection'] [...]]]></description>
			<content:encoded><![CDATA[<p>If, like me, you&#8217;re abusing <a href="http://www.mediawiki.org">MediaWiki</a> as a <a href="http://en.wikipedia.org/wiki/Content_management_system">content management system</a> for your <a href="http://en.wikipedia.org/wiki/Personal_website">personal website</a>, here are some suggested options to set in your <code><a href="http://www.mediawiki.org/wiki/Manual:LocalSettings.php">LocalSettings.php</a></code>:</p>
<pre class="brush:php">#Stricter than normal settings:

#prevent anonymous users from registering
$wgGroupPermissions['*']['createaccount'] = false;

#prevent anonymous users from editing
$wgGroupPermissions['*']['edit'] = false;
$wgGroupPermissions['*']['createpage'] = false;

#disable section edit links for anonymous viewers
$wgDefaultUserOptions['editsection'] = false;

#remove userpage &amp; usertalk links for anonymous
$wgShowIPinHeader = false;

#disable bot API
$wgEnableAPI = false;
$wgEnableWriteAPI = false;

#disable RSS/atom change feeds
$wgFeed = false;

#Looser than normal settings:

#disable 'nofollow' on external links
$wgNoFollowLinks = false;

#allow uploading of non-images
$wgStrictFileExtensions = false;
$wgCheckFileExtensions = false;
$wgVerifyMimeType = false;

#disable copyright checks on upload
$wgCheckCopyrightUpload = false;

#disable anti-vandalism patrols
$wgUseNPPatrol = false;
$wgUseRCPatrol = false;

#allow raw HTML in &lt;html&gt;...&lt;/html&gt; blocks
$wgRawHtml = true;

#allow more liberal redirecting
$wgMaxRedirects = 42;
$wgFixDoubleRedirects = true;

#Other:

#unless your site is multilingual..
$wgHideInterlanguageLinks = true;

#unless you use the Universal Edit Button..
$wgUniversalEditButton = false;</pre>
<p>And if you&#8217;re using the Monobook skin, add the following to <code>/skins/monobook/main.css</code> to hide the &#8220;talk&#8221; and &#8220;view source&#8221; tabs:</p>
<pre class="brush:css">li#ca-talk {
display: none;
}
li#ca-viewsource {
display: none;
}</pre>
<p>Note that this merely hides the links from view; they&#8217;re still in the HTML and are still accessible by anyone who knows how override your CSS or construct the URLs manually (i.e. mere <a href="http://en.wikipedia.org/wiki/Security_through_obscurity">security thru obscurity</a>; I mainly do it to improve the wiki&#8217;s aesthetics).</p>
<p>Also, I&#8217;ve now finished switching hosting providers! (You may have noticed the site being flaky for a bit.) <a href="http://rebertia.com/wiki/Rebertia:About">Rebertia</a> is now proud to be hosted by <tt><a href="http://prgmr.com/xen/">prgmr.com</a></tt>. Their pricing for <a href="http://en.wikipedia.org/wiki/Virtual_private_server">VPSes</a> is quite good; I&#8217;m now paying less than I was for <a href="http://en.wikipedia.org/wiki/Shared_hosting">shared hosting</a> at my previous provider. (<a href="http://www.urbandictionary.com/define.php?term=protip">Protip</a>: Install <a href="http://www.fail2ban.org">Fail2ban</a> and setup its SSH rule to avoid being <a href="http://en.wikipedia.org/wiki/Owned">0wn3d</a>; I&#8217;ve safely observed a surprising number of random SSH login attack attempts on my VPS)</p>
<img src="http://blog.rebertia.com/?ak_action=api_record_view&id=267&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.rebertia.com/2010/07/18/howto-setup-mediawiki-as-a-single-user-cms/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Please Pardon Our Dust</title>
		<link>http://blog.rebertia.com/2009/03/07/please-pardon-our-dust/</link>
		<comments>http://blog.rebertia.com/2009/03/07/please-pardon-our-dust/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 05:48:19 +0000</pubDate>
		<dc:creator>Chris Rebert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.rebertia.com/?p=109</guid>
		<description><![CDATA[Just finished moving the blog off of WordPress.com and onto my own servers, hence why the theme suddenly changed. I&#8217;m still finishing up the setup, so don&#8217;t be alarmed if things suddenly change over the next day or so. You may be wondering why I&#8217;m going through all the trouble to move things. Basically, WordPress.com [...]]]></description>
			<content:encoded><![CDATA[<p>Just finished moving the blog off of WordPress.com and onto my own servers, hence why the theme suddenly changed. I&#8217;m still finishing up the setup, so don&#8217;t be alarmed if things suddenly change over the next day or so.</p>
<p>You may be wondering why I&#8217;m going through all the trouble to move things. Basically, WordPress.com quite frankly has a lousy theme selection. Also, using my own server gives me more control. I will applaud them on making moving one&#8217;s blog quite easy, with nice import-export wizards and making it simple to delete one&#8217;s blog. No service provider lock-in.</p>
<p>Anyway, thanks for reading! New posts are planned and will be on their way Real Soon (TM)!</p>
<img src="http://blog.rebertia.com/?ak_action=api_record_view&id=109&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.rebertia.com/2009/03/07/please-pardon-our-dust/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

