<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.1.2" -->
<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/"
	>

<channel>
	<title>MyCorollary</title>
	<link>http://mycorollary.com/blog</link>
	<description>Undefined, non provable</description>
	<pubDate>Mon, 25 Dec 2006 15:12:06 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.2</generator>
	<language>en</language>
			<item>
		<title>Image maps in background images?</title>
		<link>http://mycorollary.com/blog/image-maps-in-background-images.htm</link>
		<comments>http://mycorollary.com/blog/image-maps-in-background-images.htm#comments</comments>
		<pubDate>Sun, 24 Dec 2006 20:10:36 +0000</pubDate>
		<dc:creator>Pankaj</dc:creator>
		
	<dc:subject>Everything else</dc:subject><dc:subject>Background Image</dc:subject><dc:subject>CSS</dc:subject><dc:subject>HTML</dc:subject><dc:subject>Image Map</dc:subject><dc:subject>WordPress</dc:subject>
		<guid isPermaLink="false">http://mycorollary.com/blog/image-maps-in-background-images.htm</guid>
		<description><![CDATA[In Ask Pankaj &#038; Arnab where in me and my friend Arnab, try to posts the answers of the questions asked to us from various people, I was required to put up a new header image with two hyperlinks (Joining the Mailing List and Contact Us). This can be easily achieved using the &#8216;MAP&#8217; html [...]]]></description>
			<content:encoded><![CDATA[<p>In <a title="Ask Pankaj &#038; Arnab" href="http://askpankajandarnab.com" target="_blank">Ask Pankaj &#038; Arnab</a> where in me and my friend Arnab, try to posts the answers of the questions asked to us from various people, I was required to put up a new header image with two hyperlinks (Joining the Mailing List and Contact Us). This can be easily achieved using the<strong> &#8216;MAP&#8217;</strong> html tag which defines a client side image map (an image with clickable regions) and to define a region within an image map, <strong>&#8216;AREA&#8217; </strong>html tag is used. Lets say we have an image called linksimage.jpg in the images directory, I will write my image-map as below &#8230;<br />
<code>
<pre>
&lt;map id =&quot;imagelinks&quot; name=&quot;imagelinks&quot;&gt;
    &lt;area shape =&quot;rect&quot; coords =&quot;15,5,85,70&quot;
         href =&quot;http://igoldindia.com&quot; target =&quot;_blank&quot;
         alt=&quot;Join Mailing List&quot; /&gt;
    &lt;area shape =&quot;rect&quot; coords =&quot;90,5,160,70&quot;
      href =&quot;http://www.askpankajandarnab.com/contact-us/&quot;
      target =&quot;_blank&quot; alt=&quot;Ask Us&quot;/&gt;
&lt;/map&gt;</code></pre>
<p>where in <strong>&#8216;imagelinks&#8217;</strong> is the id of of my map. There are two region defined for the <strong>&#8216;imagelinks&#8217;</strong> image map.  The description of various attributes are as below &#8230;</p>
<p><strong><em>shape</em></strong> - defines the shape of the region and possible values are rect/rectangle, circ/circle, poly/polygon<br />
<strong><em>coords - </em></strong>for shape rect, it is left,top,bottom,right. for shape circ, it is centerx,centery,radius and for poly it is X1,Y1,X2,Y2, &#8230; XN, YN.<br />
<strong><em>href</em></strong> - URL of course<br />
<strong><em>target</em></strong> - _blank (New window), _parent (parent window), _self (same window), _top (full body of the window) <br />
<strong><em>alt - </em></strong>alternate text of the url</p>
<p>After the image map is defined, we just need to include an attribute of &#8217;IMG&#8217; tag called <strong>&#8216;usemap&#8217; </strong>with the value as the id of our image map as it is done below &#8230;<br />
<code>
<pre>
&lt;img src =&quot;images/imagelinks.jpg&quot; border=&quot;0&quot; alt=&quot;An Image&quot; usemap =&quot;#imagelinks&quot; /&gt;</code></pre>
<p>Simple enough, yeah that is what I had in mind but after looking at the CSS Code and header.php of my WordPress Theme (Default Theme) quickly I realized that there is no direct way of using the image maps if the image is declared in the CSS file to be used as background image in a &#8216;DIV&#8217; and that was exactly the case here. This is how header is defined in style.css of default WordPress theme</p>
<pre>
     #header {
         background: #73a0c5 url('images/kubrickheader.jpg')
         no-repeat bottom center;
     }

     #headerimg {
         margin: 7px 9px 0;
         height: 192px;
         width: 740px;
     }
</pre>
<p>To rescue, I used our familer tag called anchor (&lt;a&gt;) tag to which I could assign a dimension and a position and float it over the background image. But there is another twist to it since &lt;a&gt; is an <a href="http://www.w3.org/TR/html401/struct/global.html#h-7.5.3">inline tag </a> and we can&#8217;t really give dimensions to it but it can be converted in block by either using display: block on the link or float: left on the link. So I added following in my CSS file &#8230;</p>
<pre>
    #mailinglist {
        float: left;
        width : 70px;
        height: 70px;
        margin-left: 270px;
        margin-top: 76px;
    }

    #contactus {
        float: left;
        width : 70px;
        height: 70px;
        margin-left: 5px;
        margin-top: 76px;
    }
