<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>Some memories written...</title>
	<link>http://www.bokica.com</link>
	<description>just my loud thoughts</description>
	<lastBuildDate>Mon, 20 Feb 2012 23:31:29 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.1.4" -->

	<item>
		<title>WordPress &#8211; exclude posts from query/loop</title>
		<description><![CDATA[If you want to exclude some posts (ID) from your query/loops this is simple solution. single post with ID #2: 1 query_posts&#40;'post__not_in' =&#62; array&#40;2&#41;&#41;; or more posts (with IDs 5, 7 and 8): 1 query_posts&#40;'post__not_in' =&#62; array&#40;5, 7, 8&#41;&#41;;]]></description>
		<link>http://www.bokica.com/wordpress-exclude-postposts-from-query/</link>
			</item>
	<item>
		<title>bug: Modular Extensions &#8211; HMVC with CI 2.0</title>
		<description><![CDATA[There is a bug in a /MX/Router.php witch produce redirect to 404 page when default_controller not found in /controllers folder. Variable $config[‘uri_protocol’] is set to “AUTO” or to “REQUEST_URI”, otherwise it working fine. That has something to do with new URL protocol auto detection. How to reproduce: 1. clean CI (from bitbucket) 2. HMVC (https://bitbucket.org/wiredesignz/codeigniter-modular-extensions-hmvc) [...]]]></description>
		<link>http://www.bokica.com/bug-modular-extensions-hmvc-with-ci-2/</link>
			</item>
	<item>
		<title>Database driven routes (no caching, MySQL version)</title>
		<description><![CDATA[If you need database driven routes then you may consider this simple solution. You need to create following table. 1 2 3 4 5 6 7 8 9 10 CREATE TABLE `ci_routes` &#40; `id` INT&#40;11&#41; UNSIGNED NOT NULL AUTO_INCREMENT, `src` VARCHAR&#40;255&#41; NOT NULL, `dest` VARCHAR&#40;255&#41; NOT NULL, PRIMARY KEY &#40;`id`,`src`&#41;, UNIQUE KEY `src` &#40;`src`&#41; &#41; [...]]]></description>
		<link>http://www.bokica.com/database-driven-routes-no-caching-mysql-version/</link>
			</item>
	<item>
		<title>bugfix: $_GET params cause errors when loading default controller</title>
		<description><![CDATA[CodeIgniter 2.0.0 Reactor has been released but width some small bug. If you try to reach somedomain.com/?a=1 or somedomain.com/index.php?a=1 you&#8217;ll got 404 Page Not Found So until EllisLab or CI Reactor community release bug fix here it is my own. In your config.php you can leave: $config&#91;'uri_protocol'&#93; = 'AUTO'; And just put MY_URI.php to /application/core [...]]]></description>
		<link>http://www.bokica.com/bugfix-_get-params-cause-errors-when-loading-default-controller/</link>
			</item>
</channel>
</rss>

