<?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>entroducing.com &#187; wordpress</title>
	<atom:link href="http://www.entroducing.com/view/tag/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.entroducing.com</link>
	<description>to prove that i have too much time</description>
	<lastBuildDate>Sun, 15 May 2011 06:00:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>cakephp and wordpress in single domain</title>
		<link>http://www.entroducing.com/view/cakephp-and-wordpress-in-single-domain</link>
		<comments>http://www.entroducing.com/view/cakephp-and-wordpress-in-single-domain#comments</comments>
		<pubDate>Tue, 27 Oct 2009 13:00:22 +0000</pubDate>
		<dc:creator>Benny</dc:creator>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[cakephp]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.entroducing.com/?p=62</guid>
		<description><![CDATA[If you are hosting multiple cakephp websites TOGETHER with your wordpress in one single domain, you might encountered some errors or incorrectly display css or images in your cakephp web application. This is due to the default mod_rewrite rules  that come with cakephp installation as it is assume that the application is running for one [...]]]></description>
			<content:encoded><![CDATA[<p>If you are hosting multiple cakephp websites TOGETHER with your wordpress in one single domain, you might encountered some errors or incorrectly display css or images in your cakephp web application.</p>
<p>This is due to the default mod_rewrite rules  that come with cakephp installation as it is assume that the application is running for one domain name only.</p>
<p>Fortunately, it is possible to amend that mod_rewrite rules to allow apache to customise different routes for different applications.</p>
<p>Before I explain on how to do it, lets see how I configure entroducing.com</p>
<p>www.entroducing.com -&gt; will call default wordpress (this blog)<br />
www.entroducing.com<strong>/project/app1</strong>-&gt; will run <strong>app1 </strong>cakephp<br />
www.entroducing.com<strong>/project/app2</strong>&gt; will run <strong>app2 </strong>cakephp</p>
<p>In the webroot folder of your cakephp application, edit the .htaccess file and add the following line</p>
<pre class="brush: shell">
RewriteBase /[subdirectory]/[applicationname]
</pre>
<p>And it should looks like this</p>
<pre class="brush: shell">
&amp;lt;IfModule mod_rewrite.c&amp;gt;
    RewriteEngine On
    RewriteBase /project/stepup
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
&amp;lt;/IfModule&amp;gt;
</pre>
<p>Save the file and test your application. It should works fine now. <img src='http://www.entroducing.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.entroducing.com%2Fview%2Fcakephp-and-wordpress-in-single-domain&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://www.entroducing.com/view/cakephp-and-wordpress-in-single-domain/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Posting Source Code in WordPress</title>
		<link>http://www.entroducing.com/view/posting-source-code-in-wordpress</link>
		<comments>http://www.entroducing.com/view/posting-source-code-in-wordpress#comments</comments>
		<pubDate>Sat, 24 Oct 2009 11:17:46 +0000</pubDate>
		<dc:creator>Benny</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[SyntaxHighlighter]]></category>

		<guid isPermaLink="false">http://www.entroducing.com/?p=51</guid>
		<description><![CDATA[Just when I was posting source code in my previous post, I realised that my newly installed wordpress does not format the source code nicely. (Read: I&#8217;m new to WordPress!) Nevertheless, I google out and finally able to post source code in my blog. Here&#8217;s how. Download Plugin: Go to SyntaxHighlighter Plugin Page and download [...]]]></description>
			<content:encoded><![CDATA[<p>Just when I was posting source code in my previous post, I realised that my newly installed wordpress does not format the source code nicely. (Read: I&#8217;m new to WordPress!)</p>
<p>Nevertheless, I google out and finally able to post source code in my blog.</p>
<p>Here&#8217;s how.</p>
<ol>
<li>Download Plugin: Go to <a href="http://wordpress.org/extend/plugins/syntaxhighlighter/installation/">SyntaxHighlighter Plugin Page</a> and download the plugin</li>
<li>Upload Plugin: Extract all files from the ZIP file, <strong>making sure to keep the file/folder structure intact</strong>, and then upload it to <code>/wp-content/plugins/</code>.</li>
<li>Activate Plugin: Go to the admin area of your WordPress install and click on the &#8220;Plugins&#8221; menu. Click on &#8220;Activate&#8221; for the &#8220;SyntaxHighlighter&#8221; plugin.</li>
</ol>
<p>And here&#8217;s how to use it</p>
<p>When creating a new post, toggle to HTML view.</p>
<p>If the source code you want to use is in javascript, type&#8230;</p>
<p><strong>["language"]alert(&#8216;hello world&#8217;);[/ "language"]</strong></p>
<p>in that view.  Replace the above &#8220;language&#8221; with the language of your choice. In this case, it is replaced with &#8220;javascript&#8221; (For full supported language, visit <a href="http://alexgorbatchev.com/wiki/SyntaxHighlighter:Brushes" target="_blank">author website</a>.)</p>
<p>And it should display like the below.</p>
<pre class="brush: javascript">alert(&#039;hello world&#039;);</pre>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.entroducing.com%2Fview%2Fposting-source-code-in-wordpress&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://www.entroducing.com/view/posting-source-code-in-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>finally got this website up</title>
		<link>http://www.entroducing.com/view/finally-got-this-website-up</link>
		<comments>http://www.entroducing.com/view/finally-got-this-website-up#comments</comments>
		<pubDate>Sat, 19 Sep 2009 15:28:25 +0000</pubDate>
		<dc:creator>Benny</dc:creator>
				<category><![CDATA[entroducing]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.entroducing.com/?p=6</guid>
		<description><![CDATA[Had registered this domain name in the late 2005 and been putting up a &#8216;under construction&#8217; page for 5 years! Finally got a chance to sit down and install wordpress in it. Had search for some themes today and eventually decided on this sharpfolio theme from webrevolutionary. Check out some of the other nice themes [...]]]></description>
			<content:encoded><![CDATA[<p>Had registered this domain name in the late 2005 and been putting up a &#8216;under construction&#8217; page for 5 years!</p>
<p>Finally got a chance to sit down and install wordpress in it.</p>
<p>Had search for some themes today and eventually decided on this <a title="sharpfoilo" href="http://webrevolutionary.com/sharpfolio/" target="_blank">sharpfolio </a>theme from <a href="http://webrevolutionary.com/" target="_blank">webrevolutionary</a>.</p>
<p>Check out some of the other nice themes below I have found today.</p>
<p><a href="http://freebiesdock.com/" title="FREEmium"><img class="alignnone size-thumbnail wp-image-7" title="FREEmium" src="http://www.entroducing.com/wp-content/uploads/2009/09/screenshot-150x150.png" alt="FREEmium" width="150" height="150" /></a></p>
<p><a href="http://www.deanjrobinson.com/" title="screenshot"><img class="alignnone size-thumbnail wp-image-8" title="screenshot" src="http://www.entroducing.com/wp-content/uploads/2009/09/screenshot1-150x150.png" alt="screenshot" width="150" height="150" /></a></p>
<p><a href="http://wpesp.com/" title="screenshot"><img class="alignnone size-thumbnail wp-image-9" title="screenshot" src="http://www.entroducing.com/wp-content/uploads/2009/09/screenshot2-150x150.png" alt="screenshot" width="150" height="150" /></a></p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.entroducing.com%2Fview%2Ffinally-got-this-website-up&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://www.entroducing.com/view/finally-got-this-website-up/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

