<?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>Bowolabs</title>
	<atom:link href="http://bowolabs.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bowolabs.com</link>
	<description>Just My Footnotes</description>
	<lastBuildDate>Sat, 18 May 2013 17:00:49 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Adding Custom Taxonomy On Your WordPress</title>
		<link>http://bowolabs.com/adding-custom-taxonomy-on-your-wordpress/</link>
		<comments>http://bowolabs.com/adding-custom-taxonomy-on-your-wordpress/#comments</comments>
		<pubDate>Sat, 18 May 2013 17:00:49 +0000</pubDate>
		<dc:creator>Bowo</dc:creator>
				<category><![CDATA[Wordpress Tips]]></category>
		<category><![CDATA[custom taxonomy]]></category>
		<category><![CDATA[functions.php]]></category>
		<category><![CDATA[taxonomy]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://bowolabs.com/?p=139</guid>
		<description><![CDATA[Sometimes tags and category on wordpress is not enough to separate something that we want, for example if you you have a blog who write about review book, you want to separate your review about some book based on writter, genre, year etc. Now how we can sort it meanwhile we only have category and [...]]]></description>
				<content:encoded><![CDATA[<p>Sometimes tags and category on wordpress is not enough to separate something that we want, for example if you you have a blog who write about review book, you want to separate your review about some book based on writter, genre, year etc. Now how we can sort it meanwhile we only have category and tags, don&#8217;t worry, wordpress have facillities called CUSTOM TAXONOMY. Want to know what is custom taxonomy?? <span id="more-139"></span></p>
<p>Custom Taxonomy is is a grouping mechanism for some posts, just like tags and category, now how to add this thing to your wordpress? its easy, just paste this code on your functions.php</p>
<pre class="brush: php; ">

function writter_taxonomies_tags() {
	$labels = array(
		&#039;name&#039;              =&gt; _x( &#039;Writter&#039;, &#039;taxonomy general name&#039; ),
		&#039;singular_name&#039;     =&gt; _x( &#039;Writter&#039;, &#039;taxonomy singular name&#039; ),
		&#039;search_items&#039;      =&gt; __( &#039;Search Writter&#039; ),
		&#039;all_items&#039;         =&gt; __( &#039;All Writter&#039; ),
		&#039;parent_item&#039;       =&gt; __( &#039;Parent Writter&#039; ),
		&#039;parent_item_colon&#039; =&gt; __( &#039;Parent Writter:&#039; ),
		&#039;edit_item&#039;         =&gt; __( &#039;Edit Writter&#039; ), 
		&#039;update_item&#039;       =&gt; __( &#039;Update Writter&#039; ),
		&#039;add_new_item&#039;      =&gt; __( &#039;Add New Writter&#039; ),
		&#039;new_item_name&#039;     =&gt; __( &#039;New Writter&#039; ),
		&#039;menu_name&#039;         =&gt; __( &#039;Writter&#039; ),
	);
	$args = array(
		
		&#039;labels&#039;                     =&gt; $labels,
		&#039;hierarchical&#039;               =&gt; false,
		&#039;public&#039;                     =&gt; true,
		&#039;show_ui&#039;                    =&gt; true,
		&#039;show_admin_column&#039;          =&gt; true,
		&#039;show_in_nav_menus&#039;          =&gt; true,
		&#039;show_tagcloud&#039;              =&gt; true,
	);
	register_taxonomy( &#039;writter&#039;, &#039;post&#039;, $args );
}
add_action( &#039;init&#039;, &#039;writter_taxonomies_tags&#039;, 0 );

</pre>
<p>When you paste above code on your functions, you will got another grouping term called &#8220;Writter&#8221; in this box you can add term just like &#8220;Tags&#8221; functions.</p>
<p>Bit confusing I know, but when you try by ur self you will know what I&#8217;am talking about..</p>
<p>Happy coding <img src='http://bowolabs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://bowolabs.com/adding-custom-taxonomy-on-your-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BBM will release to android and iOS</title>
		<link>http://bowolabs.com/bbm-will-release-to-android-and-ios/</link>
		<comments>http://bowolabs.com/bbm-will-release-to-android-and-ios/#comments</comments>
		<pubDate>Wed, 15 May 2013 15:34:07 +0000</pubDate>
		<dc:creator>Bowo</dc:creator>
				<category><![CDATA[Daily Notes]]></category>

		<guid isPermaLink="false">http://bowolabs.com/?p=134</guid>
		<description><![CDATA[Shocking news came from BlackBerry Live 2013 in Orlando, from that event, Blackberry announced that the will release BBM (BlackBerry Messenger) to android and IOS, that what Thorstein Heins the Blackberry CEO said. Hoaahh so what for i have blackberry when BBM can be used on android, I can just buy android cellphone who have [...]]]></description>
				<content:encoded><![CDATA[<p>Shocking news came from BlackBerry Live 2013 in Orlando, from that event, Blackberry announced that the will release BBM (BlackBerry Messenger) to android and IOS, that what Thorstein Heins the Blackberry CEO said.</p>
<p><a href="http://bowolabs.com/wp-content/uploads/2013/05/bbm.jpg"><img class="aligncenter size-full wp-image-135" alt="bbm" src="http://bowolabs.com/wp-content/uploads/2013/05/bbm.jpg" width="200" height="200" /></a><span id="more-134"></span></p>
<p>Hoaahh so what for i have blackberry when BBM can be used on android, I can just buy android cellphone who have cheaper price than Blackberry it self with the same BBM features.</p>
<p>Well all I can do just wait till summer then, and see how BBM work on the android and iOS..</p>
]]></content:encoded>
			<wfw:commentRss>http://bowolabs.com/bbm-will-release-to-android-and-ios/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Canon EOS 600D Review</title>
		<link>http://bowolabs.com/canon-eos-600d-review/</link>
		<comments>http://bowolabs.com/canon-eos-600d-review/#comments</comments>
		<pubDate>Mon, 13 May 2013 07:05:59 +0000</pubDate>
		<dc:creator>Bowo</dc:creator>
				<category><![CDATA[Daily Notes]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[canon]]></category>
		<category><![CDATA[canon 600d]]></category>
		<category><![CDATA[canon eos 600d]]></category>
		<category><![CDATA[canon rebel t3i]]></category>
		<category><![CDATA[dslr]]></category>

		<guid isPermaLink="false">http://bowolabs.com/?p=130</guid>
		<description><![CDATA[Hi there.. I just got a new toy today&#8230; just I just bought my first DSLR camera, its Canon EOS 600D, fyi I never playing with DSLR camera before, just watching my friends playing around with their camera and its look very interesting, that why when i got money i try to buy it one, [...]]]></description>
				<content:encoded><![CDATA[<p>Hi there..</p>
<p>I just got a new toy today&#8230; <img src='http://bowolabs.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  just I just bought my first DSLR camera, its Canon EOS 600D, fyi I never playing with DSLR camera before, just watching my friends playing around with their camera and its look very interesting, that why when i got money i try to buy it one, and my choice goes to Canon Rebel T3i a.k.a Canon EOS 600D. Here is my review about this Canon EOS 600D.</p>
<p><a href="http://bowolabs.com/wp-content/uploads/2013/05/canon600d.jpg"><img class="aligncenter size-medium wp-image-131" alt="canon 600d" src="http://bowolabs.com/wp-content/uploads/2013/05/canon600d-300x165.jpg" width="300" height="165" /></a><span id="more-130"></span></p>
<p>In my opinion in the design, Canon EOS 600D is almost same with the other Canon DSLR camera series, the thing that look really different with the other is the LCD placement, we can flip the LCD and rotate it. About the price in my city they selling about $550. This Canon 600D came with EF-S 18-55 IS II kit lens (some of them also came with 18-135mm lens), this lens is good enough for beginner level like me, but one of my friend suggest me to optimize my &#8220;masterpiece&#8221; i must buy at least fixed 55mm lens, hmm.. i will think about that later, don&#8217;t have any money left LOL</p>
<p>Btw, here is the specs of Canon EOS 600D</p>
<p><strong></strong>information taken from bhinneka.com</p>
<table cellspacing="0" cellpadding="3">
<tbody>
<tr>
<td valign="top"><strong>Feature</strong></td>
<td valign="top">
<div>
<ul>
<li>High Resolution Still Capture</li>
<li>DIGIC 4 Image Processor</li>
<li>Amazing Results, No Matter the Light</li>
<li>HD Dreams Come True</li>
<li>Three Recording Sizes</li>
<li>Low Angles or High, a Big Vari-Angle LCD Captures All the Details</li>
<li>Automatic Scene Analysis for Standout Color</li>
<li>Make Your Images As You See Them</li>
<li>Intelligent Scene Analysis for Superb Exposure</li>
<li>Never Miss a Moment</li>
<li>Photography Made Truly Easy</li>
<li>Flexible Storage with Memory Cards</li>
</ul>
</div>
</td>
</tr>
<tr>
<td valign="top"><b>Model</b></td>
<td valign="top">APS-C Digital SLR</td>
</tr>
<tr>
<td valign="top"><b>Max. Image resolution<br />
</b></td>
<td valign="top">18 Megapixel</td>
</tr>
<tr>
<td valign="top"><b>Sensor</b></td>
<td valign="top">APS-C CMOS</td>
</tr>
<tr>
<td valign="top"><b>Image Processor</b></td>
<td valign="top">Canon DIGIC 4</td>
</tr>
<tr>
<td valign="top"><b>Dust Reduction System</b></td>
<td valign="top">Yes</td>
</tr>
<tr>
<td valign="top"><b>Image Size<br />
</b></td>
<td valign="top">17.9MP (Large) 8.0MP (Medium) 4.5MP (Small)</td>
</tr>
<tr>
<td valign="top"><b>Image Format<br />
</b></td>
<td valign="top">JPEG, RAW, RAW+JPEG</td>
</tr>
<tr>
<td valign="top"><b>Video Recording</b></td>
<td valign="top">1920 x 1080/30p/24p/25p 1280 x 720/50p/60p 640 x 480/30p/25p</td>
</tr>
<tr>
<td valign="top"><b>Format Video</b></td>
<td valign="top">.MOV</td>
</tr>
<tr>
<td valign="top"><b>Lens Mount</b></td>
<td valign="top">Compatible with Canon EF lenses, including EF-S lenses</td>
</tr>
<tr>
<td valign="top"><b>Sistem Metering</b></td>
<td valign="top">Evaluative, Partial, Spot, Center-weighted</td>
</tr>
<tr>
<td valign="top"><b>ISO Sensitivity</b></td>
<td valign="top">100-6400</td>
</tr>
<tr>
<td valign="top"><b>Shutter </b></td>
<td valign="top">1/4000 to 1/60 second, X-sync at 1/200 second, 1/4000 to 30 seconds, Bulb</td>
</tr>
<tr>
<td valign="top"><b>White Balance</b></td>
<td valign="top">Auto white balance with the image sensor</td>
</tr>
<tr>
<td valign="top"><b>Viewfinder</b></td>
<td valign="top">Eye-level SLR (with fixed pentamirror)</td>
</tr>
<tr>
<td valign="top"><b>LCD Monitor</b></td>
<td valign="top">3.0&#8243; TFT LCD</td>
</tr>
<tr>
<td valign="top"><b>Internal Flash</b></td>
<td valign="top">Yes</td>
</tr>
<tr>
<td valign="top"><b>Live View</b></td>
<td valign="top">Yes</td>
</tr>
<tr>
<td valign="top"><b>Power</b></td>
<td valign="top">Lithium-ion (LP-E8) With BG-E8, two battery packs (LP-E8) can be used. Or six size &#8216;AA&#8217;/LR6 batteries can be used</td>
</tr>
<tr>
<td valign="top"><b>Dimension</b></td>
<td valign="top">5.2 x 3.9 x 3.1&#8243; / 133.1 x 99.5 x 79.7mm</td>
</tr>
<tr>
<td valign="top"><b>Weight</b></td>
<td valign="top">515g Body only</td>
</tr>
</tbody>
</table>
<p>Ok now.. camera is on.. and ACTION !! lol <img src='http://bowolabs.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://bowolabs.com/canon-eos-600d-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enabling NetBIOS over TCP/IP</title>
		<link>http://bowolabs.com/enabling-netbios-over-tcpip/</link>
		<comments>http://bowolabs.com/enabling-netbios-over-tcpip/#comments</comments>
		<pubDate>Sat, 11 May 2013 05:46:19 +0000</pubDate>
		<dc:creator>Bowo</dc:creator>
				<category><![CDATA[Daily Notes]]></category>
		<category><![CDATA[Windows Tips]]></category>
		<category><![CDATA[NetBIOS]]></category>
		<category><![CDATA[RegEdit]]></category>
		<category><![CDATA[TCP/IP]]></category>

		<guid isPermaLink="false">http://bowolabs.com/?p=128</guid>
		<description><![CDATA[Just quick posting for my own note, this is how to enable NetBIOS over TCP/IP that cannot enable it even when u use local area connection properties > Internet protocol (tcp/ip) > properties > advanced > WINS > and choose enable NetBIOS over tcp/ip All you have to do just go to Registry Editor > [...]]]></description>
				<content:encoded><![CDATA[<p>Just quick posting for my own note, this is how to enable NetBIOS over TCP/IP that cannot enable it even when u use local area connection properties > Internet protocol (tcp/ip) > properties > advanced > WINS > and choose enable NetBIOS over tcp/ip<span id="more-128"></span></p>
<p>All you have to do just go to Registry Editor > HKLM\SYSTEM\CurrentControlSet\Serv­ ices\NetBT\Parameters\TransportBin on the dName set it to &#8220;\Device\&#8221; rebooted and check again using ipconfig /all</p>
]]></content:encoded>
			<wfw:commentRss>http://bowolabs.com/enabling-netbios-over-tcpip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download file from URL to your server</title>
		<link>http://bowolabs.com/download-file-from-url-to-your-server/</link>
		<comments>http://bowolabs.com/download-file-from-url-to-your-server/#comments</comments>
		<pubDate>Thu, 09 May 2013 16:26:23 +0000</pubDate>
		<dc:creator>Bowo</dc:creator>
				<category><![CDATA[PHP Tips]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[download server to server]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[server to server]]></category>

		<guid isPermaLink="false">http://bowolabs.com/?p=126</guid>
		<description><![CDATA[Another problem I am facing with one of my client is uploading file to hosting, in my country the connection to upload and download not to good (well at least with my connection ) and I always must upload same image with big size (about 10mb) maybe small to you but not for me LOL, [...]]]></description>
				<content:encoded><![CDATA[<p>Another problem I am facing with one of my client is uploading file to hosting, in my country the connection to upload and download not to good (well at least with my connection <img src='http://bowolabs.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  ) and I always must upload same image with big size (about 10mb) maybe small to you but not for me LOL, and to avoid I keep upload and upload everytime, I am thinking why not doing like this &#8220;upload the file to 1 hosting, and next time I need that file, i just create php file to download the file from that hosting to destination hosting&#8221;. Is it possible? well the answer is YES<span id="more-126"></span></p>
<p>For example you already upload image.zip on hosting A, and right now you want to use that image.zip on hosting B, what you have to do is, create 1 php file and upload it to hosting B.</p>
<p>The file look like this</p>
<pre class="brush: php; ">

&lt;?php
file_put_contents(&quot;image.zip&quot;, file_get_contents(&quot;http://hostingA/image.zip&quot;));
?&gt;

</pre>
<p>Save it with the name download.php for example, and when its done, open that file, http://hostingB/download.php, and try to check on the same folder, the file image.zip already download</p>
<p>PS: like i told you this is only for file that the size is not to big, for a big file, i will write on other articles</p>
<p>Have a nice day <img src='http://bowolabs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://bowolabs.com/download-file-from-url-to-your-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding author box under the post</title>
		<link>http://bowolabs.com/adding-author-box-under-the-post/</link>
		<comments>http://bowolabs.com/adding-author-box-under-the-post/#comments</comments>
		<pubDate>Wed, 08 May 2013 11:31:59 +0000</pubDate>
		<dc:creator>Bowo</dc:creator>
				<category><![CDATA[Wordpress Tips]]></category>
		<category><![CDATA[author box]]></category>
		<category><![CDATA[single.php]]></category>
		<category><![CDATA[snippet]]></category>
		<category><![CDATA[style.css]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://bowolabs.com/?p=118</guid>
		<description><![CDATA[Few days ago, one of my client asking me to add author box under all their post, its because the wordpress site he build have more than 2 author, and he want to show each author under their post, including their photos, now how to do that? Ill show you on the next few second.. [...]]]></description>
				<content:encoded><![CDATA[<p>Few days ago, one of my client asking me to add author box under all their post, its because the wordpress site he build have more than 2 author, and he want to show each author under their post, including their photos, now how to do that? Ill show you on the next few second..<span id="more-118"></span></p>
<p>First we  need to plan how the author box looks like, and in my imagine, the author box will contain..</p>
<ol>
<li>Photo</li>
<li>Name</li>
<li>Description about the author (just little bit)</li>
</ol>
<p>Now, for photos, we will use facilities from gravatar, for you who don&#8217;t know what is gravatar, you can visiting their website <a title="Gravatar" href="http://gravatar.com" target="_blank">here</a>.. you can add your photos that you will use for author box on that site, but remember the email that you use for register on gravatar must be same with email on your wp site.</p>
<p>Next, for name and description, go to dashboard &gt; Users &gt; Your Profile, scroll down the page, and you will see, <span style="text-decoration: underline;">Nickname</span> column, edit that to display author name and <span style="text-decoration: underline;">biographical info</span> column for description information, when you done, save it.</p>
<p>Now for the code, i use code from <a href="http://wpbeginner.com" title="WP Beginner" target="_blank">WP Beginner</a>, the code is like this</p>
<pre class="brush: php; ">

&lt;div id=&quot;authorarea&quot;&gt;
&lt;?php if (function_exists(&#039;get_avatar&#039;)) { echo get_avatar( get_the_author_email(), &#039;100&#039; ); }?&gt;
&lt;div class=&quot;authorinfo&quot;&gt;
&lt;h3&gt;About &lt;?php the_author_posts_link(); ?&gt;&lt;/h3&gt;
&lt;p&gt;&lt;?php the_author_description(); ?&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;

</pre>
<p>Paste that code on your single.php, inside the loop, meanwhile this css code below you can paste on your style.css</p>
<pre class="brush: css; ">

#authorarea{
background: #f0f0f0;
border: 1px solid #d2d2d2;
padding: 10px;
width:500px;
overflow:hidden;
color: #333;
}
#authorarea h3{
font-size: 18px;
color:#333;
margin:0;
padding:10px 10px 5px 10px;
}
#authorarea h3 a{
text-decoration:none;
color: #333;
font-weight: bold;
}
#authorarea img{
margin:0;
padding:10px;
float:left;
border: 1px solid #ddd;
width: 100px;
height: 100px;
}
#authorarea p{
color:#333;
margin:0;
padding:0px 10px 10px 10px;
}
#authorarea p a{
color:#333;
}
.authorinfo{
padding-left:120px;
} 

</pre>
<p>You can try to edit the css to integrated with your theme (for example the color, or the width), when its done try to open one of your post, and check does the author box show up?! </p>
<p>Have a nice try <img src='http://bowolabs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://bowolabs.com/adding-author-box-under-the-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shortcodes Squeeze Pages</title>
		<link>http://bowolabs.com/shortcodes-squeeze-pages/</link>
		<comments>http://bowolabs.com/shortcodes-squeeze-pages/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 13:04:08 +0000</pubDate>
		<dc:creator>Bowo</dc:creator>
				<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[squeeze themes]]></category>
		<category><![CDATA[wp themes]]></category>

		<guid isPermaLink="false">http://bowolabs.com/?p=107</guid>
		<description><![CDATA[Not give name for this squeeze themes yet but for sure you can create nice squeeze theme only using shortcodes, I just finish it few minutes ago, just in case you want to see the screenshot here you go.. (click to open in real size) Still not decide yet, should I give it free or [...]]]></description>
				<content:encoded><![CDATA[<p>Not give name for this squeeze themes yet but for sure you can create nice squeeze theme only using shortcodes, I just finish it few minutes ago, just in case you want to see the screenshot here you go.. (click to open in real size)<span id="more-107"></span></p>
<p style="text-align: center;"><a href="http://bowolabs.com/wp-content/uploads/2012/04/squeeze.jpg"><img class="aligncenter size-medium wp-image-106" title="squeeze" src="http://bowolabs.com/wp-content/uploads/2012/04/squeeze-46x300.jpg" alt="" width="46" height="300" /></a></p>
<p style="text-align: left;">Still not decide yet, should I give it free or paid (with dev license of course), what do you think??</p>
<p style="text-align: left;">*update..</p>
<p style="text-align: left;">Finally i found name for this themes, its called KUNTUL, and yes ITS FREE.. (soon, please patient), you can look demo the <a href="http://themes.bowolabs.com/kuntul/">HERE</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bowolabs.com/shortcodes-squeeze-pages/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adding PHP code in HTML file using htaccess</title>
		<link>http://bowolabs.com/adding-php-code-in-html-file-using-htaccess/</link>
		<comments>http://bowolabs.com/adding-php-code-in-html-file-using-htaccess/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 08:04:52 +0000</pubDate>
		<dc:creator>Bowo</dc:creator>
				<category><![CDATA[PHP Tips]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[snippet]]></category>

		<guid isPermaLink="false">http://bowolabs.com/?p=96</guid>
		<description><![CDATA[Huahh its been quite long I&#8217;am not write in this blog, and right now i just want to write a short note LOL, yeah I know, but I am so sorry because i have lot thing to do and lot work to finish, so lets make this hurry ok For you who want to add [...]]]></description>
				<content:encoded><![CDATA[<p>Huahh its been quite long I&#8217;am not write in this blog, and right now i just want to write a short note LOL, yeah I know, but I am so sorry because i have lot thing to do and lot work to finish, so lets make this hurry ok <img src='http://bowolabs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>For you who want to add some php snippet to html file, you can add this code to your htaccess<span id="more-96"></span></p>
<pre class="brush: php; ">

 # =============================================================
 # This line will allow php to be included in htm and html files

       AddHandler application/x-httpd-php5 .html .htm

</pre>
<p>And now you can add any php code to your html file, have fun <img src='http://bowolabs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://bowolabs.com/adding-php-code-in-html-file-using-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install phpMyAdmin on CentOS 5</title>
		<link>http://bowolabs.com/install-phpmyadmin-on-centos-5/</link>
		<comments>http://bowolabs.com/install-phpmyadmin-on-centos-5/#comments</comments>
		<pubDate>Mon, 30 May 2011 13:43:47 +0000</pubDate>
		<dc:creator>Bowo</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Wordpress Tips]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://bowolabs.com/?p=85</guid>
		<description><![CDATA[Hello again.. Yesterday we already learn how to install PHP and mySQL on CentOS 5, now we will learn about how to install phpMyAdmin on CentOS 5, for your information who don&#8217;t know what is phpMyAdmin, let me explain in short text, phpMyAdmin is a script written in PHP language, the function of phpMyAdmin is [...]]]></description>
				<content:encoded><![CDATA[<p>Hello again.. <img src='http://bowolabs.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Yesterday we already learn how to <a href="http://bowolabs.com/install-php-mysql-on-centos-5/">install PHP and mySQL on CentOS 5</a>, now we will learn about how to install phpMyAdmin on CentOS 5, for your information who don&#8217;t know what is phpMyAdmin, let me explain in short text, phpMyAdmin is a script written in PHP language, the function of phpMyAdmin is to handle the administration of MySQL via website. phpMyAdmin supports lot of operations with MySQL like managing databases, tables, fields, relations, indexes, users, permissions, etc and not only that, phpMyAdmin also have the ability to directly execute any SQL statement.</p>
<p>Ok dont wasting time anymore, lets try it.. <img src='http://bowolabs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <span id="more-85"></span></p>
<p>First you must know what type is your CentOS, is it x86 (i386) or x64 (x86_64), and to find out just type </p>
<pre class="brush: php; ">

uname -i

</pre>
<p>After you find out what version is your CentOS, now its time to download the repo</p>
<p>for x86 (i386)</p>
<pre class="brush: php; ">

wget http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.1-1.el5.rf.i386.rpm
rpm -Uvh rpmforge-release-0.5.1-1.el5.rf.i386.rpm

</pre>
<p>for x64 (x86_64)</p>
<pre class="brush: php; ">

wget http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.1-1.el5.rf.x86_64.rpm
rpm -Uvh rpmforge-release-0.5.1-1.el5.rf.x86_64.rpm

</pre>
<p>Starting install phpMyAdmin</p>
<pre class="brush: php; ">

yum -y install phpmyadmin

</pre>
<p>edit file phpmyadmin.conf</p>
<pre class="brush: php; ">

vi /etc/httpd/conf.d/phpmyadmin.conf

</pre>
<p>Comment (add # mark on the front of text) the other settings and leave only the following:</p>
<pre class="brush: php; ">

Alias /phpmyadmin /usr/share/phpmyadmin
Alias /phpMyAdmin /usr/share/phpmyadmin
Alias /mysqladmin /usr/share/phpmyadmin

</pre>
<p>Save (on keyboard press key &#8220;Esc&#8221; and then type &#8220;:wq&#8221;)</p>
<p>edit file config.inc.php</p>
<pre class="brush: php; ">

vi /usr/share/phpmyadmin/config.inc.php

</pre>
<p>Find the following line</p>
<pre class="brush: php; ">

$cfg[&#039;Servers&#039;][$i][&#039;auth_type&#039;] = &#039;cookie&#039;;

</pre>
<p>And replace &#8216;<strong>cookie</strong>&#8216; with &#8216;<strong>http</strong>&#8216;</p>
<p>Restart Apache</p>
<pre class="brush: php; ">

service httpd restart

</pre>
<p>DONE !!<br />
To login just type http://yoursite.com/phpmyadmin and login with ur <strong>root</strong> and <strong>mysql password</strong></p>
<p>Enjoy <img src='http://bowolabs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://bowolabs.com/install-phpmyadmin-on-centos-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install PHP mySQL on CentOS 5</title>
		<link>http://bowolabs.com/install-php-mysql-on-centos-5/</link>
		<comments>http://bowolabs.com/install-php-mysql-on-centos-5/#comments</comments>
		<pubDate>Sun, 29 May 2011 13:02:23 +0000</pubDate>
		<dc:creator>Bowo</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://bowolabs.com/?p=81</guid>
		<description><![CDATA[Hi.. Today I want to share tutorial installing PHP and mySQL on CentOS 5, actually this also for my note because I always forget to type it, so better I put this on my blog so when I need it, just open my blog and find it. Ok the first thing you need to know, [...]]]></description>
				<content:encoded><![CDATA[<p>Hi..<br />
Today I want to share tutorial installing PHP and mySQL on CentOS 5, actually this also for my note because I always forget to type it, so better I put this on my blog so when I need it, just open my blog and find it.</p>
<p>Ok the first thing you need to know, when you install CentOS from your server (I am using VPS) the apache also installed automatically, so you no need to install apache again, but just in case your server not automatically install apache, just install it using yum<span id="more-81"></span></p>
<pre class="brush: php; ">

yum install httpd

</pre>
<p>Oh in case you get trouble with fastmirror on yum read my post about <a href="http://bowolabs.com/solved-yum-thread-error-cant-start-new-thread/">yum problem</a>.</p>
<p>Ok next installing php, use this command </p>
<pre class="brush: php; ">

yum install php php-soap php-xmlrpc php-imap php-mcrypt php-mhash php-mbstring php-mysql php-xml php-gd

</pre>
<p>It will install PHP and some addons that maybe you will need it in the future when u installing some php script or something else.</p>
<p>When it asks for yes or no just press &#8220;Y&#8221; and Enter.</p>
<p>Done for PHP, now move to mySQL, use this command</p>
<pre class="brush: php; ">

yum install mysql mysql-server mysql-devel

</pre>
<p>And again if it asks for yes or no just press &#8220;Y&#8221; and Enter.</p>
<p>DONE !! and for activate it you just need to install apache using this command </p>
<pre class="brush: php; ">

service httpd restart

</pre>
<p>Simple right?! now try it on your server and good luck !!</p>
<p><strong><em>note: this is optional tuts that maybe u interest</em></strong></p>
<hr/>
<p>1. To make mySQL autorun on startup type this</p>
<pre class="brush: php; ">

chkconfig --levels 235 mysqld on

</pre>
<p>After done restart mySQL with command </p>
<pre class="brush: php; ">

service mysqld restart

</pre>
<p>2. To make Apache autorun on startup type this</p>
<pre class="brush: php; ">

chkconfig --levels 235 httpd on

</pre>
<p>After done restart Apache with command </p>
<pre class="brush: php; ">

service httpd restart

</pre>
<p>3. Creating ROOT password on mySQL</p>
<pre class="brush: php; ">

mysqladmin -u root password yourpassword
mysqladmin -h yourhostname -u root password yourpassword

</pre>
]]></content:encoded>
			<wfw:commentRss>http://bowolabs.com/install-php-mysql-on-centos-5/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
