<?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>masAguz Personal Blog</title>
	<atom:link href="http://masaguz.net/feed" rel="self" type="application/rss+xml" />
	<link>http://masaguz.net</link>
	<description>Just Talking about everything i ever know ...</description>
	<lastBuildDate>Fri, 20 Aug 2010 18:43:11 +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>How to Change Search Path in WordPress ?</title>
		<link>http://masaguz.net/wordpress/code/how-to-change-search-path-in-wordpress.html</link>
		<comments>http://masaguz.net/wordpress/code/how-to-change-search-path-in-wordpress.html#comments</comments>
		<pubDate>Fri, 20 Aug 2010 18:38:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Amp]]></category>
		<category><![CDATA[Array Index]]></category>
		<category><![CDATA[Array Search]]></category>
		<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[Options]]></category>
		<category><![CDATA[Rewriterule]]></category>
		<category><![CDATA[Search Path]]></category>

		<guid isPermaLink="false">http://masaguz.net/?p=21</guid>
		<description><![CDATA[How to Change Search Path in WordPress ? it&#8217;s very easy, hehe/ 1. change .htaccess file Options +FollowSymLinks RewriteEngine On RewriteCond %{THE_REQUEST} ^[A-Z]+\ /(#[^?&#38;\ ]*)?\?([^&#38;\ ]*&#38;)?s=([^&#38;\ ]+)[^\ ]*\ HTTP/ RewriteRule ^$ http://www.masaguz.net/search-path/%3\.html? [R=301,L] 2. wp-include/rewrite.php search_base = &#8216;search-path&#8217;; 3. update your permalinks on dashboard setting. 4. insert this code on your functions.php template. // Remember to flush_rules() when adding rules function flushRules(){ global $wp_rewrite; $wp_rewrite-&#62;flush_rules(); } // Adding a new rule function wp_insertMyRewriteRules($wp_rewrite) { global $wp_rewrite; $newrules = array( &#8217;search-path/(.*).html&#8217; =&#62; &#8217;index.php?s=&#8217; . $wp_rewrite-&#62;preg_index(1) ); return $newrules + $wp_rewrite-&#62;rules; } add_filter(&#8216;rewrite_rules_array&#8217;,'wp_insertMyRewriteRules&#8217;); add_filter(&#8216;init&#8217;,'flushRules&#8217;); it&#8217; must be easy, isn&#8217;t it &#8230; sometime, we dont need to change [...]]]></description>
			<content:encoded><![CDATA[<p><strong>How to Change Search Path in WordPress</strong> ? it&#8217;s very easy, hehe/</p>
<p>1. change .htaccess file</p>
<blockquote><p>Options +FollowSymLinks<br />
RewriteEngine On<br />
RewriteCond %{THE_REQUEST} ^[A-Z]+\ /(#[^?&amp;\ ]*)?\?([^&amp;\ ]*&amp;)?s=([^&amp;\ ]+)[^\ ]*\ HTTP/<br />
RewriteRule ^$ http://www.masaguz.net/search-path/%3\.html? [R=301,L]</p></blockquote>
<p>2. wp-include/rewrite.php</p>
<blockquote><p>search_base = &#8216;search-path&#8217;;</p></blockquote>
<p><span id="more-21"></span><br />
3. update your permalinks on dashboard setting.</p>
<p>4. insert this code on your functions.php template.</p>
<blockquote><p>// Remember to flush_rules() when adding rules<br />
function flushRules(){<br />
global $wp_rewrite;<br />
$wp_rewrite-&gt;flush_rules();<br />
}</p>
<p>// Adding a new rule<br />
function wp_insertMyRewriteRules($wp_rewrite)<br />
{<br />
global $wp_rewrite;</p>
<p>$newrules = array( &#8217;search-path/(.*).html&#8217; =&gt; &#8217;index.php?s=&#8217; . $wp_rewrite-&gt;preg_index(1) );<br />
return $newrules + $wp_rewrite-&gt;rules;<br />
}</p>
<p>add_filter(&#8216;rewrite_rules_array&#8217;,'wp_insertMyRewriteRules&#8217;);<br />
add_filter(&#8216;init&#8217;,'flushRules&#8217;);</p></blockquote>
<p>it&#8217; must be easy, isn&#8217;t it <img src='http://masaguz.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  &#8230; sometime, we dont need to change .htaccess file, okay <img src='http://masaguz.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  have a nice coding &#8230;</p>
<h4>Incoming search terms:</h4><ul><li>how to change search path</li><li>How to Change Search Path in WordPress</li><li>wordpress change var $search_base =</li><li>wordpress search path</li></ul><!-- SEO SearchTerms Tagging 2 plugin took -0.073 ms -->]]></content:encoded>
			<wfw:commentRss>http://masaguz.net/wordpress/code/how-to-change-search-path-in-wordpress.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Why should you use wordpress ?</title>
		<link>http://masaguz.net/wordpress/why-should-you-use-wordpress.html</link>
		<comments>http://masaguz.net/wordpress/why-should-you-use-wordpress.html#comments</comments>
		<pubDate>Wed, 20 Jan 2010 10:07:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Bloggers]]></category>
		<category><![CDATA[Cms]]></category>
		<category><![CDATA[Content Management System]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>

		<guid isPermaLink="false">http://masaguz.net/?p=15</guid>
		<description><![CDATA[WordPress is a program that serves as a content management system or commonly called by cms. WordPress is familiar among bloggers, since most of them are already using this CMS in their blogging activities every day, including my own. WordPress cms known as a very user-friendly, easy to install, easy to use, very easy to modify templates, plugins and other modifications. Besides can be used for the activity of blogging, WordPress can also be used as a very powerful online [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><strong> </strong></p>
<p style="text-align: justify;"><strong></p>
<div class="wp-caption alignleft" style="width: 360px"><a href="http://www.masaguz.net"><img class=" " title="Wordpress" src="http://creativefan.com/files/2009/11/wordpress.jpg" alt="Wordpress" width="350" height="350" /></a><p class="wp-caption-text">Wordpress</p></div>
<p>WordPress</strong> is a program that serves as a content management system or commonly called by cms. WordPress is familiar among bloggers, since most of them are already using this CMS in their blogging activities every day, including my own.</p>
<p style="text-align: justify;">WordPress cms known as a very user-friendly, easy to install, easy to use, very easy to modify templates, plugins and other modifications. Besides can be used for the activity of blogging, WordPress can also be used as a very powerful online store.</p>
<p style="text-align: justify;">A lot of functions we can use wordpress. Apart from all that, wordpress has a very good quality in terms of SEO (Search Engine Optimization), I think, google loves wordpress. Why is that? In the analysis of the author, a site built on a foundation wordpress, very easy to get index on google, it&#8217;s easy also to get visitors, without having too much to change the wordpress code.</p>
<p style="text-align: justify;">From it, why do writers always use wordpress, and recommend it to all of you. Hopefully this brief information could be useful for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://masaguz.net/wordpress/why-should-you-use-wordpress.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to choose a good webhosting for your site ?</title>
		<link>http://masaguz.net/web-hosting/how-to-choose-a-good-webhosting-for-your-site.html</link>
		<comments>http://masaguz.net/web-hosting/how-to-choose-a-good-webhosting-for-your-site.html#comments</comments>
		<pubDate>Sun, 10 Jan 2010 03:30:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[Bandwidth]]></category>
		<category><![CDATA[Business Professionals]]></category>
		<category><![CDATA[Colleagues]]></category>
		<category><![CDATA[Consumer Complaints]]></category>
		<category><![CDATA[Hostgator]]></category>
		<category><![CDATA[Hosting Packages]]></category>
		<category><![CDATA[Hosting Service Provider]]></category>
		<category><![CDATA[Lot]]></category>
		<category><![CDATA[Lunarpages]]></category>
		<category><![CDATA[Personal Package]]></category>
		<category><![CDATA[Professional Package]]></category>
		<category><![CDATA[Reference]]></category>
		<category><![CDATA[Service Providers]]></category>
		<category><![CDATA[Web Hosting Service]]></category>
		<category><![CDATA[Web Hosting Service Provider]]></category>
		<category><![CDATA[Web Hosting Services]]></category>
		<category><![CDATA[Web Packages]]></category>
		<category><![CDATA[Web Service]]></category>
		<category><![CDATA[Webhosting]]></category>

		<guid isPermaLink="false">http://masaguz.net/?p=12</guid>
		<description><![CDATA[Actually not difficult to determine or select a good webhosting for our site. But there are some things that can be used as a reference to determine where we&#8217;re going to buy a webhosting. Each web hosting service provider, will offer several web hosting packages for us, there is usually a personal package, the package or packages business professionals, and certainly with different prices and features for each package. Before selecting a web hosting package, at least we&#8217;ve considered for [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><a href="http://secure.hostgator.com/~affiliat/cgi-bin/affiliates/clickthru.cgi?id=suganux"><img class="alignleft" title="Web Hosting" src="http://www.spamzapper.us/uploads/rJ/sw/rJsw4bQ8MuLeZmJu01DnkQ/Http.jpg" alt="Web Hosting" width="425" height="282" /></a>Actually not difficult to determine or select a <strong>good webhosting</strong> for our site. But there are some things that can be used as a reference to determine where we&#8217;re going to buy a webhosting. Each web hosting service provider, will offer several web hosting packages for us, there is usually a personal package, the package or packages business professionals, and certainly with different prices and features for each package.</p>
<p style="text-align: justify;">Before selecting a web hosting package, at least we&#8217;ve considered for several reasons, among others, our site will contain articles about what, how many visitors who will be targeted later, if needed email service, ssh, etc.. <span id="more-12"></span></p>
<p style="text-align: justify;">From here will be found, the packet is what we will buy. Because sometimes a lot of my colleagues chose the wrong web hosting package, because it was not in accordance with needs. Sites should use a professional package, they buy a package of personal, always short end bandwidth, and always getting into trouble.</p>
<p style="text-align: justify;">Some good web hosting service providers according to the author are:</p>
<p style="text-align: justify;">1. <a title="Hostgator" href="http://secure.hostgator.com/~affiliat/cgi-bin/affiliates/clickthru.cgi?id=suganux" target="_self">Hostgator</a>, they provide some of the packages according to the price in my opinion. Author&#8217;s knowledge, their support service is very good, very responsive to consumer complaints. In addition, they also always give a discount which is very useful for the users of web hosting services.</p>
<p style="text-align: justify;">2. HawkHost.<br />
3. LunarPages.<br />
and<br />
4. CirtexHosting.</p>
<p style="text-align: justify;">In fact there are many other <strong><a title="web hosting provider" href="http://www.masaguz.net" target="_self">web hosting providers</a></strong> who can not mention all the authors here. What is clear, we must be clever in choosing a web hosting service provider before we will buy it. Hopefully useful.</p>
<p><a href="http://secure.hostgator.com/~affiliat/cgi-bin/affiliates/clickthru.cgi?id=suganux-"><img src="http://tracking.hostgator.com/img/Green/468x60.gif" border=0></a></p>
<h4>Incoming search terms:</h4><ul><li>how to choose a good webhosting</li></ul><!-- SEO SearchTerms Tagging 2 plugin took -0.078 ms -->]]></content:encoded>
			<wfw:commentRss>http://masaguz.net/web-hosting/how-to-choose-a-good-webhosting-for-your-site.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A preface to a new personal blog</title>
		<link>http://masaguz.net/diary/a-preface-to-a-new-personal-blog.html</link>
		<comments>http://masaguz.net/diary/a-preface-to-a-new-personal-blog.html#comments</comments>
		<pubDate>Fri, 01 Jan 2010 03:24:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Diary]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Business From Home]]></category>
		<category><![CDATA[Business Issues]]></category>
		<category><![CDATA[Business Online]]></category>
		<category><![CDATA[Desk]]></category>
		<category><![CDATA[Government Office]]></category>
		<category><![CDATA[Health Technology]]></category>
		<category><![CDATA[Internet Business]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Lot]]></category>
		<category><![CDATA[Money]]></category>
		<category><![CDATA[Music Entertainment]]></category>
		<category><![CDATA[Office Job]]></category>
		<category><![CDATA[Personal Blog]]></category>
		<category><![CDATA[Preface]]></category>
		<category><![CDATA[Technology Gadgets]]></category>

		<guid isPermaLink="false">http://masaguz.net/?p=9</guid>
		<description><![CDATA[Finally I have my own personal blog, I actually have a lot of blogs, but it&#8217;s not a personal blog. Blog discusses business issues, internet, wordpress, linux, health, technology, gadgets, music, entertainment and other topics. Obviously all of that to bring in money for me. I am a person who does not have an office job. Since the beginning of 2009, I&#8217;ve started a business online because of the support of a friend who also worked on the internet. I [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><a href="http://www.masaguz.net"><img class="alignleft" title="Preface" src="http://1.bp.blogspot.com/_LBWmi5_DXuQ/S-mF8V-UxLI/AAAAAAAABhg/CHRYgZwoHCo/s1600/BEginner+Programming.jpg" alt="Preface" width="240" height="240" /></a>Finally I have my own personal blog, I actually have a lot of blogs, but it&#8217;s not a personal blog. Blog discusses business issues, internet, wordpress, linux, health, technology, gadgets, music, entertainment and other topics. Obviously all of that to bring in money for me.</p>
<p style="text-align: justify;">I am a person who does not have an office job. Since the beginning of 2009, I&#8217;ve started a business online because of the support of a friend who also worked on the internet. I am very interested because the income from the internet turned out bigger than we are working in the office, even if it is a government office.</p>
<p style="text-align: justify;">With that reason, I finally decided to get out of the office where I work, and finally I start internet business from home desk. Hopefully this blog can be useful for me, and also for all of you.</p>
]]></content:encoded>
			<wfw:commentRss>http://masaguz.net/diary/a-preface-to-a-new-personal-blog.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
