<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Sanooj Manangat's Blog</title>
	<atom:link href="http://sanoojmanangat.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sanoojmanangat.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Thu, 21 Apr 2011 06:21:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sanoojmanangat.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Sanooj Manangat's Blog</title>
		<link>http://sanoojmanangat.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sanoojmanangat.wordpress.com/osd.xml" title="Sanooj Manangat&#039;s Blog" />
	<atom:link rel='hub' href='http://sanoojmanangat.wordpress.com/?pushpress=hub'/>
		<item>
		<title>“Converting HVM to PV &#8211; Debian using XenCitrix”</title>
		<link>http://sanoojmanangat.wordpress.com/2011/03/13/%e2%80%9cconverting-hvm-to-pv-debian-using-xencitrix%e2%80%9d/</link>
		<comments>http://sanoojmanangat.wordpress.com/2011/03/13/%e2%80%9cconverting-hvm-to-pv-debian-using-xencitrix%e2%80%9d/#comments</comments>
		<pubDate>Sun, 13 Mar 2011 20:24:13 +0000</pubDate>
		<dc:creator>Sanooj Manangat</dc:creator>
		
		<guid isPermaLink="false">http://sanoojmanangat.wordpress.com/?p=138</guid>
		<description><![CDATA[1.Create a new VM using the following steps through XenCenter. a)In Template, Select “Other installation Media” b)Give a “Server name” c)In Installation Media, select “Install from ISO library or DVD” &#62;&#62; Select “Debian_6.0_amd64_netinst.iso” d)Assign Memory, Disk Space, CPU&#8217;s and Network Card to the server. 2.Once the VM is created, goto the “Properties” &#62;&#62; “ Startup [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanoojmanangat.wordpress.com&amp;blog=6925961&amp;post=138&amp;subd=sanoojmanangat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>1.Create a new VM using the following steps through XenCenter.<br />
a)In Template, Select “Other installation Media”<br />
b)Give a “Server name”<br />
c)In Installation Media, select “Install from ISO library or DVD” &gt;&gt; Select “Debian_6.0_amd64_netinst.iso”<br />
d)Assign  Memory, Disk Space, CPU&#8217;s and Network Card to the server.</p>
<p>2.Once the VM is created, goto the “Properties” &gt;&gt; “ Startup Options” of the VM and change the boot order in such a way to make the VM boot from the DVD.</p>
<p>3.Reboot the VM, the VM will be booting from the DVD drive.</p>
<p>4.Hit on the “Install” option in the Debian boot screen.</p>
<p>5.Select Language, Keyboard Layout etc.</p>
<p>6.On Network configuration wizard, Select “Manual Network Configuration”</p>
<p>7.Assign an IP address, proper Gateway, subnet and resolvers.</p>
<p>8.You will be asked to select a mirror inorder to download the packages for installation Select a mirror. It will take some time to download the archives.</p>
<p>9.During Partitioning, Select “ Manual/Custom System partition” .</p>
<p>10.Create only 2 partitions. “/” and “SWAP”</p>
<p>11.Proceed the installation with the new parttion table.</p>
<p>12.You will be asked to select certain softwares during installation. Make sure that you have selected “OpenSSH” and anyother software which you requires.</p>
<p>13.Once the installation installation is completed, remove the DVD from the drive and boot the server. </p>
<p>14.Enter in to the server with the password and username that you have created during the installation process.</p>
<p>15.You will now be able to access the serverv through ssh.</p>
<p>16.Connect to the VM via SSH</p>
<p>17.Install Vim “apt-get install vim”</p>
<p>18.aptitude install linux-image-xen-amd64  OR aptitude search xen and select the latest DomU amd64 kernel image starting with linux-image. </p>
<p>19.Cat /boot/grub/grub.cfg file and note down the following parameters.</p>
<p> linux   /boot/vmlinuz-2.6.35-27-generic root=UUID=ab23d8ad-66e5-4588-9657-fb4cbd11ba07 ro   splash quiet<br />
 initrd  /boot/initrd.img-2.6.35-27-generic </p>