</pre>
<p>After this, I placed following two links inside header.php within the &#8216;headerimg&#8217; div</p>
<pre>
&lt;div id=&quot;header&quot;&gt;
  &lt;div id=&quot;headerimg&quot;&gt;
    &lt;a id=&quot;mailinglist&quot; href=&quot;http://igoldindia.com&quot; target=&quot;_blank&quot;
           alt=&quot;Join Mailing List&quot;&gt;&lt;/a&gt;
    &lt;a id=&quot;contactus&quot; href=&quot;http://askpankajandarnab.com/contact-us/&quot;
           alt=&quot;Ask Us&quot;&gt;&lt;/a&gt;
    &lt;h1&gt;
       &lt;a href=&quot;&lt;?php echo get_settings('home'); ?&gt;/&quot;&gt;
                &lt;?php bloginfo('name'); ?&gt;&lt;/a&gt;
    &lt;/h1&gt;
    &lt;div class=&quot;description&quot;&gt;
         &lt;?php bloginfo('description'); ?&gt;
    &lt;/div&gt;
&lt;/div&gt;
</pre>
<p>You can see it working <a href="http://askpankajandarnab.com/" target="_blank">here</a>. For more reading, one can read a neat article at <a href="http://www.alistapart.com/articles/imagemap/" target="_blank">Night of the Image Map</a>.</p>
Post Tags:<a href="http://mycorollary.com/blog/tag/background-image" rel="tag">Background Image</a>  <a href="http://mycorollary.com/blog/tag/css" rel="tag">CSS</a>  <a href="http://mycorollary.com/blog/tag/html" rel="tag">HTML</a>  <a href="http://mycorollary.com/blog/tag/image-map" rel="tag">Image Map</a>  <a href="http://mycorollary.com/blog/tag/wordpress" rel="tag">WordPress</a><a href="http://mycorollary.com/blog/tag/background-image" rel="tag">Background Image</a>, <a href="http://mycorollary.com/blog/tag/css" rel="tag">CSS</a>, <a href="http://mycorollary.com/blog/tag/html" rel="tag">HTML</a>, <a href="http://mycorollary.com/blog/tag/image-map" rel="tag">Image Map</a>, <a href="http://mycorollary.com/blog/tag/wordpress" rel="tag">WordPress</a>]]></content:encoded>
			<wfw:commentRss>http://mycorollary.com/blog/image-maps-in-background-images.htm/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Creating Stationary for MS Outlook, Outlook Express</title>
		<link>http://mycorollary.com/blog/creating-stationary-for-ms-outlook-outlook-express.htm</link>
		<comments>http://mycorollary.com/blog/creating-stationary-for-ms-outlook-outlook-express.htm#comments</comments>
		<pubDate>Fri, 01 Dec 2006 21:40:59 +0000</pubDate>
		<dc:creator>Pankaj</dc:creator>
		
	<dc:subject>Everything else</dc:subject>
		<guid isPermaLink="false">http://mycorollary.com/blog/creating-stationary-for-ms-outlook-outlook-express.htm</guid>
		<description><![CDATA[My friend who is setting up a school called VIBGYOR HIGH here in Bangalore, India, needed to send invitation emails to parents. He asked me to help him in doing so. He showed me the contents in the word document which had a logo, formatted text (bold, italic, numbering etc). He didn&#8217;t want to send [...]]]></description>
			<content:encoded><![CDATA[<p>My friend who is setting up a school called <a title="VIBGYOR HIGH" href="http://www.vibgyorhigh.com/" target="_blank">VIBGYOR HIGH</a> here in Bangalore, India, needed to send invitation emails to parents. He asked me to help him in doing so. He showed me the contents in the word document which had a logo, formatted text (bold, italic, numbering etc). He didn&#8217;t want to send the word document as an attachment to the email instead he wanted the contents to be displayed as the email itself.</p>
<p>Probably the simplest way to do this is to create an html page, copy the contents and paste from the html page into the email and send the email. Creating an html page from a word document is also an easy task, just save as web page. MS Word gives you three options as<br />
- Single File Web Page (*.mht, *.mhtml)<br />
- Web Page (*.htm, *.html)<br />
- Web Page, Filtered (*.htm, *.html)</p>
<p>Choose the default and save the word document as web page. Copy the contents from the new html page, paste it in the email, write the recipients and send it.</p>
<p>Anyway, just for curiosity, I thought of making the word document&#8217;s content as a stationary so that it can be further utilized if required. Here is what I did to achieve this &#8230;</p>
<p>1. Saved the word document as web page. I chose the third option which is the &#8216;Web Page, Filtered&#8217; since in the first two, MS words adds lot of tags which I didn&#8217;t need. I wanted to keep it a simple HTML page with only HTML tags. Changes are much easier this way. This could be just my comfort level so suite yourself. Idea is to get a HTML page which works fine.</p>
<p>2. Copied the html page along with all the images required by the page to the folder &#8216;C:\Program Files\Common Files\Microsoft Shared\Stationery&#8217;. This is the default location where all the stationary documents are stored. Double check the html page by opening it in the browser and see if everything is okay like all images are displayed properly. If not, adjust accordingly.</p>
<p>Now to use it in the Outlook express<br />
- Open Outlook express.<br />
- Click on the down arrow beside the &#8216;Create Mail&#8217; button and &#8217;select stationary&#8217; option. You should see it listed in the list with the name of your web page&#8217;s title.<br />
- Select it and enjoy.</p>
<p>To use in MS Outlook &#8230;<br />
- Click on the new email.<br />
- Click on the down arrow of the options button and click on stationary.<br />
- Go to Personal Stationary tab and then click on theme button. You should see it listed in the list with the name of your web page&#8217;s title.<br />
- That is it.</p>
<p>You can create more generic email templates / stationary for different types of people you communicate to and have fun.</p>
Post Tags:No Tags]]></content:encoded>
			<wfw:commentRss>http://mycorollary.com/blog/creating-stationary-for-ms-outlook-outlook-express.htm/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bought my first laptop</title>
		<link>http://mycorollary.com/blog/bought-my-first-laptop.htm</link>
		<comments>http://mycorollary.com/blog/bought-my-first-laptop.htm#comments</comments>
		<pubDate>Wed, 29 Nov 2006 20:58:53 +0000</pubDate>
		<dc:creator>Pankaj</dc:creator>
		
	<dc:subject>Everything else</dc:subject>
		<guid isPermaLink="false">http://mycorollary.com/blog/bought-my-first-laptop.htm</guid>
		<description><![CDATA[Finally I have one of my own. Bought it yesterday (29th November, 2006). It took me one full day in transferring the data on to  the new one which is Lenovo 3000 N100 series. Costed me a fortune (Why things have to so expensive in India?) and after this I am kind of broke but I had to buy one anyway [...]]]></description>
			<content:encoded><![CDATA[<p>Finally I have one of my own. Bought it yesterday (29th November, 2006). It took me one full day in transferring the data on to  the new one which is Lenovo 3000 N100 series. Costed me a fortune (Why things have to so expensive in India?) and after this I am kind of broke but I had to buy one anyway since the one I was using till now (Dell XPS M140) was borrowed from my friend and he needs it now.  Anyway I needed it and I bought it, deal closed <img src='http://mycorollary.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Hopefully I will be productive from tomorrow <img src='http://mycorollary.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
Post Tags:No Tags]]></content:encoded>
			<wfw:commentRss>http://mycorollary.com/blog/bought-my-first-laptop.htm/feed/</wfw:commentRss>
		</item>
		<item>
		<title>All about Feeds, RSS, Atom, Feed Readers</title>
		<link>http://mycorollary.com/blog/all-about-feeds-rss-atom-feed-readers.htm</link>
		<comments>http://mycorollary.com/blog/all-about-feeds-rss-atom-feed-readers.htm#comments</comments>
		<pubDate>Mon, 27 Nov 2006 18:07:08 +0000</pubDate>
		<dc:creator>Pankaj</dc:creator>
		
	<dc:subject>Everything else</dc:subject>
		<guid isPermaLink="false">http://mycorollary.com/blog/all-about-feeds-rss-atom-feed-readers.htm</guid>
		<description><![CDATA[This is one question I have been asked many times in the past from various people I know.
Lets understand the problem first. I as Internet user, read lot of information published or updated on various websites and weblogs (commonly known as blogs). As a simple example, a news site like CNN publish news everyday and [...]]]></description>
			<content:encoded><![CDATA[<p>This is one question I have been asked many times in the past from various people I know.</p>
<p>Lets understand the problem first. I as Internet user, read lot of information published or updated on various websites and weblogs (commonly known as blogs). As a simple example, a news site like CNN publish news everyday and there are so many blogs I am interested in reading which are updated regularly. Now if I have to read the fresh content on a daily basis i would need to personally visit each site/blog (say around 15/20) and check if there is fresh content in these forums and then read them, whew! it would become a virtually impossible task for me . This is where feeds comes in handy and solves my problem.</p>
<p>So what are feeds anyway? Web Feed, more commonly known as feed, is the data format used for serving the regularly updated contents such as news, forums, blogs to Internet users like me (us). These provider or distributor of these types of contents syndicated a web feed which users can subscribe to. Sounds complicated? OK, I will try to put it in suppsedly in a more simple manner :). There are websites who wants to publish / distribute their contents (news sites, forums, blogs). In order to do so, these websites syndicate a web feed that produce contents in a standard data format. Now People who wants to read or receive these contents, subscribe to these web feed. Much simpler.</p>
<p>How do the users receive the actual contents from a web feed anyway? There are software programs called feed readers or aggregator which does this job for you. Using these programs, you can subscribe to a web feed (by entering the URL) provided by the content distributor. These programs checks for the new contents when you get connected on these website and downloads for you if anything new is available. This is easy since you can subscribe to as many feeds as you want, get connected and download all the fresh/updated content. This way you can read all the updated content from one program (your feed reader) and you save your time by not visiting to individual website / blogs. Problem solved. <img src='http://mycorollary.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The feed readers are available as a client application (a program installed on your PC/Laptop) for various platforms (Windows, Linux, Mac, Pocket PC, Mobile Phones) or Web based services built in portals like Google, Yahoo. For a more a less complete list, please refer to <a href="http://allrss.com/rssreaders.html">RSS Compendium - RSS Readers</a></p>
<p>What happened to RSS and Atom? Well, RSS and Atom are two standard data format for providing web feeds to its users. The acronym RSS is a term for a format that means different depending the various available versions as mentioned below &#8230;<br />
- Really Simple Syndication (RSS 2.0)<br />
- Rich Site Summary (RSS 0.91, RSS 1.0)<br />
- RDF Site Summary (RSS 0.9 and 1.0) (RDF - Resource description Framework)</p>
<p>As far as Atom is concerned, it is product of dissatisfaction in existing RSS data format. Atom is an attempt to solve many incompatibilities and widely adopted versions of RSS and to ease the difficulties of developers developing web application with web syndication feeds.</p>
<p>Anyway, most of the content distributors provide feeds in both the format but some of them in only one.</p>
<p><strong>Resources</strong><br />
- To know the history of feed formats, refer to <a href="http://en.wikipedia.org/wiki/RSS_(file_format)">RSS (file format)</a><br />
- For a detail comparison between RSS and Atom, refer to <a href="http://en.wikipedia.org/wiki/Atom_(standard)">Atom (standard)</a>.</p>
Post Tags:No Tags]]></content:encoded>
			<wfw:commentRss>http://mycorollary.com/blog/all-about-feeds-rss-atom-feed-readers.htm/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Page for Quotes</title>
		<link>http://mycorollary.com/blog/page-for-quotes.htm</link>
		<comments>http://mycorollary.com/blog/page-for-quotes.htm#comments</comments>
		<pubDate>Sat, 18 Nov 2006 14:18:37 +0000</pubDate>
		<dc:creator>Pankaj</dc:creator>
		
	<dc:subject>Everything else</dc:subject>
		<guid isPermaLink="false">http://mycorollary.com/blog/page-for-quotes.htm</guid>
		<description><![CDATA[I love reading quotes but as of now all of them are in my emails, bookmarks, notepads etc but now since I have a place to share, I think I will slowly dig them from various places and put it here on my blog.
For this purpose, I wanted to create a page where in all [...]]]></description>
			<content:encoded><![CDATA[<p>I love reading quotes but as of now all of them are in my emails, bookmarks, notepads etc but now since I have a place to share, I think I will slowly dig them from various places and put it here on my blog.</p>
<p>For this purpose, I wanted to create a page where in all the quotes should be displayed and a random quote selected from a set of available quotes on the home page (or a place I choose). There is good collection of all types of plugins at <a target="_blank">WordPress Plugin Database</a>. One can directly reach to plugins related to Quotes (Classified as Features -> Randomness by Plugin) by <a title="Quotes Plugin" href="http://wp-plugins.net/plugin/wp-quotes/" target="_blank">clicking here</a>. There is also an another source where available plugins for WordPress are hosted. <a title="WordPress Plugin Category" href="http://codex.wordpress.org/Category:Plugins" target="_blank">Click Here to visit the page</a></p>
<p>I read about quite a few quotes plugin here and I am listing down few of them which I found interesting &#8230;<br />
- <a title="Random Quote Plugin" href="http://www.zombierobot.com/wp-quotes" target="_blank">Random Quote Plugin</a><br />
- <a title="DonkieQuote" href="http://dev.wp-plugins.org/wiki/DonkieQuote" target="_blank">DonkieQuote</a><br />
- <a title="Yet Another Random Quote" href="http://openmonday.org/2006/07/31/yet-another-random-quote/" target="_blank">Yet Another Random Quote</a><br />
- <a title="Yakuter Random Quote Plugin" href="http://www.yakuter.com/yakuter-random-quotes-plugin/" target="_blank">Yakuter Random Quote Plugin</a></p>
<p>All the above mentioned plugins maintain a database where quotes are stored and selected for random display. There is another set of quotes plugin which pulls the quote from another site. Couple of them mentioned below &#8230;<br />
- <a title="Quotation Plugin" href="http://www.hopkins81.com/archives/2005/08/18/quotation-plugin/">Quotation Plugin</a><br />
- <a title="The Quotations" href="http://plankplunk.net/linux/quotation.php" target="_blank">The Quotations</a></p>
<p>For myself, I have selected the <a title="Random Quote Plugin" href="http://www.zombierobot.com/wp-quotes" target="_blank">Random Quote Plugin</a> since using this plugin I could create a WordPress page and put the <em><! -- wp_ quotes_page --></em> in order to display all the quotes in one page along with the feature of displaying the random quotes of course.</p>
<p>I am already using this plugin and you can see the page I created for displaying all the quotes available in <a title="My Quotes" href="http://mycorollary.com/blog/quotes/" target="_blank"><font color="#800080">Quotes</font></a> page. Not much of collection though at this point of time but page has been created :-D. All these plugins looks great and will meet the basic requirement of displaying a random quote but I guess I have to create another quotes plugin for myself since I would like to organize the quotes in various quotes categories which these plugins don&#8217;t. I am not sure whether this is a reasonable requirement of mine but I would like to do it anyway. At least for this reason, I will learn how to write plugins for WordPress. <img src='http://mycorollary.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
Post Tags:No Tags]]></content:encoded>
			<wfw:commentRss>http://mycorollary.com/blog/page-for-quotes.htm/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My Experiences with WordPress II</title>
		<link>http://mycorollary.com/blog/my-experiences-with-wordpress-ii.htm</link>
		<comments>http://mycorollary.com/blog/my-experiences-with-wordpress-ii.htm#comments</comments>
		<pubDate>Sat, 18 Nov 2006 07:54:06 +0000</pubDate>
		<dc:creator>Pankaj</dc:creator>
		
	<dc:subject>Everything else</dc:subject>
		<guid isPermaLink="false">http://mycorollary.com/blog/my-experiences-with-wordpress-ii.htm</guid>
		<description><![CDATA[Alright, Back again to finish writing about my experiences with WordPress. I have already talked about installation, customization, RSS feeds and Search Engine Friendly URLs. So far so good and in no time, we will know what was it like with AdSense and Tagging.
I am sure everyone know about Google AdSense but I will mention [...]]]></description>
			<content:encoded><![CDATA[<p>Alright, Back again to finish writing about my experiences with WordPress. I have already talked about installation, customization, RSS feeds and Search Engine Friendly URLs. So far so good and in no time, we will know what was it like with AdSense and Tagging.</p>
<p>I am sure everyone know about Google AdSense but I will mention about it here anyway. Google Adsense, is a way to easily earn money by displaying Google Advertisements on your websites/blogs. Someone interested, needs to contact google to get an account and if the request is approved, you will get the HTML code which needs to be inserted into your web pages and Google will take care of displaying the relevant ads according to the contents on the website. Sounds simple, yes it is. So if have good contents and you can attract visitors to your website, you can count on Google to make decent amount of money for you.</p>
<p>I had the HTML code with me (Friend gave it to me) and I knew that if I just insert this piece of code in the relevant template files, I would be through with this task as well but I thought to look for a better solution so I googled, something everyone is good at, and what I found was truely amazing. There it was, a plugin called <a title="AdSense-Deluxe WordPress Plugin" href="http://www.acmetech.com/blog/2005/07/26/adsense-deluxe-wordpress-plugin/" target="_blank">AdSense Deluxe</a>. I read about it and realize that this is exactly what I was looking for. This plugin allows you to define and manage all styles and formats (There are different html codes for displaying Google Ads in different formats and styles for example a big rectangle, side banner etc) in the administrative panel. There were options to control the places where the ads will be displayed and after defining the adds and its style and format, one just need to use the syntax mentioned in the instruction page to display the ads. For example by adding <!--adsense-->in the middle of the post will display the Google Ads in the middle of the post.</p>
<p>Installing this plugin was as easy as it could be. After downloading and unzipping the folder, I uploaded the adsense-deluxe.php file under /wp-content/plugin directory. Logged into the administrative account, went to plugin page and activated the AdSense Plugin. I had to do little more tweaking since I wanted the ads to be displayed in the side bar and at the starting of the blog page. So I edited the relevant template files. All I had to do in order to display the ads was to write &#8216;<!--p adsense_deluxe_ads('Ad_Name');-->&#8216; . That&#8217;s it. It worked great and I ticked off another task.</p>
<p>Now comes the last task and I was anticipating problems here since I didn&#8217;t know anything about tagging. Questions like what is it?, what is it used for?, advantages? seemed tough.. But I began my search to find the information to get started and I found <a title="Categories versus Tags - What’s the Difference and Which One" href="http://lorelle.wordpress.com/2005/09/09/categories-versus-tags-whats-the-difference-and-which-one/">this article</a>. There are quite a few articles on tagging if you want to read about it. From this post and other posts here, I kind of figured out that tagging is one more way of organizing your contents and properly organized contents can make visitor&#8217;s life little more easier for sure. I also figured out that there are more concepts around tagging like track backs, ping backs, various tags related sites etc which I will probably cover in a separate post (I too need to refine my concepts a bit more). Coming back to the issue of providing a mechanism of tagging the blog posts which once again wasn&#8217;t difficult to answer because Christine Davis has written a plugin called <a title="Ultimate Tag Warrior" href="http://www.neato.co.nz/ultimate-tag-warrior">Ultimate Tag Warrior</a> for this very purpose.  I went ahead and installed the plugin by simply uploading the Ultimate Tag Warrior in the /wp-content/plugins folder as instructed and also as I knew from my last experience.</p>
<p>Once again I logged into the administrative panel and activated this plugin. I kind of felt excited to see and realize the power of  this plugin. I went to Admin Panel -> Options -> Tags as instructed and found a list of configurable options with detailed comments on their functioning. After doing the necessary settings I went to write a post (Test post of course). There was a text box where I could enter the tags I wanted to associate with this post. I entered the tags and published the posts. The tags were shown below my posts as promised by by the Ultimate Tag Warrior. Next time when I went to write a post, I saw a list of existing tags or already used tags (Tags which I had entered in the previous test post). To select the existing tags from the list, all I need to do was to to click on it. Easy stuff and I happily crossed the last item it the task list.</p>
<p>Well, my assignment actually was finished here but my friend requested me to see the possibilities of automating the complete or part of steps involved since his team which is complete non-techie might find it a bit difficult in executing all the steps involved and and in setting the right options to make everything work (SEF, AdSense, Tagging, general options). So I created the exact folder structure on a my laptop and put all the necessary files (plugin&#8217;s files, modified theme&#8217;s files). By uploading this one folder, uploading of all files is taken care of. Next step was to select the modified them and activate the two plugins, one for adsense and other one for tagging. OK, Next was the most complicated part where in I needed to set the options automatically for which I decided to create a php script. I named it as customize.php. In customize.php, I copied little bit of code from the file &#8216;install.php&#8217;, a script which installs the WordPress. Copied code took care of accessing and manipulating the database. Now I needed to know the names of the options which required to be modified/added automatically. Figuring out this was a time consuming job but me, determine to complete the script, finally finished it after few hours of effort. In the script, I deleted the default post, renamed the default category, deleted the default links, renamed the default links category, updated the general options, added/modified the options related to adsense and tag warrior plugins.</p>
<p>Now my friend or someone from his team was required to install the WordPress (using Fantastico), upload the files (one drag drop is enough), select the modified themes and activate the plugins from the administrative panel and then run the customize.php. Yep, that will do. No need to train everyone, how to set the tagging options, no need to distribute the adsense scripts and a standard blogging environment is in place.</p>
<p>Got lengthy, isn&#8217;t it? Well, I don&#8217;t think I need to conclude it anymore, do I?.</p>
Post Tags:No Tags]]></content:encoded>
			<wfw:commentRss>http://mycorollary.com/blog/my-experiences-with-wordpress-ii.htm/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My Experiences with WordPress</title>
		<link>http://mycorollary.com/blog/my-experiences-with-wordpress.htm</link>
		<comments>http://mycorollary.com/blog/my-experiences-with-wordpress.htm#comments</comments>
		<pubDate>Wed, 15 Nov 2006 21:01:02 +0000</pubDate>
		<dc:creator>Pankaj</dc:creator>
		
	<dc:subject>Everything else</dc:subject>
		<guid isPermaLink="false">http://mycorollary.com/blog/my-experiences-with-wordpress.htm</guid>
		<description><![CDATA[Few days back, a friend of mine who runs a company called KWeb Marketing asked me to explore certain features in WordPress. His company&#8217;s main business is to create virtual / online real state. Exploration areas were &#8230;
- Installation
- Ease in customizing the look and feel
- Making the website search engine friendly (URL rewriting)
- Options [...]]]></description>
			<content:encoded><![CDATA[<p>Few days back, a friend of mine who runs a company called KWeb Marketing asked me to explore certain features in WordPress. His company&#8217;s main business is to create virtual / online real state. Exploration areas were &#8230;<br />
- Installation<br />
- Ease in customizing the look and feel<br />
- Making the website search engine friendly (URL rewriting)<br />
- Options for RSS feed<br />
- Tagging for blog posts<br />
- Displaying Google Ads (AdSense block)</p>
<p>When I was asked to do this, I really had no clue how to go about it since I really had no clue about what actually is the WordPress. I had just heard from my friend that it is a famous blogging software. Never mind that because I trust google to direct me to sources where I can find information I want which has been put on the web by people of various community.</p>
<p>Installation turned out to be as easy as it could be with the help of Fantastico utility hosted by our Web Hoster. Took me about 5 Mins to install it. It was simple enough to install even without the Fantastico when I tried it on my laptop. So one task done without a hint of trouble.</p>
<p>When it came to look and feel, I found out that there are so many good looking themes freely available for WordPress that I could not help myself being amazed. Deploying the downloaded themes was again a simple task. Just unzip the folder, upload it in the /wp-content/themes folder on the server using any FTP tool then log into the administrative section using admin user id and password/ Go to Presentation section which displays all the themes available (uploaded earlier along with the default ones). Select the one you like the most and your WordPress got a new look. That&#8217;s it. Simple, isn&#8217;t? OK, If one needs to customize the look of a particular theme, it is easy if you know little bit of CSS, HTML and PHP since you end up editing the template files of your theme selected. This could be a bit of time consuming. Though I had given my friend few options by uploading few themes on the server but eventually he decided to go for the default theme of WordPress. I did some changes in the default theme later to meet his exact requirements.</p>
<p>Options for RSS feed for entire blog and individual post was already taken care of by WordPress. One more task got over without any sort of effort from me left one big grin on my face.</p>
<p>Next came the Search Engine Friendly (SEF) URLs which are the URLs that excludes unfriendly items to search engine such as &#8216;%&#8217;, &#8216;?&#8217;, &#8216;=&#8217;, &#8216;%&#8217;. In WordPress, Default URLs are in the form of as <em>http://www.domain.com/index.php?p=2</em> where p is the post id.  In order to make these URLs Search Engine Friendly, I took my favorite route, I did google and found the article: <a title="How to configure WordPress to create search engine friendly URLs for permalinks" href="http://www.emilyrobbins.com/how-to-blog/how-to-configure-wordpress-to-create-search-engine-friendly-urls-for-permalinks-242.htm" target="_blank">How to configure WordPress to create search engine friendly URLs for permalinks</a></p>
<p>Knowledge acquired from this post, I went to Admin Panel -> Options -> Permalinks. In there, there are couple of Pre-Defined formats as <em>Date and Name based</em> and <em>Numeric based</em> along with the default ones.</p>
<p>The last and most flexible one, the one I was looking for, was the custom structure and trust me, I just had to enter /%postname%.htm to include the title of the post in my URLs. Hassle free SEF. Earlier I had to put my rewrite rules in htaccess file when I was configuring SEF URLs in <a title="OS Commerce" href="http://www.oscommerce.com" target="_blank">OSCommerce</a>. WordPress does this work for you by modifying the htaccess file if your htaccess file is writable and if not it displays the rules which you have to put in there.</p>
<p>Till this time, I really didn&#8217;t face any problems. Everything went so smooth, a kind of unexpected but happy scenario <img src='http://mycorollary.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> that I decided to take a break and take up the next set of actions next day. Probably I just wanted to prolong the happy feeling.</p>
Post Tags:No Tags]]></content:encoded>
			<wfw:commentRss>http://mycorollary.com/blog/my-experiences-with-wordpress.htm/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Welcome Me</title>
		<link>http://mycorollary.com/blog/welcome-me.htm</link>
		<comments>http://mycorollary.com/blog/welcome-me.htm#comments</comments>
		<pubDate>Tue, 14 Nov 2006 19:04:17 +0000</pubDate>
		<dc:creator>Pankaj</dc:creator>
		
	<dc:subject>Everything else</dc:subject>
		<guid isPermaLink="false">http://mycorollary.com/blog/?p=3</guid>
		<description><![CDATA[Finally, I have a blog for myself :). It&#8217;s not that I could have  not  got one earlier. I guess laziness is the name for it. Anyway, even now how  well, I am going to fight with my laziness or inertia i&#8217;ve no idea. Anyhow I am  going to use this as my public [...]]]></description>
			<content:encoded><![CDATA[<p>Finally, I have a blog for myself :). It&#8217;s not that I could have  not  got one earlier. I guess laziness is the name for it. Anyway, even now how  well, I am going to fight with my laziness or inertia i&#8217;ve no idea. Anyhow I am  going to use this as my public diary and will put anything and everything which  I come across wherever, whenever&#8230;</p>
Post Tags:No Tags]]></content:encoded>
			<wfw:commentRss>http://mycorollary.com/blog/welcome-me.htm/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
