<?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>Myo Kyaw Htun . com &#187; Tutorials</title>
	<atom:link href="http://www.myokyawhtun.com/category/tutorials/feed" rel="self" type="application/rss+xml" />
	<link>http://www.myokyawhtun.com</link>
	<description>A Technology blog maintained by Myanmar Blogger focus on Wordpress, Blogging, Free Wordpress Themes / Blogger Template and Web Technology</description>
	<lastBuildDate>Thu, 09 Feb 2012 07:44:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to use Google Web Fonts</title>
		<link>http://www.myokyawhtun.com/tutorials/how-to-use-google-web-fonts.html</link>
		<comments>http://www.myokyawhtun.com/tutorials/how-to-use-google-web-fonts.html#comments</comments>
		<pubDate>Wed, 08 Feb 2012 02:46:28 +0000</pubDate>
		<dc:creator>Myo Kyaw Htun</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.myokyawhtun.com/?p=1920</guid>
		<description><![CDATA[It is really considered to be painful when it comes to design the website with the custom type faces. Web designers and developers are limited to use web safe fonts when specifying the type faces to make the site support in all OS platforms. Thanks to the modern web browsers, you can now use and&#8230;]]></description>
			<content:encoded><![CDATA[<p>It is really considered to be painful when it comes to design the website with the custom type faces. Web designers and developers are limited to use web safe fonts when specifying the type faces to make the site support in all OS platforms. Thanks to the modern web browsers, you can now use and embed the custom type faces in your website. There are many web font services out there that allow you to embed both commercial and free fonts. I&#8217;m going to cover Google web fonts in this post.</p>
<h3>Google Web fonts</h3>
<p><a title="Google Web Fonts" href="http://www.google.com/webfonts">Google web fonts</a> is a free service from Google that allows you to embed the fonts which are available in Google web fonts. To use google web fonts, please follow the steps.</p>
<h3>Step 1</h3>
<p>go to <a href="http://www.google.com/webfonts">http://www.google.com/webfonts</a> and click &#8220;start choosing fonts&#8221;.</p>
<h3>Step 2</h3>
<p>There are number of free fonts available in Google web fonts. You can filter by type faces, thickness, slant and width if you want. Select the fonts by clicking add to collection button. After you select the fonts, you can now click &#8216;use&#8217;. Using of too many font faces can slow down your site loading. Please use it wisely.</p>
<p><img class="aligncenter size-full wp-image-1923" title="google-web-fonts-select" src="http://www.myokyawhtun.com/wp-content/uploads/2012/02/google-web-fonts-select.png" alt="" width="610" height="441" /></p>
<h3>Step 3</h3>
<p>Select the html link tag code that you found in next page and insert the code before head tag element. In order to use the font, you must have to apply the font family in your css file.</p>
<p><img class="aligncenter size-full wp-image-1922" title="google-web-fonts-code" src="http://www.myokyawhtun.com/wp-content/uploads/2012/02/google-web-fonts-code.png" alt="" width="610" height="285" /></p>
<h3>Sample HTML</h3>
<pre class="brush:html">&lt;html&gt;

&lt;head&gt;

&lt;title&gt;Google Web Font testing&lt;/title&gt;

&lt;link href='http://fonts.googleapis.com/css?family=Condiment|Asap' rel='stylesheet' type='text/css'&gt;
&lt;style type="text/css"&gt;
h1 {
font-family: 'Condiment', cursive, serif;
}
&lt;/style&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;h1&gt;This is the Title - Condiment&lt;/h1&gt;
&lt;/body&gt;

&lt;/html&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.myokyawhtun.com/tutorials/how-to-use-google-web-fonts.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to change database engine of many Mysql tables</title>
		<link>http://www.myokyawhtun.com/tutorials/how-to-change-database-engine-of-many-mysql-tables.html</link>
		<comments>http://www.myokyawhtun.com/tutorials/how-to-change-database-engine-of-many-mysql-tables.html#comments</comments>
		<pubDate>Wed, 23 Feb 2011 07:22:29 +0000</pubDate>
		<dc:creator>Myo Kyaw Htun</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.myokyawhtun.com/?p=1859</guid>
		<description><![CDATA[For some reasons, you have to change the default engine of your mysql database tables to another engine. For example, MyISAM to InnoDB. MySql allows us to change by using command line and if you&#8217;re using phpMyAdmin, you just need a few clicks. ALTER TABLE tablename ENGINE = InnoDB But the problem is that MySQL&#8230;]]></description>
			<content:encoded><![CDATA[<p>For some reasons, you have to change the default engine of your mysql database tables to another engine. For example, MyISAM to InnoDB. MySql allows us to change by using command line and if you&#8217;re using phpMyAdmin, you just need a few clicks.</p>
<p><span id="more-1859"></span></p>
<pre class="brush:sql">ALTER TABLE tablename ENGINE = InnoDB</pre>
<p>But the problem is that MySQL doesn&#8217;t allow us to use ALTER for so many tables at once. Thinking about you have more than 300 tables in your database. You have to type again and again until you reach the last table in your database. Here is a solution that you can do with PHP if you&#8217;re using MySQL with PHP.</p>
<pre class="brush:php">$sq = mysql_connect("localhost","root","root");
$db = mysql_select_db("yourdb"); // your db
$rs = mysql_query("SHOW TABLES");

while($row=mysql_fetch_array($rs)){
 $k=mysql_query("ALTER TABLE {$row[0]} ENGINE = INNODB");
}</pre>
<p>I think I don&#8217;t need to go deeper to explain for this very simple code. First and second lines are trying to connect to your MySQL server and database. Third line executes the query to list the tables in your database. And loop until it reach at the end of the record. The record $rs carries the list of your table names and array zero index of each record ($row) has the table name.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myokyawhtun.com/tutorials/how-to-change-database-engine-of-many-mysql-tables.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turn your photo into Pencil Painting</title>
		<link>http://www.myokyawhtun.com/tutorials/turn-your-photo-into-pencil-painting.html</link>
		<comments>http://www.myokyawhtun.com/tutorials/turn-your-photo-into-pencil-painting.html#comments</comments>
		<pubDate>Mon, 08 Jun 2009 08:37:18 +0000</pubDate>
		<dc:creator>Myo Kyaw Htun</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Image Editing]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.myokyawhtun.com/?p=1540</guid>
		<description><![CDATA[My brother wrote a very simple Photoshop tutorial that can turn your photo into pencil drawing using Photoshop. Click for more detail.]]></description>
			<content:encoded><![CDATA[<p>My brother wrote a very simple <strong>Photoshop tutorial</strong> that can turn your photo into pencil drawing using Photoshop. <a title="Pencil Painting in Photoshop" href="http://www.myohanhtun.com/tutorials/photoshop-tutorial-1-photo-to-pencil-drawing-in-adobe-photoshop.html/">Click for more detail</a>.</p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-1541" title="photoshop-pencil" src="http://www.myokyawhtun.com/wp-content/uploads/2009/06/photoshop-pencil.jpg" alt="photoshop-pencil" width="333" height="500" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.myokyawhtun.com/tutorials/turn-your-photo-into-pencil-painting.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Changing Password in WordPress</title>
		<link>http://www.myokyawhtun.com/wordpress/changing-password-in-wordpress.html</link>
		<comments>http://www.myokyawhtun.com/wordpress/changing-password-in-wordpress.html#comments</comments>
		<pubDate>Sat, 27 Sep 2008 15:42:38 +0000</pubDate>
		<dc:creator>Myo Kyaw Htun</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress tutorial]]></category>
		<category><![CDATA[Wordpress tutorials]]></category>

		<guid isPermaLink="false">http://www.myokyawhtun.com/?p=1106</guid>
		<description><![CDATA[It is really important that you should change your password immediately when you logged in your wordpress panel for this first time after fresh installation of your WordPress. To change your password, click admin link next to &#8220;Howdy&#8221; text message in upper right corner of your WordPress panel Or type yourblogaddress.com/wp-admin/profile.php in browser address bar.&#8230;]]></description>
			<content:encoded><![CDATA[<p>It is really important that you should change your password immediately when you logged in your wordpress panel for this first time after fresh installation of your WordPress. To change your password, click <strong>admin</strong> link next to &#8220;<strong>Howdy</strong>&#8221; text message in upper right corner of your WordPress panel Or type yourblogaddress.com/wp-admin/profile.php in browser address bar.</p>
<p style="text-align: center;"><img class="size-full wp-image-1108 aligncenter" title="wp-password" src="http://www.myokyawhtun.com/wp-content/uploads/2008/09/wp-password.png" alt="" width="500" height="200" /></p>
<p>You can change Color scheme of your admin panel, First name, Last name, Nickname, Display name which is used for author name is blog post, contact information, etc in Profile section. This is a <a title="view all posts filed under WordPress Tutorial" href="http://www.myokyawhtun.com/tag/wordpress-tutorials/">WordPress newbie series</a>. I will keep posting like this tutorial in future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myokyawhtun.com/wordpress/changing-password-in-wordpress.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Search Strategies in Plain English</title>
		<link>http://www.myokyawhtun.com/tutorials/web-search-strategies-in-plain-english.html</link>
		<comments>http://www.myokyawhtun.com/tutorials/web-search-strategies-in-plain-english.html#comments</comments>
		<pubDate>Wed, 24 Sep 2008 13:39:11 +0000</pubDate>
		<dc:creator>Myo Kyaw Htun</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Common Craft]]></category>
		<category><![CDATA[Video Tutorial]]></category>
		<category><![CDATA[Web Search]]></category>

		<guid isPermaLink="false">http://www.myokyawhtun.com/?p=1062</guid>
		<description><![CDATA[Videos from Common Craft show make us easier to understand the complex technology by explaining with screenshots and simple English. Some of the videos such as Rss in Plain English, Blogs in Plain English and Twitter in Plain English are really noticeable. Now they released the new video Web Search Strategies in Plain English that&#8230;]]></description>
			<content:encoded><![CDATA[<p>Videos from <a title="Common Craft Show" href="http://www.commoncraft.com/show">Common Craft show</a> make us easier to understand the complex technology by explaining with screenshots and simple English. Some of the videos such as <a title="Rss in Plain English" href="http://www.commoncraft.com/rss_plain_english">Rss in Plain English</a>, <a title="Blogs in Plain English" href="http://www.commoncraft.com/blogs">Blogs in Plain English</a> and <a title="Twitter in Plain English" href="http://www.commoncraft.com/twitter">Twitter in Plain English</a> are really noticeable. Now they released the new video <a title="Web Search Strategies in Plain English" href="http://www.commoncraft.com/web-search-strategies">Web Search Strategies in Plain English</a> that explains about searching in web. It is worth the watch.</p>
<p style="text-align: center;"><a title="Web Search Strategies in Plain English" href="http://www.commoncraft.com/web-search-strategies"><img class="size-full wp-image-1063 aligncenter" title="web-search-strategies-plain-english" src="http://www.myokyawhtun.com/wp-content/uploads/2008/09/web-search-strategies-plain-english.png" alt="" width="500" height="250" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.myokyawhtun.com/tutorials/web-search-strategies-in-plain-english.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tilt-shift Fake Photography</title>
		<link>http://www.myokyawhtun.com/tutorials/tilt-shift-fake-photography.html</link>
		<comments>http://www.myokyawhtun.com/tutorials/tilt-shift-fake-photography.html#comments</comments>
		<pubDate>Mon, 11 Aug 2008 02:34:33 +0000</pubDate>
		<dc:creator>Myo Kyaw Htun</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[miniature]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[tilt-shift]]></category>

		<guid isPermaLink="false">http://www.myokyawhtun.com/?p=732</guid>
		<description><![CDATA[The method of Tilt-shift is to focus on a single part of the photo and shift (blur) the other area. I am a huge fan of Tilt-shift and have been learning for a while. Tilt-shit lenses are too expensive for me and of course, I don&#8217;t have a professional camera too. But we can get&#8230;]]></description>
			<content:encoded><![CDATA[<p>The method of <a title="Tilt-shift Photography" href="http://en.wikipedia.org/wiki/Tilt-shift_photography">Tilt-shift</a> is to focus on a single part of the photo and shift (blur) the other area. I am a huge fan of Tilt-shift and have been learning for a while. Tilt-shit lenses are too expensive for me and of course, I don&#8217;t have a professional camera too. But we can get the tilt shift photo with the help of Photoshop. There are so many <strong>Tilt-shift tutorials</strong> using Photoshop out there and we can learn and create our own ones. See the Tilt-shift photos below which I did in last week.</p>
<h3>Tilt-shift photos</h3>
<p style="text-align: center;"><img class="size-full wp-image-735 aligncenter" title="Oe Bo Prison Mandalay" src="http://www.myokyawhtun.com/wp-content/uploads/2008/08/oe-bo-prison-mandalay.jpg" alt="Oe Bo Prison Mandalay" width="500" height="280" /></p>
<p style="text-align: center;"><img class="size-full wp-image-737 aligncenter" title="Samitivej Hospital Bangkok" src="http://www.myokyawhtun.com/wp-content/uploads/2008/08/samitivej-hospital-bangkok.jpg" alt="Samitivej Hospital Bangkok" width="500" height="280" /></p>
<p style="text-align: center;"><img class="size-full wp-image-736 aligncenter" title="Platinum Mall Bangkok" src="http://www.myokyawhtun.com/wp-content/uploads/2008/08/platinum-mall-bangkok.jpg" alt="Platinum Mall Bangkok" width="500" height="280" /></p>
<h3>Tilt-shift resources</h3>
<ul>
<li><a title="Tilt-shift Photography" href="http://en.wikipedia.org/wiki/Tilt-shift_photography">Tilt-shift photography</a></li>
<li><a title="Tilt Shift Photoshop Tutorial: How to Make Fake Miniature Scenes" href="http://www.visualphotoguide.com/tilt-shift-photoshop-tutorial-how-to-make-fake-miniature-scenes/">Tilt-shift Photoshop Tutorial: How to Make Fake Miniature Scenes</a></li>
<li><a title="Tilt-Shift Photography Photoshop Tutorial | Miniature Faking | TiltShiftPhotography.net" href="http://www.tiltshiftphotography.net/photoshop-tutorial.php">Tilt-shift Photography Photoshop tutorial: Miniature Faking</a></li>
<li><a title="Tilt-shift miniature fakes" href="http://www.flickr.com/groups/tilt-shift-fakes/">Tilt-shift miniature fake photos group</a> (Flickr)</li>
<li><a title="41 Amazing Tilt-shift miniature faking photographs" href="http://digital-artist-toolbox.com/?p=24">41 Amazing Tilt-shift miniature faking photos</a></li>
<li><a title="Tilt-shift photography comes to advertising" href="http://blog.photoshelter.com/2008/04/tilt-shift-photography-comes-to-advertising.html">Tilt-shift photography comes to advertising</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.myokyawhtun.com/tutorials/tilt-shift-fake-photography.html/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Overview of WordPress Admin panel</title>
		<link>http://www.myokyawhtun.com/wordpress/overview-of-wordpress-admin-panel.html</link>
		<comments>http://www.myokyawhtun.com/wordpress/overview-of-wordpress-admin-panel.html#comments</comments>
		<pubDate>Wed, 23 Jul 2008 02:23:51 +0000</pubDate>
		<dc:creator>Myo Kyaw Htun</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress tutorial]]></category>
		<category><![CDATA[Wordpress tutorials]]></category>

		<guid isPermaLink="false">http://www.myokyawhtun.com/?p=603</guid>
		<description><![CDATA[After successful logged in your wordpress, you&#8217;ll see the wordpress dashboard. WordPress Dashboard includes Write, Manage, Design and Comments panel. Write Write panel where you can write new post, page and link (blogroll). Manage Manage panel where you can manage posts, pages, categories, Tags, Media, Importing posts from wordpress xml file or other blogging system.&#8230;]]></description>
			<content:encoded><![CDATA[<p>After successful logged in your wordpress, you&#8217;ll see the wordpress dashboard. WordPress Dashboard includes Write, Manage, Design and Comments panel.</p>
<p style="text-align: center;"><img class="size-full wp-image-605 aligncenter" title="Wordpress Dashboard" src="http://www.myokyawhtun.com/wp-content/uploads/2008/07/wordpress-dashboard.png" alt="Wordpress Dashboard" width="450" height="258" /></p>
<h3>Write</h3>
<p>Write panel where you can write new post, page and link (blogroll).</p>
<h3>Manage</h3>
<p>Manage panel where you can manage posts, pages, categories, Tags, Media, Importing posts from wordpress xml file or other blogging system.</p>
<h3>Design</h3>
<p>Design panel where you can change or edit your themes uploaded in your server under wp-content/themes folder.</p>
<h3>Comments</h3>
<p>Comments panel where you can handle all the comments such as deleting, editing and marking comments as spam for your posts.</p>
<p>The rest are Setting, Plugins and Users. WordPress dashboard displays all the information like Recent comments, Incoming link, News feed from WordPress Development blog, popular plugins from WordPress plugin directory and other wordpress news.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myokyawhtun.com/wordpress/overview-of-wordpress-admin-panel.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing WordPress on Windows</title>
		<link>http://www.myokyawhtun.com/wordpress/installing-wordpress-on-windows.html</link>
		<comments>http://www.myokyawhtun.com/wordpress/installing-wordpress-on-windows.html#comments</comments>
		<pubDate>Sun, 19 Aug 2007 13:00:21 +0000</pubDate>
		<dc:creator>Myo Kyaw Htun</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[installing wordpress]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[upgrading wordpress]]></category>
		<category><![CDATA[wordpress tutorial]]></category>
		<category><![CDATA[Wordpress tutorials]]></category>

		<guid isPermaLink="false">http://www.myokyawhtun.com/2007/08/19/installing-wordpress-on-windows.html/</guid>
		<description><![CDATA[In my last post, I explained how to install Apache, php and mysql on windows using Appserv. Now I&#8217;ll explain how to install wordpress. Download WordPress First, download the zip from wordpress Download page. http://www.wordpress.org/download/ Then create a folder and named it wordpress or weblog whatever under c:\appserv\www. Unzip the file which you download from&#8230;]]></description>
			<content:encoded><![CDATA[<p>In my <a title="Installing Apache Web Server, php, MySQL and phpMyAdmin on Windows using Appserv Open Project" href="http://www.myokyawhtun.com/2007/08/16/installing-apache-web-server-php-mysql-and-phpmyadmin-on-windows-using-appserv-open-project.html/">last post</a>, I explained how to <a title="Installing Apache Web Server, php, MySQL and phpMyAdmin on Windows using Appserv Open Project" href="http://www.myokyawhtun.com/2007/08/16/installing-apache-web-server-php-mysql-and-phpmyadmin-on-windows-using-appserv-open-project.html/">install Apache, php and mysql on windows using Appserv</a>. Now I&#8217;ll explain how to install wordpress.</p>
<h3>Download WordPress</h3>
<p>First, <a title="Download WordPress" href="http://wordpress.org/download/">download the zip</a> from wordpress <a title="Download WordPress" href="http://wordpress.org/download/">Download page</a>. <a title="Download WordPress" href="http://wordpress.org/download/">http://www.wordpress.org/download/</a></p>
<div style="text-align: center"><img src="http://www.myokyawhtun.com/wp-content/uploads/2007/08/download-wordpress.png" alt="Download WordPress 2.2" /></div>
<p><span id="more-163"></span></p>
<p>Then create a folder and named it <strong>wordpress</strong> or <strong>weblog</strong> whatever under <strong>c:\appserv\www</strong>. Unzip the file which you download from wordpress site, into that folder. WordPress folder contains wp-admin, wp-content, wp-includes and many other php files.</p>
<div style="text-align: center"><img src="http://www.myokyawhtun.com/wp-content/uploads/2007/08/wordress-folder.png" alt="Wordpress Folder" /></div>
<h3>Creating database for wordpress</h3>
<p>Type the address http://localhost/phpmyadmin/ in browser. You&#8217;ll see phpMyAdmin database administration panel.</p>
<div style="text-align: center"><img src="http://www.myokyawhtun.com/wp-content/uploads/2007/08/phpmyadmin.png" alt="phpMyadmin" /></div>
<p>Create a database name &#8220;<strong>wordpress</strong>&#8221; or whatever. This database will be used in WordPress installation.</p>
<div style="text-align: center"><img src="http://www.myokyawhtun.com/wp-content/uploads/2007/08/create-database.png" alt="Create Database" /></div>
<h3>Installing WordPress</h3>
<p>Now it&#8217;s time to install wordpress, type http://localhost/wordpress in your browser.</p>
<div class="note_this">I use wordpress because i created a wordpress folder under c:\appserv\www. You have to use your folder name</div>
<p>You&#8217;ll see wordpress installation page. Click &#8216;<strong>create a wp-config.php file through a web interface</strong>&#8216;.</p>
<div style="text-align: center"><img src="http://www.myokyawhtun.com/wp-content/uploads/2007/08/wordpress-installation-01.png" alt="Wordpress Installation" /></div>
<div class="note_this">You&#8217;ll never see this page after wordpress has been successfully installed.</div>
<p>Click <strong>Let&#8217;s go</strong></p>
<div style="text-align: center"><img src="http://www.myokyawhtun.com/wp-content/uploads/2007/08/wordpress-installation-02.png" alt="Wordpress Installation" /></div>
<p>Click &#8216;<strong>Submit</strong>&#8216;.</p>
<div style="text-align: center"><img src="http://www.myokyawhtun.com/wp-content/uploads/2007/08/wordpress-installation-03.png" alt="Wordpress Installation" /></div>
<div class="note_this">Before you click &#8216;<strong>Submit</strong>&#8216; be sure to check database name which you created in phpMyAdmin see above step &#8216;<strong>Creating Database</strong>&#8216;. Normally, database user name is &#8216;<strong>root</strong>&#8216; and password that you set in <a title="Installing Apache Web Server, php, MySQL and phpMyAdmin on Windows using Appserv Open Project" href="http://www.myokyawhtun.com/2007/08/16/installing-apache-web-server-php-mysql-and-phpmyadmin-on-windows-using-appserv-open-project.html/">Appserv installation</a>. Database host, just leave it if you&#8217;re testing in your machine.</div>
<p>Click &#8216;<strong>run the install</strong>&#8216;</p>
<div style="text-align: center"><img src="http://www.myokyawhtun.com/wp-content/uploads/2007/08/wordpress-installation-04.png" alt="Wordpress Installation" /></div>
<p>Click &#8216;<strong>First Step</strong>&#8216;</p>
<div style="text-align: center"><img src="http://www.myokyawhtun.com/wp-content/uploads/2007/08/wordpress-installation-05.png" alt="Wordpress Installation" /></div>
<p>Click <strong>Continue to Second Step</strong></p>
<div style="text-align: center"><img src="http://www.myokyawhtun.com/wp-content/uploads/2007/08/wordpress-installation-06.png" alt="Wordpress Installation" /></div>
<h3>Installation finished</h3>
<p>This is a final state of wordpress installation. WordPress installation will give you a username and it&#8217; password. Mark it down!!!</p>
<div style="text-align: center"><img src="http://www.myokyawhtun.com/wp-content/uploads/2007/08/wordpress-installation-07.png" alt="Wordpress Installation" /></div>
<div class="note_this">WordPress generate a random password. If you forgot it, you have to delete the wordpress table, need to install. So be careful.</div>
<p>Now, you can login to your very first wordpress blog. Click wp-login.php. Next time, use this address. http://localhost/[wordpress folder]/wp-login.php</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myokyawhtun.com/wordpress/installing-wordpress-on-windows.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Installing Appserv on Windows</title>
		<link>http://www.myokyawhtun.com/tutorials/installing-apache-web-server-php-mysql-and-phpmyadmin-on-windows-using-appserv-open-project.html</link>
		<comments>http://www.myokyawhtun.com/tutorials/installing-apache-web-server-php-mysql-and-phpmyadmin-on-windows-using-appserv-open-project.html#comments</comments>
		<pubDate>Thu, 16 Aug 2007 03:25:08 +0000</pubDate>
		<dc:creator>Myo Kyaw Htun</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[apache web server]]></category>
		<category><![CDATA[Appserv]]></category>
		<category><![CDATA[appserv network]]></category>
		<category><![CDATA[appservnetwork]]></category>
		<category><![CDATA[LAMP]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[web server]]></category>
		<category><![CDATA[wordpress tutorial]]></category>
		<category><![CDATA[Wordpress tutorials]]></category>

		<guid isPermaLink="false">http://www.myokyawhtun.com/2007/08/16/installing-apache-web-server-php-mysql-and-phpmyadmin-on-windows-using-appserv-open-project.html/</guid>
		<description><![CDATA[Installing Apache Web Server, php and MySQL individually on Windows is not easy task. Because it might takes long time time to make so many configurations to work well such as editing in .ini setting, httpd.conf and many services and extensions used by Apache, php and MySql. Appserv Appserv includes Apache, php, MySQL and phpMyAdmin&#8230;]]></description>
			<content:encoded><![CDATA[<p>Installing <a title="Apache Web Server" href="http://www.apache.org">Apache Web Server</a>, <a title="Php : Hypertext Processer" href="http://www.php.net">php</a> and <a title="MySql - The world's most popular open source database" href="http://www.mysql.com">MySQL</a> individually on Windows is not easy task. Because it might takes long time time to make so many configurations to work well such as editing in .ini setting, httpd.conf and many services and extensions used by Apache, php and MySql.</p>
<p><span id="more-146"></span></p>
<h3>Appserv</h3>
<p style="text-align: center"><a title="AppservNetwork" href="http://www.appservnetwork.com"><img src="http://www.myokyawhtun.com/wp-content/uploads/2007/08/appservnetwork.gif" alt="Appserv Open Project" /></a></p>
<p><a title="AppservNetwork" href="http://www.appservnetwork.com">Appserv</a> includes Apache, php, MySQL and <a title="MySql Database Administration Tool" href="http://www.phpmyadmin.net">phpMyAdmin</a> in one package and you can install in a minute without make any configuration.<br />
Let&#8217;s get started.</p>
<ol>
<li>Check the <a title="Appserv Version History" href="http://www.appservnetwork.com/modules.php?name=Content&amp;pa=showpage&amp;pid=1">version history</a> from Appserv.</li>
<li>download <a title="download AppServ Open Project" href="http://sourceforge.net/project/showfiles.php?group_id=37459&amp;package_id=29748">the latest stable released Appserv windows installer version</a> from SourceForget.net.</li>
</ol>
<h3>Installing Appserv</h3>
<p>Run the Appserv setup  (.exe) file which you downloaded.</p>
<p class="note_this">Before you install Appserv package make sure that you stop IIS if you has installed IIS in your machine because only one web server can run in single machine.</p>
<ol>
<li>You&#8217;ll see Welcome Message, click &#8216;Next&#8217;.</li>
<li>You&#8217;ll see License Agreement, click &#8216;Next&#8217;</li>
<li>Choose the installation directory, c:\appserv as default. Click &#8220;Next&#8221;.</li>
<li>Select the applications you wish to install,  all of four services checked as default. Click &#8216;Next&#8217;.</li>
<li>Enter the Apache web server information. Normally, you can put whatever you want. In Web Server Name, you can put &#8220;www.example.com&#8221; or something like this. Administrator&#8217;s Email Address, put your email address or &#8220;me@example.com&#8221;.</li>
<li>Enter  password for Mysql root user, enter a password which is easier to remember when you login to mysql database as root.</li>
<li>You&#8217;ll see installation progress.</li>
<li>Start Apache web server and Mysql service. Click &#8220;Finished&#8221;.</li>
</ol>
<p class="note_this">Remember that I&#8217;m using Appserv 2.5.9 in this post.</p>
<p align="center"><img src="http://www.myokyawhtun.com/wp-content/uploads/2007/10/appserv-01.jpg" alt="Installing Appserv 01" /></p>
<p align="center"><img src="http://www.myokyawhtun.com/wp-content/uploads/2007/10/appserv-02.jpg" alt="Installing Appserv 02" /></p>
<p align="center"><img src="http://www.myokyawhtun.com/wp-content/uploads/2007/10/appserv-03.jpg" alt="Installing Appserv 03" /></p>
<p align="center"><img src="http://www.myokyawhtun.com/wp-content/uploads/2007/10/appserv-04.jpg" alt="Installing Appserv 04" /></p>
<p align="center"><img src="http://www.myokyawhtun.com/wp-content/uploads/2007/10/appserv-05.jpg" alt="Installing Appserv 05" /></p>
<p align="center"><img src="http://www.myokyawhtun.com/wp-content/uploads/2007/10/appserv-06.jpg" alt="Installing Appserv 06" /></p>
<p align="center"><img src="http://www.myokyawhtun.com/wp-content/uploads/2007/10/appserv-07.jpg" alt="Installing Appserv 07" /></p>
<p align="center"><img src="http://www.myokyawhtun.com/wp-content/uploads/2007/10/appserv-08.jpg" alt="Installing Appserv 08" /></p>
<h3>Using another package called XAMPP</h3>
<p>Michael Sync <a title="Very easy way of installing WordPress on your Windows Box" href="http://michaelsync.net/2007/07/09/very-easy-way-of-installing-wordpress-on-your-windows-box/">covered</a> the post about installation Apache server, php, mysql and phpMyAdmin using XAMPP package. He aslo explained how to install wordpress in that post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myokyawhtun.com/tutorials/installing-apache-web-server-php-mysql-and-phpmyadmin-on-windows-using-appserv-open-project.html/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