<p>where,</p>
<p>Kernel path:  /boot/vmlinuz-2.6.35-27-generic</p>
<p>Ramdisk path: /boot/initrd.img-2.6.35-27-generic</p>
<p>Kernel arguments: root=UUID=ab23d8ad-66e5-4588-9657-fb4cbd11ba07 ro   splash quiet</p>
<p>20.Please confirm the above parameters, since you need to use it during the Conversion.</p>
<p>21.Shutdown the VM</p>
<p>22.Now login to the Hardware node where the VM resides. We have some steps to be done here now.</p>
<p>23.Copy the following script to “makepv.sh” in /root.</p>
<p><code><br />
<em><br />
#!/bin/bash<br />
 confirm() {<br />
    echo -n "$1   OK [Y/n]?"<br />
    read ANSWER<br />
    if [ "$ANSWER" == "y" ] || [ "$ANSWER" == "Y" ] || [ -z "$ANSWER" ]<br />
    then<br />
        eval $1<br />
        echo "...parameter set"<br />
    else<br />
        echo "...parameter NOT set"<br />
    fi<br />
}<br />
 if [ -z $1 ]<br />
then<br />
    echo -n "Name of VM [l for list]: "<br />
    read VM<br />
else<br />
    VM=$1<br />
fi<br />
 if [ "$VM" == "l" ] || [ "$VM" == "L" ]<br />
then<br />
    xe vm-list | grep name-label | grep -v "Control domain"<br />
    exit<br />
fi<br />
 echo ""<br />
echo "Looking up UUID for VM $VM"<br />
 UUID=$(xe vm-list name-label=$VM params=uuid --minimal)<br />
if [ -z $UUID ]<br />
then<br />
    echo "No UUID found for $VM."<br />
    exit 0<br />
fi<br />
 echo ""<br />
echo "UUID=$UUID"<br />
echo ""<br />
echo "Setting parameters for VM $VM"<br />
confirm "xe vm-param-set uuid=$UUID HVM-boot-policy="<br />
confirm "xe vm-param-set uuid=$UUID PV-bootloader=pygrub"<br />
 echo ""<br />
echo -n "Specify path to Kernel (e.g. /boot/vmlinuz...): "<br />
read KERNEL_PATH<br />
 echo ""<br />
echo -n "Specify Kernel arguments (root=UUID=... ro quiet): "<br />
read KERNEL_ARGS<br />
 echo ""<br />
echo -n "Specify path to ramdisk (e.g. /boot/initrd...): "<br />
read RAMDISK_PATH<br />
 echo ""<br />
confirm "xe vm-param-set uuid=$UUID PV-bootloader-args=\"--kernel=$KERNEL_PATH --ramdisk=$RAMDISK_PATH\""<br />
echo ""<br />
confirm "xe vm-param-set uuid=$UUID PV-args=\"$KERNEL_ARGS console=hvc0 xencons=hvc0\""<br />
 echo ""<br />
echo "List of discs for VM $VM"<br />
xe vm-disk-list uuid=$UUID<br />
 echo ""<br />
echo "Looking up UUID for VBD of VM $VM"<br />
VBD=$(xe vm-disk-list uuid=$UUID | grep -A1 VBD | tail -n 1 | cut -f2 -d: | sed "s/ *//g")<br />
if [ -z $VBD ]<br />
then<br />
    echo "No VBD UUID found for $VBD."<br />
    exit 0<br />
fi<br />
 echo "VBD UUID=$VBD"<br />
