<?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>E.V.I.C.T. B.V. &#187; Search Results  &#187;  taalvos nl</title>
	<atom:link href="http://evict.nl/?s=taalvos+nl&#038;feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://evict.nl</link>
	<description>Playground of Edwin Vermeer</description>
	<lastBuildDate>Sun, 04 Jul 2010 21:57:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Two new websites live!</title>
		<link>http://evict.nl/web/two-new-websites-live/</link>
		<comments>http://evict.nl/web/two-new-websites-live/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 23:47:17 +0000</pubDate>
		<dc:creator>Edwin Vermeer</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[live]]></category>
		<category><![CDATA[Mooijman]]></category>
		<category><![CDATA[Taalvos]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://evict.nl/?p=273</guid>
		<description><![CDATA[I enjoyed playing around with my own WordPress website at evict.nl so much that I also starded to remake my wifes website taalvos.nl immediately followed by making the website Mooijman.aero for a friend. Both sites still need a lot of content but the layout (and therefore my work) is now ready. Here is how these [...]]]></description>
			<content:encoded><![CDATA[<p>I enjoyed playing around with my own WordPress website at evict.nl so much that I also starded to remake my wifes website <a href="taalvos.nl">taalvos.nl</a> immediately followed by making the website <a href="http://mooijmanmultiservices.nl/">Mooijman.aero</a> for a friend. Both sites still need a lot of content but the layout (and therefore my work) is now ready. Here is how these sites now look:</p>
<table>
<tbody>
<tr>
<td><a href="http://taalvos.nl"><img class="alignleft" title="taalvos" src="http://evict.nl/wp-content/uploads/2010/01/taalvos-254x300.png" alt="" width="254" height="300" /></a></td>
<td><a href="http://mooijmanmultiservices.nl"><img class="alignright" title="mooijman" src="http://evict.nl/wp-content/uploads/2010/01/mooijman-216x300.png" alt="" width="216" height="300" /></a></td>
</tr>
</tbody>
</table>
<h2  class="related_post_title">Related posts</h2><ul class="related_post"><li>January 5, 2010 -- <a href="http://evict.nl/announcements/wordpress-website-now-live/" title="WordPress website now live">WordPress website now live</a> (0)</li><li>January 8, 2010 -- <a href="http://evict.nl/web/404-urlrewrite-and-wordpress-search/" title="404 urlrewrite and WordPress search">404 urlrewrite and WordPress search</a> (2)</li><li>January 6, 2010 -- <a href="http://evict.nl/web/configuring-wordpress/" title="Configuring WordPress">Configuring WordPress</a> (0)</li><li>December 29, 2009 -- <a href="http://evict.nl/announcements/welcome/" title="Welcome&#8230;">Welcome&#8230;</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://evict.nl/web/two-new-websites-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring WordPress</title>
		<link>http://evict.nl/web/configuring-wordpress/</link>
		<comments>http://evict.nl/web/configuring-wordpress/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 23:42:24 +0000</pubDate>
		<dc:creator>Edwin Vermeer</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://evict.nl/?p=212</guid>
		<description><![CDATA[It&#8217;s now a litle more than a week since I installed WordPress on my website. Installing WordPress, finding a good looking theme, finding and adding nice plugins and migrating the content from my old site was quite easy. The thing that costed me the most time was a good way to do the url rewrite. [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s now a litle more than a week since I installed WordPress on my website. Installing WordPress, finding a good looking theme, finding and adding nice plugins and migrating the content from my old site was quite easy. The thing that costed me the most time was a good way to do the url rewrite. I solved that by creating a simple error.asp page and assigning that page to the 404 error. You can find more info about this error.asp <a href="http://evict.nl/web/404-urlrewrite-and-wordpress-search">here</a>.</p>
<p>One other point that I wanted to solve is that I have multiple domains running on 1 website and I do want multiple WordPress installations but not for all domains. I also did not want to use WordPress MU because of compatibility and flexability issues. I solved this by conditionally setting the database table prefix in the wp-config.php for the WordPress instances I wanted and adding a conditional redirect in the index.php for the none WordPress domains I have. Here is the code that I use. </p>
<p>wp-config.php</p>
<pre class="brush: php">
$table_prefix  = &#039;wp_&#039;;
$sl = strlen($_SERVER[&#039;SERVER_NAME&#039;]);
$d = substr($_SERVER[&#039;SERVER_NAME&#039;], $sl - 10);
if ($d == &#039;taalvos.nl&#039;){
	$table_prefix  = &#039;taalvos_&#039;;
</pre>
<p>index.php</p>
<pre class="brush: php">
$d = substr($_SERVER[&#039;SERVER_NAME&#039;], $sl - 16);
if ($d == &#039;de-rozemarijn.nl&#039;){
	/** redirect function from wp-app.php should also be included. */
	redirect(&#039;default_rozemarijn.asp&#039;);
}
</pre>
<p>The number of Plugins that are available for WordPress can be overwhelming. Below is a list of the Plugins that I installed. Thanks <a title="Thushan Fernando Uncut" href="http://www.thushanfernando.com/">Thushan</a> for a couple of nice tips.</p>
<p><a href="http://www.addtoany.com/"><strong>Add to Any: Share/Bookmark/Email Button</strong></a></p>
<p>Help readers share, bookmark, and email your posts and pages using any service.</p>
<p><a href="http://ketsugi.com/software/wordpress/acronyms-plugin/"><strong></strong></a><strong><a>Acronyms</a> </strong></p>
<p>A plugin to wrap acronyms in posts and comments with appropriate acronyms. Allows users to manage lists of acronyms through admin interface. Based on Joel Bennett&#8217;s Acronym Replacer plugin (http://www.huddledmasses.org/) and Joel Pan&#8217;s NP_Acronym plugin for Nucleus CMS.</p>
<p><a href="http://akismet.com/"><strong></strong></a><strong><a>Akismet</a> </strong></p>
<p>Akismet checks your comments against the Akismet web service to see if they look like spam or not. You need a WordPress.com API key to use it. You can review the spam it catches under &#8220;Comments.&#8221; To show off your Akismet stats just put &lt;?php akismet_counter(); ?&gt; in your template. See also: WP Stats plugin.</p>
<p><a href="http://semperfiwebdesign.com/"><strong>All in One SEO Pack </strong></a></p>
<p>Out-of-the-box SEO for your WordPress blog. Options configuration panel</p>
<p><a href="http://www.arnebrachhold.de/redir/sitemap-home/"><strong>Google XML Sitemaps </strong></a></p>
<p>This plugin will generate a special XML sitemap which will help search engines like Google, Yahoo, Bing and Ask.com to better index your blog.</p>
<p><a href="http://www.funnydingo.de/projekte/new-tag-cloud/"><strong>New Tag Cloud</strong></a></p>
<p><strong> </strong>The plugin provides an widget wich shows a tag cloud with the tags used by the new WordPress own tagging feature</p>
<p><a href="http://thislab.com/2007/12/16/release-wordpress-plugin-syntaxhighlighter-plus/"><strong>SyntaxHighlighter Plus</strong></a></p>
<p>An advanced upload-and-activate WordPress implementation of Alex Gorbatchev&#8217;s SyntaxHighlighter JavaScript code highlighting package. See WordPress.com&#8217;s &#8220;How do I post source code?&#8221; for details. Click here for options.</p>
<p><a href="http://www.laptoptips.ca/projects/tinymce-advanced/"><strong>TinyMCE Advanced</strong></a></p>
<p>Enables advanced features and plugins in TinyMCE, the visual editor in WordPress.</p>
<p><a href="http://www.webmaster-source.com/tweetable-twitter-plugin-wordpress/"><strong>Tweetable</strong></a></p>
<p>Integrate Twitter with your WordPress blog. Automatically tweet new posts, display your latest tweet in your sidebar, etc.</p>
<p><a href="http://fairyfish.net/2007/09/12/wordpress-23-related-posts-plugin/"><strong>WordPress Related Posts</strong></a></p>
<p>Generate a related posts list via tags of WordPress</p>
<p><a href="http://bravenewcode.com/wptouch"><strong>WPtouch iPhone Theme </strong></a></p>
<p>A plugin which formats your site with a mobile theme for the Apple iPhone / iPod touch, Google Android and other touch-based smartphones.</p>
<h2  class="related_post_title">Related posts</h2><ul class="related_post"><li>January 28, 2010 -- <a href="http://evict.nl/web/two-new-websites-live/" title="Two new websites live!">Two new websites live!</a> (0)</li><li>January 8, 2010 -- <a href="http://evict.nl/web/404-urlrewrite-and-wordpress-search/" title="404 urlrewrite and WordPress search">404 urlrewrite and WordPress search</a> (2)</li><li>January 5, 2010 -- <a href="http://evict.nl/announcements/wordpress-website-now-live/" title="WordPress website now live">WordPress website now live</a> (0)</li><li>December 29, 2009 -- <a href="http://evict.nl/announcements/welcome/" title="Welcome&#8230;">Welcome&#8230;</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://evict.nl/web/configuring-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
