<?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>LaGubya &#187; Tutorials</title>
	<atom:link href="http://blogs.vinuth.com/la-gubya/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.vinuth.com/la-gubya</link>
	<description>There&#039;s always a way out.</description>
	<lastBuildDate>Tue, 11 May 2010 08:30:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Email enabling Spring Applications.</title>
		<link>http://blogs.vinuth.com/la-gubya/2008/04/20/email-enabling-spring-applications/</link>
		<comments>http://blogs.vinuth.com/la-gubya/2008/04/20/email-enabling-spring-applications/#comments</comments>
		<pubDate>Sat, 19 Apr 2008 19:22:39 +0000</pubDate>
		<dc:creator>Gubbi</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://blogs.vinuth.com/la-gubya/?p=9</guid>
		<description><![CDATA[

Using gmail smtp server, JavaMail and Spring IOC, we can quickly put together a simple mail sending application, without any SMTP server installation. Check this out for a detailed description of using gmail as smtp server. Thanks to Enrico for blogging smtp spring configuration.
Assuming you have used Spring before, here is a short tutorial:

Add mail.jar [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.springframework.org/"><img class="alignnone size-medium wp-image-11 alignleft" style="float: left;" title="spring_framework_logo" src="http://blogs.vinuth.com/la-gubya/wp-content/uploads/2008/04/spring_framework_logo-300x46.jpg" alt="Spring Framework" width="300" height="46" /></a></p>
<p><a href="http://gmail.com/"><img class="alignnone size-full wp-image-10" title="gmail-logo" src="http://blogs.vinuth.com/la-gubya/wp-content/uploads/2008/04/mailgooglecom-mail-help-images-logo.jpg" alt="Gmail" width="143" height="59" /></a></p>
<p>Using <a href="http://gmail.com/">gmail</a> smtp server, <a href="http://java.sun.com/products/javamail/">JavaMail</a> and <a href="http://www.springframework.org/documentation">Spring IOC</a>, we can quickly put together a simple mail sending application, without any SMTP server installation. <a href="http://lifehacker.com/software/email-apps/how-to-use-gmail-as-your-smtp-server-111166.php">Check this out</a> for a detailed description of using gmail as smtp server. Thanks to Enrico for blogging <a href="http://enricogi.blogspot.com/2008/02/mail-configuration-in-spring-using.html">smtp spring configuration</a>.</p>
<p>Assuming you have used Spring before, here is a short tutorial:</p>
<ol>
<li>Add mail.jar from JavaMail project to build path.</li>
<li>In spring bean configuration file add:
<div class="Code">
<span class="lnr"> 1 </span><span class="Identifier">&lt;</span><span class="Identifier">bean</span><span class="Identifier"> </span><span class="Type">id</span>=<span class="Constant">&#8220;mailSender&#8221;</span><span class="Identifier"> </span><span class="Type">class</span>=<span class="Constant">&#8220;org.springframework.mail.javamail.JavaMailSenderImpl&#8221;</span><span class="Identifier">&gt;</span><br />
<span class="lnr"> 2 </span>    <span class="Identifier">&lt;</span><span class="Identifier">property</span><span class="Identifier"> </span><span class="Type">name</span>=<span class="Constant">&#8220;host&#8221;</span><span class="Identifier"> </span><span class="Type">value</span>=<span class="Constant">&#8220;smtp.gmail.com&#8221;</span><span class="Identifier">/&gt;</span><br />
<span class="lnr"> 3 </span>    <span class="Identifier">&lt;</span><span class="Identifier">property</span><span class="Identifier"> </span><span class="Type">name</span>=<span class="Constant">&#8220;username&#8221;</span><span class="Identifier"> </span><span class="Type">value</span>=<span class="Constant">&#8220;${gmail_username}&#8221;</span><span class="Identifier">/&gt;</span><br />
<span class="lnr"> 4 </span>    <span class="Identifier">&lt;</span><span class="Identifier">property</span><span class="Identifier"> </span><span class="Type">name</span>=<span class="Constant">&#8220;password&#8221;</span><span class="Identifier"> </span><span class="Type">value</span>=<span class="Constant">&#8220;${gmail_password}&#8221;</span><span class="Identifier">/&gt;</span><br />
<span class="lnr"> 5 </span>    <span class="Identifier">&lt;</span><span class="Identifier">property</span><span class="Identifier"> </span><span class="Type">name</span>=<span class="Constant">&#8220;javaMailProperties&#8221;</span><span class="Identifier">&gt;</span><br />
<span class="lnr"> 6 </span>        <span class="Identifier">&lt;</span><span class="Identifier">props</span><span class="Identifier">&gt;</span><br />
<span class="lnr"> 7 </span>            <span class="Identifier">&lt;</span><span class="Identifier">prop</span><span class="Identifier"> </span><span class="Type">key</span>=<span class="Constant">&#8220;mail.smtp.auth&#8221;</span><span class="Identifier">&gt;</span>true<span class="Identifier">&lt;/prop&gt;</span><br />
<span class="lnr"> 8 </span>            <span class="Identifier">&lt;</span><span class="Identifier">prop</span><span class="Identifier"> </span><span class="Type">key</span>=<span class="Constant">&#8220;mail.smtp.starttls.enable&#8221;</span><span class="Identifier">&gt;</span>true<span class="Identifier">&lt;/prop&gt;</span><br />
<span class="lnr"> 9 </span>        <span class="Identifier">&lt;/props&gt;</span><br />
<span class="lnr">10 </span>    <span class="Identifier">&lt;/property&gt;</span><br />
<span class="lnr">11 </span><span class="Identifier">&lt;/bean&gt;</span><br />
<span class="lnr">12 </span><br />
<span class="lnr">13 </span><span class="Comment">&lt;!</span><span class="Comment">&#8211; this is a template message that we can pre-load with default state &#8211;</span><span class="Comment">&gt;</span><br />
<span class="lnr">14 </span><span class="Identifier">&lt;</span><span class="Identifier">bean</span><span class="Identifier"> </span><span class="Type">id</span>=<span class="Constant">&#8220;templateMessage&#8221;</span><span class="Identifier"> </span><span class="Type">class</span>=<span class="Constant">&#8220;org.springframework.mail.SimpleMailMessage&#8221;</span><span class="Identifier">&gt;</span><br />
<span class="lnr">15 </span>    <span class="Comment">&lt;!</span><span class="Comment">&#8211; The from field is overwritten by gmail to your gmail ID. Go to Gmail Account Settings to choose default outgoing mail ID. &#8211;</span><span class="Comment">&gt;</span><br />
<span class="lnr">16 </span>    <span class="Identifier">&lt;</span><span class="Identifier">property</span><span class="Identifier"> </span><span class="Type">name</span>=<span class="Constant">&#8220;from&#8221;</span><span class="Identifier"> </span><span class="Type">value</span>=<span class="Constant">&#8220;notify@abcd-xyz.com&#8221;</span><span class="Identifier">/&gt;</span><br />
<span class="lnr">17 </span>    <span class="Identifier">&lt;</span><span class="Identifier">property</span><span class="Identifier"> </span><span class="Type">name</span>=<span class="Constant">&#8220;subject&#8221;</span><span class="Identifier"> </span><span class="Type">value</span>=<span class="Constant">&#8220;Mail Notification.&#8221;</span><span class="Identifier">/&gt;</span><br />
<span class="lnr">18 </span><span class="Identifier">&lt;/bean&gt;</span><br />
<span class="lnr">19&nbsp;</span>
</div>
</li>
<li>Create a class MailNotifier where you send mails.
<div class="Code">
<span class="lnr">&nbsp;1 </span><span class="PreProc">import</span>&nbsp;org.springframework.mail.MailException;<br />
<span class="lnr">&nbsp;2 </span><span class="PreProc">import</span>&nbsp;org.springframework.mail.MailSender;<br />
<span class="lnr">&nbsp;3 </span><span class="PreProc">import</span>&nbsp;org.springframework.mail.SimpleMailMessage;<br />
<span class="lnr">&nbsp;4 </span><br />
<span class="lnr">&nbsp;5 </span><span class="PreProc">import</span>&nbsp;com.abcd.beans.Member;<br />
<span class="lnr">&nbsp;6 </span><br />
<span class="lnr">&nbsp;7 </span><br />
<span class="lnr">&nbsp;8 </span><span class="Comment">/**</span><br />
<span class="lnr">&nbsp;9 </span><span class="Comment">&nbsp;</span><span class="Comment">* </span><span class="Special">@author</span><span class="Comment">&nbsp;gubbi</span><br />
<span class="lnr">10 </span><span class="Comment">&nbsp;*</span><br />
<span class="lnr">11 </span><span class="Comment">&nbsp;*/</span><br />
<span class="lnr">12 </span><br />
<span class="lnr">13 </span><span class="Type">public</span>&nbsp;<span class="Type">class</span>&nbsp;MailNotifier {<br />
<span class="lnr">14 </span>&nbsp;&nbsp;<span class="Type">private</span>&nbsp;MailSender mMailSender;<br />
<span class="lnr">15 </span>&nbsp;&nbsp;<span class="Type">private</span>&nbsp;SimpleMailMessage mTemplateMessage;<br />
<span class="lnr">16 </span><br />
<span class="lnr">17 </span><br />
<span class="lnr">18 </span>&nbsp;&nbsp;<span class="Type">public</span>&nbsp;<span class="Type">void</span>&nbsp;sendNotification(Member pMember)&nbsp;{<br />
<span class="lnr">19 </span>&nbsp;&nbsp;&nbsp;&nbsp;SimpleMailMessage message = <span class="Statement">new</span>&nbsp;SimpleMailMessage(mTemplateMessage);<br />
<span class="lnr">20 </span><br />
<span class="lnr">21 </span>&nbsp;&nbsp;&nbsp;&nbsp;message.setText(<span class="Constant">&quot;Dear &quot;</span>&nbsp;+ pMember.getFirstName()&nbsp;+ <span class="Constant">&quot;,nSending test notification.&quot;</span>);<br />
<span class="lnr">22 </span>&nbsp;&nbsp;&nbsp;&nbsp;message.setTo(pMember.getEmail());<br />
<span class="lnr">23 </span><br />
<span class="lnr">24 </span>&nbsp;&nbsp;&nbsp;&nbsp;<span class="Statement">try</span>{<br />
<span class="lnr">25 </span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mMailSender.send(message);<br />
<span class="lnr">26 </span>&nbsp;&nbsp;&nbsp;&nbsp;}<br />
<span class="lnr">27 </span>&nbsp;&nbsp;&nbsp;&nbsp;<span class="Statement">catch</span>(MailException ex)&nbsp;{<br />
<span class="lnr">28 </span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ex.printStackTrace();<br />
<span class="lnr">29 </span>&nbsp;&nbsp;&nbsp;&nbsp;}<br />
<span class="lnr">30 </span>&nbsp;&nbsp;}<br />
<span class="lnr">31 </span><br />
<span class="lnr">32 </span><br />
<span class="lnr">33 </span>&nbsp;&nbsp;<span class="Comment">/**</span><br />
<span class="lnr">34 </span><span class="Comment">&nbsp;&nbsp; </span><span class="Comment">* </span><span class="Special">@param</span><span class="Identifier">&nbsp;pMailSender</span><span class="Comment">&nbsp;the mailSender to set</span><br />
<span class="lnr">35 </span><span class="Comment">&nbsp;&nbsp; */</span><br />
<span class="lnr">36 </span>&nbsp;&nbsp;<span class="Type">public</span>&nbsp;<span class="Type">void</span>&nbsp;setMailSender(MailSender pMailSender)&nbsp;{<br />
<span class="lnr">37 </span>&nbsp;&nbsp;&nbsp;&nbsp;mMailSender = pMailSender;<br />
<span class="lnr">38 </span>&nbsp;&nbsp;}<br />
<span class="lnr">39 </span><br />
<span class="lnr">40 </span><br />
<span class="lnr">41 </span>&nbsp;&nbsp;<span class="Comment">/**</span><br />
<span class="lnr">42 </span><span class="Comment">&nbsp;&nbsp; </span><span class="Comment">* </span><span class="Special">@param</span><span class="Identifier">&nbsp;pTemplateMessage</span><span class="Comment">&nbsp;the templateMessage to set</span><br />
<span class="lnr">43 </span><span class="Comment">&nbsp;&nbsp; */</span><br />
<span class="lnr">44 </span>&nbsp;&nbsp;<span class="Type">public</span>&nbsp;<span class="Type">void</span>&nbsp;setTemplateMessage(SimpleMailMessage pTemplateMessage)&nbsp;{<br />
<span class="lnr">45 </span>&nbsp;&nbsp;&nbsp;&nbsp;mTemplateMessage = pTemplateMessage;<br />
<span class="lnr">46 </span>&nbsp;&nbsp;}<br />
<span class="lnr">47 </span>}<br />
<span class="lnr">48&nbsp;</span>
</div>
</li>
<li>Add spring bean configuration for MailNotifier class:
<div class="Code">
<span class="lnr">1 </span><span class="Identifier">&lt;</span><span class="Identifier">bean</span><span class="Identifier">&nbsp;</span><span class="Type">id</span>=<span class="Constant">&quot;mailNotifier&quot;</span><span class="Identifier">&nbsp;</span><span class="Type">class</span>=<span class="Constant">&quot;com.abcd.modules.MailNotifier&quot;</span><span class="Identifier">&gt;</span><br />
<span class="lnr">2 </span>&nbsp;&nbsp;&nbsp;&nbsp;<span class="Identifier">&lt;</span><span class="Identifier">property</span><span class="Identifier">&nbsp;</span><span class="Type">name</span>=<span class="Constant">&quot;mailSender&quot;</span><span class="Identifier">&nbsp;</span><span class="Type">ref</span>=<span class="Constant">&quot;mailSender&quot;</span><span class="Identifier">/&gt;</span><br />
<span class="lnr">3 </span>&nbsp;&nbsp;&nbsp;&nbsp;<span class="Identifier">&lt;</span><span class="Identifier">property</span><span class="Identifier">&nbsp;</span><span class="Type">name</span>=<span class="Constant">&quot;templateMessage&quot;</span><span class="Identifier">&nbsp;</span><span class="Type">ref</span>=<span class="Constant">&quot;templateMessage&quot;</span><span class="Identifier">/&gt;</span><br />
<span class="lnr">4 </span><span class="Identifier">&lt;/bean&gt;</span><br />
<span class="lnr">5&nbsp;</span>
</div>
</li>
<li>This is it  <img src='http://blogs.vinuth.com/la-gubya/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </li>
</ol>
<p>Check out Spring Reference for details about sending mails with attachments and using html templates for mail content. Let me know other methods of doing the same.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.vinuth.com/la-gubya/2008/04/20/email-enabling-spring-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Styles for Movable Type 4</title>
		<link>http://blogs.vinuth.com/la-gubya/2008/04/03/styles-for-movable-type-4/</link>
		<comments>http://blogs.vinuth.com/la-gubya/2008/04/03/styles-for-movable-type-4/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 21:36:47 +0000</pubDate>
		<dc:creator>Gubbi</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[2813]]></category>
		<category><![CDATA[cutline]]></category>
		<category><![CDATA[Demo]]></category>
		<category><![CDATA[hemingway]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[movable type 4]]></category>
		<category><![CDATA[mt4]]></category>
		<category><![CDATA[style archive]]></category>
		<category><![CDATA[styles]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://blogs.vinuth.com/la-gubya/?p=6</guid>
		<description><![CDATA[Very few themes/styles are available for Movable Type 4 as of now. The nice themes over at  The Style Archive do not yet work for MT4. However 3 of those themes have been ported and I&#8217;m using the Hemingway theme for my blog over at Gaa Gaa Gubbi. 
Installing these themes is very easy. This [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: andale mono,times; font-size: medium;">Very few themes/styles are available for Movable Type 4 as of now. The nice themes over at  <a title="The Style Archive" href="http://www.thestylearchive.com/" target="_blank">The Style Archive</a> do not yet work for MT4. However 3 of those themes have been ported and I&#8217;m using the <a title="Hemingway on majordojo." href="http://www.majordojo.com/2008/03/hemingway-for-movable-type-4.php">Hemingway theme</a> for my blog over at <a title="Gaa Gaa Gubbi Blog" href="http://www.gubbi.exofire.net/gaa_gaa_gubbi/">Gaa Gaa Gubbi</a>. </span></p>
<p><span style="font-family: andale mono,times; font-size: medium;">Installing these themes is very easy. This is one of the things I liked in MT4 over WP2.5, although number of themes available for WP far outnumber MT4. No downloads required. Just point to a url, select preferred layout and you are done.</span></p>
<p style="text-align: center;"><a href="http://www.majordojo.com/projects/cutline/"><img style="border: 2px solid black; margin: 10px; vertical-align: middle;" title="Cutline" longdesc="http://www.majordojo.com/2008/03/finally-cutline-for-movable-type-4.php" src="http://www.majordojo.com/2008/03/21/Picture%201.png" alt="Cutline for MT4" width="400" height="364" /></a></p>
<p style="text-align: center;">
<p><span style="font-family: andale mono,times; font-size: medium;">Steps for installing new themes on MT4:</span></p>
<ol>
<li><span style="font-family: andale mono,times; font-size: medium;">Open Design &#8212;&gt; Styles.</span></li>
<li><span style="font-family: andale mono,times; font-size: medium;">Click <img title="+" src="http://www.gubbi.exofire.net/mt-static/images/status_icons/create.gif" alt="+" width="9" height="9" /> beside the Categories heading.</span></li>
<li><span style="font-family: andale mono,times; font-size: medium;">Enter the url of the site using the theme required.<br />
</span></p>
<ul>
<li><span style="font-family: andale mono,times; font-size: medium;"><a title="Hemingway Theme" href="http://www.majordojo.com/projects/hemingway/">Hemingway theme url.</a></span></li>
<li><span style="font-family: andale mono,times; font-size: medium;"><a title="Cutline Theme" href="http://www.majordojo.com/projects/cutline/">Cutline theme url.</a></span></li>
<li><span style="font-family: andale mono,times; font-size: medium;"><a title="2813 Theme" href="http://www.majordojo.com/projects/2813/">2813 theme url.</a></span></li>
</ul>
</li>
<li><span style="font-family: andale mono,times; font-size: medium;">Select the preferred layout: &#8220;2 columns Wide, Thin&#8221;, &#8220;2 columns Thin, Wide&#8221;, etc.,</span></li>
<li><span style="font-family: andale mono,times; font-size: medium;">Done !!</span></li>
</ol>
<p><span style="font-family: andale mono,times; font-size: medium;">You can also see Live Demo of the themes by clicking on the theme links above.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.vinuth.com/la-gubya/2008/04/03/styles-for-movable-type-4/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Movable Type Open Source Hosting.</title>
		<link>http://blogs.vinuth.com/la-gubya/2008/04/02/movable-type-open-source-hosting-2/</link>
		<comments>http://blogs.vinuth.com/la-gubya/2008/04/02/movable-type-open-source-hosting-2/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 20:45:02 +0000</pubDate>
		<dc:creator>Gubbi</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[mtos]]></category>

		<guid isPermaLink="false">http://blogs.vinuth.com/la-gubya/2008/04/movable-type-open-source-hosting-2/</guid>
		<description><![CDATA[

I searched a lot for a free hosting service where I can test run a movable type 4 open source blog. You can access the installed blog here.
The problem I faced was file size limitation in most free web hosts, which is usually 300KB. After a lot of looking around I found this very good [...]]]></description>
			<content:encoded><![CDATA[<p><img style="width: 190px; height: 118px;" src="http://farm2.static.flickr.com/1261/532053320_67f1d64be8.jpg" mce_src="http://farm2.static.flickr.com/1261/532053320_67f1d64be8.jpg" alt="MT4" class="alignleft" /></p>
</p>
<p style="font-family: Verdana;"><font size="3">I searched a lot for a free hosting service where I can test run a movable type 4 open source blog. You can access the installed <a title="Gaa Gaa Gubbi" href="http://www.gubbi.exofire.net/gaa_gaa_gubbi/" mce_href="http://www.gubbi.exofire.net/gaa_gaa_gubbi/" target="_blank">blog here</a>.</font></p>
<p style="font-family: Verdana;"><font size="3">The problem I faced was file size limitation in most free web hosts, which is usually 300KB. After a lot of looking around I found this very good web host which provides free plan with lots of advanced features at <a title="X10 Hosting" href="http://x10hosting.com/" mce_href="http://x10hosting.com/" target="_blank">x10hosting</a>. This host has much higher file size limits, provides cPanel and Fantastico, CGI, PHP, 3 MySQL, 3 domains, 3 sub domains, and lots more.</p>
<p></font></p>
<p style="font-family: Verdana;"><font size="3">Below are the steps I followed for installing the above blog. (Usual disclaimers apply. I do not guarantee that the below steps will apply for everyone. They are just what worked for me. Please keep a backup of all files somewhere. Read through the entire how-to before deciding to proceed with it or not.)</p>
<p></font></p>
<ol style="font-family: Verdana;">
<li><font size="3">Download <a title="MTOS 4.11 download" href="http://www.movabletype.org/opensource/downloads/nightlies/MTOS-4.11-en-release-30-r1379-20080219.zip" mce_href="http://www.movabletype.org/opensource/downloads/nightlies/MTOS-4.11-en-release-30-r1379-20080219.zip" target="_self">MT4.11 nightly build</a> and extract it.</p>
<p></font></li>
<li><font size="3">Create a MySQL DB on x10hosting and associate an user name with it.
<p></font></li>
<li><font size="3">In the extracted folder, rename <span style="font-style: italic;">mt-config.cgi-original</span> to <span style="font-style: italic;">mt-config.cgi</span>.
<p></font></li>
<li><font size="3">Open <span style="font-style: italic;">mt-config.cgi</span> file in an editor and change the following lines:
<p></font></li>
<ul>
<li><font size="3"><code>CGIPath&nbsp;&nbsp;&nbsp; &lt;URL&gt;</code></p>
<p>Where &lt;URL&gt; is the url from where the movable type directory will be accessible. If you follow step 6-7 as mentioned, this url will be <span style="font-style: italic;">http://&lt;domain_name&gt;/cgi-bin/mt/</span>. Also note the &#8216;/&#8217; at the end. See step 6 to understand this better.</p>
<p></font></li>
<li><font size="3"><code>StaticWebPath&nbsp;&nbsp;&nbsp; &lt;URL&gt; </code>
<p>Where &lt;URL&gt; is the url from where the mt-static directory is accessible. Based on step 8, this url will be <span style="font-style: italic;">http://&lt;domain_name&gt;/mt-static</span>. See step 8 for more details.</p>
<p></font></li>
<li><font size="3">Under MySQL section add the DB settings (database, user, password) appropriately based DB created in step 2. Delete all other DB sections.
<p></font></li>
</ul>
<li><font size="3">Open all .cgi files (except <span style="font-style: italic;">mt-config.cgi</span>) one by one in an editor and just after this line<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp; <code>use strict;</p>
<p></code>Add</p>
<p>&nbsp;&nbsp; <code>BEGIN { $ENV{'MT_HOME'} = '/home/&lt;userID&gt;/public_html/cgi-bin/mt/'; }</code></p>
<p>Where &lt;userID&gt; is the username taken at the hosting provider.</p>
<p></font></li>
<li><font size="3">X10hosting provides a home directory inside which there are these 2 directories: <span style="font-style: italic;">/public_html/cgi-bin</span> and <span style="font-style: italic;">/www</span>. Create<br />
a directory called <span style="font-style: italic;">mt </span>under <span style="font-style: italic;">/public_html/cgi-bin</span>.</p>
<p></font></li>
<li><font size="3">Copy all the contents inside the extracted directory&nbsp; on your PC to <span style="font-style: italic;">/public_html/cgi-bin/mt</span>. Now, <span style="font-style: italic;">mt</span> directory will be accessible using <span style="font-style: italic;">http://&lt;domain_name&gt;/cgi-bin/mt/</span>.
<p></font></li>
<li><font size="3">Copy just the <span style="font-style: italic;">mt-static </span>directory under <span style="font-style: italic;">/www</span> directory. This <span style="font-style: italic;">mt-static</span> directory will be accessible using <span style="font-style: italic;">http://&lt;domain_name&gt;/mt-static</span> url.
<p></font></li>
<li><font size="3">Change the permission of all .cgi files in <span style="font-style: italic;">/public_html/cgi-bin/mt/</span> to 755.
<p></font></li>
<li><font size="3">Open the url <span style="font-style: italic;">http://&lt;domain_name&gt;/cgi-bin/mt/mt.cgi</span> in browser. This should begin the Movable type blog installation.
<p></font></li>
</ol>
<p><font size="3"><span style="font-family: Verdana;">After this, its all easy and simple to setup the blog. Let me know how it goes <img src='http://blogs.vinuth.com/la-gubya/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </span><br style="font-family: Verdana;" /></font>
<div class="flockcredit" style="text-align: right; color: #CCC; font-size: x-small;">Blogged with the <a href="http://www.flock.com/blogged-with-flock" style="color: #999; font-weight: bold;" target="_new" title="Flock Browser">Flock Browser</a></div>
<p><!-- technorati tags begin -->
<p style="font-size:10px;text-align:right;">Tags: <a href="http://technorati.com/tag/movabletype4" rel="tag">movabletype4</a>, <a href="http://technorati.com/tag/mtos" rel="tag">mtos</a>, <a href="http://technorati.com/tag/movabletype%20open%20source" rel="tag">movabletype open source</a>, <a href="http://technorati.com/tag/free%20hosting" rel="tag">free hosting</a>, <a href="http://technorati.com/tag/hosting" rel="tag">hosting</a>, <a href="http://technorati.com/tag/x10hosting" rel="tag">x10hosting</a>, <a href="http://technorati.com/tag/installation" rel="tag">installation</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.vinuth.com/la-gubya/2008/04/02/movable-type-open-source-hosting-2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