echo ""<br />
echo "Setting parameters for VBD $VBD"<br />
confirm "xe vbd-param-set uuid=$VBD bootable=true"<br />
exit 0</em></code></p>
<p>25.Make the script excecutable. Chmod 755 makepv.sh</p>
<p>26.run the script with your Vmname as argument.</p>
<p>./makepv.sh testvm</p>
<p>27.You will be asked for the parameters that we have noted from the grub.cfg file.  Please provide the same.</p>
<p>28.Also, you will be asked for confirmation. Hit “Y” whenever you are asked for confirmation.</p>
<p>29. Once completed, boot the VM.</p>
<p>30.Now put the iso image labeled “xentools.iso” in the DVD drive of the server through Xen citrix.</p>
<p>31.Mount the drive through VM. Ssh to the VM and mount the iso image using the following command.</p>
<p> mount /dev/disk/by-label/XenServer\\x20Tools /mnt</p>
<p>32. Goto the directory named “Linux” </p>
<p>cd Linux</p>
<p>33. You can find a debian packages named the following:</p>
<p>xe-guest-utilities_5.6.100-647_amd64.deb<br />
xe-guest-utilities_5.6.100-647_i386.deb</p>
<p>34.Choose the one that matches your VM architecture.</p>
<p>35.Install it using the command</p>
<p>dpkg -i xe-guest-utilities_5.6.100-647_amd64.deb</p>
<p>36.Reboot the serverv once it is completed.</p>
<p>37.An easier method to check whether the VM is HVM or PV is to check the boot options. HVM supports network boot, DVD and HDD boot. Whereas PV supports only DVD or HDD boot.</p>
<p>38.You can check it through VM &gt;&gt; “Properties” &gt;&gt; “Startup Options”</p>
<p>39. If you found any issues with Console access. Exit the Xencenter and launch it again.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanoojmanangat.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanoojmanangat.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanoojmanangat.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanoojmanangat.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanoojmanangat.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanoojmanangat.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanoojmanangat.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanoojmanangat.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanoojmanangat.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanoojmanangat.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanoojmanangat.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanoojmanangat.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanoojmanangat.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanoojmanangat.wordpress.com/138/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanoojmanangat.wordpress.com&amp;blog=6925961&amp;post=138&amp;subd=sanoojmanangat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanoojmanangat.wordpress.com/2011/03/13/%e2%80%9cconverting-hvm-to-pv-debian-using-xencitrix%e2%80%9d/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8b945d160abec6e81031d492b23b12e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sanoojmanangat</media:title>
		</media:content>
	</item>
		<item>
		<title>“Converting HVM to PV &#8211; Ubuntu using XenCitrix”</title>
		<link>http://sanoojmanangat.wordpress.com/2011/03/13/%e2%80%9cconverting-hvm-to-pv-ubuntu-using-xencitirix%e2%80%9d/</link>
		<comments>http://sanoojmanangat.wordpress.com/2011/03/13/%e2%80%9cconverting-hvm-to-pv-ubuntu-using-xencitirix%e2%80%9d/#comments</comments>
		<pubDate>Sun, 13 Mar 2011 20:20:11 +0000</pubDate>
		<dc:creator>Sanooj Manangat</dc:creator>
				<category><![CDATA[Network Administrator]]></category>

		<guid isPermaLink="false">http://sanoojmanangat.wordpress.com/?p=134</guid>
		<description><![CDATA[“Converting HVM to PV in Ubuntu” 1.Create a new VM using the following steps through XenCenter. a)In Template, Select “Other installation Media” b)Give a “Server name” c)In Installation Media, select “Install from ISO library or DVD” &#62;&#62; Select “Ubuntu_10.10_mini.iso” d)Assign Memory, Disk Space, CPU&#8217;s and Network Card to the server. 2.Once the VM is created, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanoojmanangat.wordpress.com&amp;blog=6925961&amp;post=134&amp;subd=sanoojmanangat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>“Converting HVM to PV in Ubuntu”</p>
<p>1.Create a new VM using the following steps through XenCenter.<br />
a)In Template, Select “Other installation Media”<br />
b)Give a “Server name”<br />
c)In Installation Media, select “Install from ISO library or DVD” &gt;&gt; Select “Ubuntu_10.10_mini.iso”<br />
d)Assign  Memory, Disk Space, CPU&#8217;s and Network Card to the server.</p>
<p>2.Once the VM is created, goto the “Properties” &gt;&gt; “ Startup Options” of the VM and change the boot order in such a way to make the VM boot from the DVD.</p>
<p>3.Reboot the VM, the VM will be booting from the DVD drive.</p>
<p>4.Hit on the “Install” option in the Ubuntu boot screen.</p>
<p>5.Select Language, Keyboard Layout etc.</p>
<p>6.On Network configuration wizard, Select “Manual Network Configuration”</p>
<p>7.Assign an IP address, proper Gateway, subnet and resolvers.</p>
<p>8.You will be asked to select a mirror inorder to download the packages for installation Select a mirror. It will take some time to download the archives.</p>
<p>9.During Partitioning, Select “ Manual/Custom System partition” .</p>
<p>10.Create only 2 partitions. “/” and “SWAP”</p>
<p>11.Proceed the installation with the new parttion table.</p>
<p>12.You will be asked to select certain softwares during installation. Make sure that you have selected “OpenSSH” and anyother software which you requires.</p>
<p>13.Once the installation installation is completed, remove the DVD from the drive and boot the server. </p>
<p>14.Enter in to the server with the password and username that you have created during the installation process.</p>
<p>15.You will now be able to access the server through ssh.</p>
<p>16.Connect to the VM via SSH</p>
<p>17.Install Vim “apt-get install vim”</p>
<p>18.Duplicate /etc/init/tty1.conf to create a new console for Xen.</p>
<p>cp /etc/init/tty1.conf /etc/init/hvc0.conf</p>
<p>19.Change tty1 to hvc0 in “/etc/init/hvc0.conf”</p>
<p>20.Cat /boot/grub/grub.cfg file and note down the following parameters.</p>
<p> linux   /boot/vmlinuz-2.6.35-27-generic root=UUID=ab23d8ad-66e5-4588-9657-fb4cbd11ba07 ro   splash quiet<br />
 initrd  /boot/initrd.img-2.6.35-27-generic </p>
<p>where,</p>
<p>Kernel path:  /boot/vmlinuz-2.6.35-27-generic</p>
<p>Ramdisk path: /boot/initrd.img-2.6.35-27-generic</p>
<p>Kernel arguments: root=UUID=ab23d8ad-66e5-4588-9657-fb4cbd11ba07 ro   splash quiet</p>
<p>21.Please confirm the above parameters, since you need to use it during the Conversion.</p>
<p>22.Shutdown the VM</p>
<p>23.Now login to the<strong> Hardware node</strong> where the VM resides. We have some steps to be done here now.</p>
<p>24.Copy the following script to “makepv.sh” in /root.</p>
<p><em><code>#!/bin/bash<br />
 confirm() {<br />
    echo -n "$1   OK [Y/n]?"<br />
    read ANSWER<br />
    if [ "$ANSWER" == "y" ] || [ "$ANSWER" == "Y" ] || [ -z "$ANSWER" ]<br />
    then<br />
        eval $1<br />
        echo "...parameter set"<br />
    else<br />
        echo "...parameter NOT set"<br />
    fi<br />
}<br />
 if [ -z $1 ]<br />
then<br />
    echo -n "Name of VM [l for list]: "<br />
    read VM<br />
else<br />
    VM=$1<br />
fi<br />
 if [ "$VM" == "l" ] || [ "$VM" == "L" ]<br />
then<br />
    xe vm-list | grep name-label | grep -v "Control domain"<br />
    exit<br />
fi<br />
 echo ""<br />
echo "Looking up UUID for VM $VM"<br />
 UUID=$(xe vm-list name-label=$VM params=uuid --minimal)<br />
if [ -z $UUID ]<br />
then<br />
    echo "No UUID found for $VM."<br />
    exit 0<br />
fi<br />
 echo ""<br />
echo "UUID=$UUID"<br />
echo ""<br />
echo "Setting parameters for VM $VM"<br />
confirm "xe vm-param-set uuid=$UUID HVM-boot-policy="<br />
confirm "xe vm-param-set uuid=$UUID PV-bootloader=pygrub"<br />
 echo ""<br />
echo -n "Specify path to Kernel (e.g. /boot/vmlinuz...): "<br />
read KERNEL_PATH<br />
 echo ""<br />
echo -n "Specify Kernel arguments (root=UUID=... ro quiet): "<br />
read KERNEL_ARGS<br />
 echo ""<br />
echo -n "Specify path to ramdisk (e.g. /boot/initrd...): "<br />
read RAMDISK_PATH<br />
 echo ""<br />
confirm "xe vm-param-set uuid=$UUID PV-bootloader-args=\"--kernel=$KERNEL_PATH --ramdisk=$RAMDISK_PATH\""<br />
echo ""<br />
confirm "xe vm-param-set uuid=$UUID PV-args=\"$KERNEL_ARGS console=hvc0 xencons=hvc0\""<br />
 echo ""<br />
echo "List of discs for VM $VM"<br />
xe vm-disk-list uuid=$UUID<br />
 echo ""<br />
echo "Looking up UUID for VBD of VM $VM"<br />
VBD=$(xe vm-disk-list uuid=$UUID | grep -A1 VBD | tail -n 1 | cut -f2 -d: | sed "s/ *//g")<br />
if [ -z $VBD ]<br />
then<br />
    echo "No VBD UUID found for $VBD."<br />
    exit 0<br />
fi<br />
 echo "VBD UUID=$VBD"<br />
echo ""<br />
echo "Setting parameters for VBD $VBD"<br />
confirm "xe vbd-param-set uuid=$VBD bootable=true"<br />
exit 0</code></em><br />
25.Make the script excecutable. Chmod 755 makepv.sh</p>
<p>26.run the script with your Vmname as argument.</p>
<p>./makepv.sh testvm</p>
<p>27.You will be asked for the parameters that we have noted from the grub.cfg file.  Please provide the same.</p>
<p>28.Also, you will be asked for confirmation. Hit “Y” whenever you are asked for confirmation.</p>
<p>29. Once completed, boot the VM.</p>
<p>30.Now put the iso image labeled “xentools.iso” in the DVD drive of the server through Xen citrix.</p>
<p>31.Mount the drive through VM. Ssh to the VM and mount the iso image using the following command.</p>
<p> mount /dev/disk/by-label/XenServer\\x20Tools /mnt</p>
<p>32. Goto the directory named “Linux” </p>
<p>cd Linux</p>
<p>33. You can find a debian packages named the following:</p>
<p>xe-guest-utilities_5.6.100-647_amd64.deb<br />
xe-guest-utilities_5.6.100-647_i386.deb</p>
<p>34.Choose the one that matches your VM architecture.</p>
<p>35.Install it using the command</p>
<p>dpkg -i xe-guest-utilities_5.6.100-647_amd64.deb</p>
<p>36.Reboot the serverv once it is completed.</p>
<p>37.Login to the VM and fix the service so it runs at boot:</p>
<p>update-rc.d -f xe-linux-distribution remove<br />
update-rc.d xe-linux-distribution defaults</p>
<p>38.An easier method to check whether the VM is HVM or PV is to check the boot options. HVM supports network boot, DVD and HDD boot. Whereas PV supports only DVD or HDD boot.</p>
<p>39.You can check it through VM &gt;&gt; “Properties” &gt;&gt; “Startup Options”</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanoojmanangat.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanoojmanangat.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanoojmanangat.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanoojmanangat.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanoojmanangat.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanoojmanangat.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanoojmanangat.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanoojmanangat.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanoojmanangat.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanoojmanangat.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanoojmanangat.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanoojmanangat.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanoojmanangat.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanoojmanangat.wordpress.com/134/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanoojmanangat.wordpress.com&amp;blog=6925961&amp;post=134&amp;subd=sanoojmanangat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanoojmanangat.wordpress.com/2011/03/13/%e2%80%9cconverting-hvm-to-pv-ubuntu-using-xencitirix%e2%80%9d/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8b945d160abec6e81031d492b23b12e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sanoojmanangat</media:title>
		</media:content>
	</item>
		<item>
		<title>Get Free cPanel Charts and Posters</title>
		<link>http://sanoojmanangat.wordpress.com/2010/12/16/get-free-cpanel-charts-and-posters/</link>
		<comments>http://sanoojmanangat.wordpress.com/2010/12/16/get-free-cpanel-charts-and-posters/#comments</comments>
		<pubDate>Thu, 16 Dec 2010 19:51:54 +0000</pubDate>
		<dc:creator>Sanooj Manangat</dc:creator>
				<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://sanoojmanangat.wordpress.com/?p=131</guid>
		<description><![CDATA[Order your free cpanel posters now!! &#8212;&#8212;&#8212;&#8212;&#8212;- URL: http://www.cpanel.net/signupform.html &#8212;&#8212;&#8212;&#8212;&#8212;-<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanoojmanangat.wordpress.com&amp;blog=6925961&amp;post=131&amp;subd=sanoojmanangat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Order  your free cpanel posters now!!</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
URL: http://www.cpanel.net/signupform.html<br />
&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanoojmanangat.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanoojmanangat.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanoojmanangat.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanoojmanangat.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanoojmanangat.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanoojmanangat.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanoojmanangat.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanoojmanangat.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanoojmanangat.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanoojmanangat.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanoojmanangat.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanoojmanangat.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanoojmanangat.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanoojmanangat.wordpress.com/131/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanoojmanangat.wordpress.com&amp;blog=6925961&amp;post=131&amp;subd=sanoojmanangat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanoojmanangat.wordpress.com/2010/12/16/get-free-cpanel-charts-and-posters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8b945d160abec6e81031d492b23b12e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sanoojmanangat</media:title>
		</media:content>
	</item>
		<item>
		<title>Debugging Windows Plesk frontpage error</title>
		<link>http://sanoojmanangat.wordpress.com/2010/12/16/debugging-windows-plesk-frontpage-error/</link>
		<comments>http://sanoojmanangat.wordpress.com/2010/12/16/debugging-windows-plesk-frontpage-error/#comments</comments>
		<pubDate>Thu, 16 Dec 2010 19:44:09 +0000</pubDate>
		<dc:creator>Sanooj Manangat</dc:creator>
				<category><![CDATA[Network Administrator]]></category>

		<guid isPermaLink="false">http://sanoojmanangat.wordpress.com/?p=129</guid>
		<description><![CDATA[1. Go to server add a file &#8220;C:\frontpg.log&#8221; with ownership and full permission for &#8220;psacln&#8221; user. 2. Try to recreate the issue. You will get the error log here. WARNING: Please remove the file once done.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanoojmanangat.wordpress.com&amp;blog=6925961&amp;post=129&amp;subd=sanoojmanangat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>1. Go to server add a file &#8220;C:\frontpg.log&#8221; with ownership and full permission for &#8220;psacln&#8221; user.</p>
<p>2. Try to recreate the issue. You will get the error log here.</p>
<p>WARNING:  Please remove the file once done.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanoojmanangat.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanoojmanangat.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanoojmanangat.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanoojmanangat.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanoojmanangat.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanoojmanangat.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanoojmanangat.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanoojmanangat.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanoojmanangat.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanoojmanangat.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanoojmanangat.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanoojmanangat.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanoojmanangat.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanoojmanangat.wordpress.com/129/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanoojmanangat.wordpress.com&amp;blog=6925961&amp;post=129&amp;subd=sanoojmanangat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanoojmanangat.wordpress.com/2010/12/16/debugging-windows-plesk-frontpage-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8b945d160abec6e81031d492b23b12e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sanoojmanangat</media:title>
		</media:content>
	</item>
		<item>
		<title>Password protecting a directory using .htaccess</title>
		<link>http://sanoojmanangat.wordpress.com/2010/12/16/password-protecting-a-directory-using-htaccess/</link>
		<comments>http://sanoojmanangat.wordpress.com/2010/12/16/password-protecting-a-directory-using-htaccess/#comments</comments>
		<pubDate>Thu, 16 Dec 2010 19:41:33 +0000</pubDate>
		<dc:creator>Sanooj Manangat</dc:creator>
				<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://sanoojmanangat.wordpress.com/?p=127</guid>
		<description><![CDATA[1. Create a .htpasswd file outside the Document root. &#8212;&#8212;&#8212; htpasswd -mb /outside/Documentroot/.htpasswd username password &#8212;&#8212;&#8212; Or else , you can use many online htpasswd generator tools like the following and copy it to the file &#8220;/outside/Documentroot/.htpasswd&#8221; &#8212;&#8212;&#8212;&#8211; URL: http://www.htaccesstools.com/htpasswd-generator/ &#8212;&#8212;&#8212;&#8211; 2. Open/ Create a &#8221; .htaccess&#8221; file in the directory (which you want to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanoojmanangat.wordpress.com&amp;blog=6925961&amp;post=127&amp;subd=sanoojmanangat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>1. Create a .htpasswd file outside the Document root.</p>
<p>&#8212;&#8212;&#8212;<br />
htpasswd -mb <em>/outside/Documentroot</em>/.htpasswd username password<br />
&#8212;&#8212;&#8212;<br />
Or else , you can use many online htpasswd generator tools like the following and copy it to the file &#8220;<em>/outside/Documentroot</em>/.htpasswd&#8221;</p>
<p>&#8212;&#8212;&#8212;&#8211;<br />
URL: <a href="http://www.htaccesstools.com/htpasswd-generator/">http://www.htaccesstools.com/htpasswd-generator/</a><br />
&#8212;&#8212;&#8212;&#8211;</p>
<p>2. Open/ Create a &#8221; .htaccess&#8221; file in the directory (which you want to password protect) with the following code:</p>
<p> AuthUserFile <em>/full/path/to</em>/.htpasswd<br />
 AuthName &#8220;Please Log In&#8221;<br />
 AuthType Basic<br />
require valid-user	</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanoojmanangat.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanoojmanangat.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanoojmanangat.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanoojmanangat.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanoojmanangat.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanoojmanangat.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanoojmanangat.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanoojmanangat.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanoojmanangat.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanoojmanangat.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanoojmanangat.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanoojmanangat.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanoojmanangat.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanoojmanangat.wordpress.com/127/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanoojmanangat.wordpress.com&amp;blog=6925961&amp;post=127&amp;subd=sanoojmanangat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanoojmanangat.wordpress.com/2010/12/16/password-protecting-a-directory-using-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8b945d160abec6e81031d492b23b12e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sanoojmanangat</media:title>
		</media:content>
	</item>
		<item>
		<title>Php Warning</title>
		<link>http://sanoojmanangat.wordpress.com/2010/12/16/php-warning/</link>
		<comments>http://sanoojmanangat.wordpress.com/2010/12/16/php-warning/#comments</comments>
		<pubDate>Thu, 16 Dec 2010 19:26:12 +0000</pubDate>
		<dc:creator>Sanooj Manangat</dc:creator>
				<category><![CDATA[Network Administrator]]></category>
		<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://sanoojmanangat.wordpress.com/?p=125</guid>
		<description><![CDATA[At times you can see annoying php warnings on sites. You can simply get rid of them by embedding the following code in that php file. &#8212;&#8212;&#8212;&#8211; error_reporting(0); &#8212;&#8212;&#8212;&#8211;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanoojmanangat.wordpress.com&amp;blog=6925961&amp;post=125&amp;subd=sanoojmanangat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>At times you can see annoying php warnings on sites. You can simply get rid of them by embedding the following code in that php file.</p>
<p>&#8212;&#8212;&#8212;&#8211;<br />
error_reporting(0);<br />
&#8212;&#8212;&#8212;&#8211;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanoojmanangat.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanoojmanangat.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanoojmanangat.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanoojmanangat.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanoojmanangat.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanoojmanangat.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanoojmanangat.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanoojmanangat.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanoojmanangat.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanoojmanangat.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanoojmanangat.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanoojmanangat.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanoojmanangat.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanoojmanangat.wordpress.com/125/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanoojmanangat.wordpress.com&amp;blog=6925961&amp;post=125&amp;subd=sanoojmanangat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanoojmanangat.wordpress.com/2010/12/16/php-warning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8b945d160abec6e81031d492b23b12e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sanoojmanangat</media:title>
		</media:content>
	</item>
		<item>
		<title>Transfer files using rsync</title>
		<link>http://sanoojmanangat.wordpress.com/2010/12/16/transfer-files-using-rsync/</link>
		<comments>http://sanoojmanangat.wordpress.com/2010/12/16/transfer-files-using-rsync/#comments</comments>
		<pubDate>Thu, 16 Dec 2010 19:20:14 +0000</pubDate>
		<dc:creator>Sanooj Manangat</dc:creator>
				<category><![CDATA[Network Administrator]]></category>

		<guid isPermaLink="false">http://sanoojmanangat.wordpress.com/?p=123</guid>
		<description><![CDATA[You can use the follwoing format to transfer a file from one server to another. rsync -avz path/to/source_directory username@:/path/at/destination/server<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanoojmanangat.wordpress.com&amp;blog=6925961&amp;post=123&amp;subd=sanoojmanangat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You can use the follwoing format to transfer a file from one server to another.</p>
<p>rsync -avz path/to/source_directory username@:/path/at/destination/server</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanoojmanangat.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanoojmanangat.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanoojmanangat.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanoojmanangat.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanoojmanangat.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanoojmanangat.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanoojmanangat.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanoojmanangat.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanoojmanangat.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanoojmanangat.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanoojmanangat.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanoojmanangat.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanoojmanangat.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanoojmanangat.wordpress.com/123/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanoojmanangat.wordpress.com&amp;blog=6925961&amp;post=123&amp;subd=sanoojmanangat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanoojmanangat.wordpress.com/2010/12/16/transfer-files-using-rsync/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8b945d160abec6e81031d492b23b12e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sanoojmanangat</media:title>
		</media:content>
	</item>
		<item>
		<title>Online Email verification tool</title>
		<link>http://sanoojmanangat.wordpress.com/2010/12/16/online-email-verification-tool/</link>
		<comments>http://sanoojmanangat.wordpress.com/2010/12/16/online-email-verification-tool/#comments</comments>
		<pubDate>Thu, 16 Dec 2010 19:16:35 +0000</pubDate>
		<dc:creator>Sanooj Manangat</dc:creator>
				<category><![CDATA[Network Administrator]]></category>

		<guid isPermaLink="false">http://sanoojmanangat.wordpress.com/?p=121</guid>
		<description><![CDATA[You can verify whether an email address is valid or not using the following link. URL: http://verify-email.org/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanoojmanangat.wordpress.com&amp;blog=6925961&amp;post=121&amp;subd=sanoojmanangat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You can verify whether an email address is valid or not using the following link.</p>
<p>URL: http://verify-email.org/</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanoojmanangat.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanoojmanangat.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanoojmanangat.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanoojmanangat.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanoojmanangat.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanoojmanangat.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanoojmanangat.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanoojmanangat.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanoojmanangat.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanoojmanangat.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanoojmanangat.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanoojmanangat.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanoojmanangat.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanoojmanangat.wordpress.com/121/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanoojmanangat.wordpress.com&amp;blog=6925961&amp;post=121&amp;subd=sanoojmanangat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanoojmanangat.wordpress.com/2010/12/16/online-email-verification-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8b945d160abec6e81031d492b23b12e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sanoojmanangat</media:title>
		</media:content>
	</item>
		<item>
		<title>How to add a Hit/Visitors counter in Website</title>
		<link>http://sanoojmanangat.wordpress.com/2010/12/16/how-to-add-a-hitvisitors-counter-in-website/</link>
		<comments>http://sanoojmanangat.wordpress.com/2010/12/16/how-to-add-a-hitvisitors-counter-in-website/#comments</comments>
		<pubDate>Thu, 16 Dec 2010 19:13:26 +0000</pubDate>
		<dc:creator>Sanooj Manangat</dc:creator>
				<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://sanoojmanangat.wordpress.com/?p=119</guid>
		<description><![CDATA[Paste the code provided in the following link to your web page: http://www.simplehitcounter.com/addcounter.asp<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanoojmanangat.wordpress.com&amp;blog=6925961&amp;post=119&amp;subd=sanoojmanangat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Paste the code provided in the following link to your web page:</p>
<p>http://www.simplehitcounter.com/addcounter.asp</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanoojmanangat.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanoojmanangat.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanoojmanangat.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanoojmanangat.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanoojmanangat.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanoojmanangat.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanoojmanangat.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanoojmanangat.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanoojmanangat.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanoojmanangat.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanoojmanangat.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanoojmanangat.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanoojmanangat.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanoojmanangat.wordpress.com/119/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanoojmanangat.wordpress.com&amp;blog=6925961&amp;post=119&amp;subd=sanoojmanangat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanoojmanangat.wordpress.com/2010/12/16/how-to-add-a-hitvisitors-counter-in-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8b945d160abec6e81031d492b23b12e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sanoojmanangat</media:title>
		</media:content>
	</item>
		<item>
		<title>Redirecting a Site using .htaccess</title>
		<link>http://sanoojmanangat.wordpress.com/2010/12/16/redirecting-a-site-using-htaccess/</link>
		<comments>http://sanoojmanangat.wordpress.com/2010/12/16/redirecting-a-site-using-htaccess/#comments</comments>
		<pubDate>Thu, 16 Dec 2010 19:03:49 +0000</pubDate>
		<dc:creator>Sanooj Manangat</dc:creator>
				<category><![CDATA[Network Administrator]]></category>

		<guid isPermaLink="false">http://sanoojmanangat.wordpress.com/?p=116</guid>
		<description><![CDATA[Open the .htaccess file in your Document root: vi .htaccess Enter the following code : Redirect / http://domain.com/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanoojmanangat.wordpress.com&amp;blog=6925961&amp;post=116&amp;subd=sanoojmanangat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Open the .htaccess file in your Document root:</p>
<p>vi .htaccess</p>
<p>Enter the following code :</p>
<p>Redirect / http://domain.com/</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sanoojmanangat.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sanoojmanangat.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sanoojmanangat.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sanoojmanangat.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sanoojmanangat.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sanoojmanangat.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sanoojmanangat.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sanoojmanangat.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sanoojmanangat.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sanoojmanangat.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sanoojmanangat.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sanoojmanangat.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sanoojmanangat.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sanoojmanangat.wordpress.com/116/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sanoojmanangat.wordpress.com&amp;blog=6925961&amp;post=116&amp;subd=sanoojmanangat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sanoojmanangat.wordpress.com/2010/12/16/redirecting-a-site-using-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e8b945d160abec6e81031d492b23b12e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sanoojmanangat</media:title>
		</media:content>
	</item>
	</channel>
</rss>
