<?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>Raza Mehdi&#039;s Blog</title>
	<atom:link href="http://blog.srmklive.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.srmklive.com</link>
	<description></description>
	<lastBuildDate>Wed, 24 Apr 2013 10:39:32 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>How to setup SFTP server (FTP over SSH) in Ubuntu</title>
		<link>http://blog.srmklive.com/2013/04/24/how-to-setup-sftp-server-ftp-over-ssh-in-ubuntu/</link>
		<comments>http://blog.srmklive.com/2013/04/24/how-to-setup-sftp-server-ftp-over-ssh-in-ubuntu/#comments</comments>
		<pubDate>Wed, 24 Apr 2013 10:39:32 +0000</pubDate>
		<dc:creator>Raza</dc:creator>
				<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://blog.srmklive.com/?p=305</guid>
		<description><![CDATA[In my previous post, i discussed about how to install &#38; configure FTP Server on Ubuntu. In this post, i will discuss about how to setup SFTP server in Ubuntu. First you need to install openssh-server, which can be done using command: You can use the following commands for ssh: First create a backup of [...]]]></description>
		<wfw:commentRss>http://blog.srmklive.com/2013/04/24/how-to-setup-sftp-server-ftp-over-ssh-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install FTP Server (ProFTPd) in Ubuntu</title>
		<link>http://blog.srmklive.com/2013/04/22/how-to-install-ftp-server-proftpd-in-ubuntu/</link>
		<comments>http://blog.srmklive.com/2013/04/22/how-to-install-ftp-server-proftpd-in-ubuntu/#comments</comments>
		<pubDate>Mon, 22 Apr 2013 10:22:28 +0000</pubDate>
		<dc:creator>Raza</dc:creator>
				<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://blog.srmklive.com/?p=293</guid>
		<description><![CDATA[In this post, i will go through the process of installing FTP server in Ubuntu. First, run the following command to install ProFTPd in ubuntu: When installing a dialog box like this will be shown. Choose whatever option you feel suits your best needs: Now open the file /etc/shells through any text editor, and add the following [...]]]></description>
		<wfw:commentRss>http://blog.srmklive.com/2013/04/22/how-to-install-ftp-server-proftpd-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Detect Web Browser through Javascript</title>
		<link>http://blog.srmklive.com/2013/04/08/detect-web-browser-through-javascript/</link>
		<comments>http://blog.srmklive.com/2013/04/08/detect-web-browser-through-javascript/#comments</comments>
		<pubDate>Mon, 08 Apr 2013 10:01:10 +0000</pubDate>
		<dc:creator>Raza</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://blog.srmklive.com/?p=288</guid>
		<description><![CDATA[]]></description>
		<wfw:commentRss>http://blog.srmklive.com/2013/04/08/detect-web-browser-through-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Develop a Template System in Zend Framework Application</title>
		<link>http://blog.srmklive.com/2013/01/31/how-to-develop-a-template-system-in-zend-framework-application/</link>
		<comments>http://blog.srmklive.com/2013/01/31/how-to-develop-a-template-system-in-zend-framework-application/#comments</comments>
		<pubDate>Thu, 31 Jan 2013 11:43:36 +0000</pubDate>
		<dc:creator>Raza</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://blog.srmklive.com/?p=254</guid>
		<description><![CDATA[In this post, i will show you how to create a template system in a Zend Framework appplication using Zend_Layout &#38; Zend_View. The Zend Framework version being used is 1.12. I would assume that you have created a Zend Framework application that has already layout enabled. The following is the default folder structure of a [...]]]></description>
		<wfw:commentRss>http://blog.srmklive.com/2013/01/31/how-to-develop-a-template-system-in-zend-framework-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Calculate Difference between two dates in PHP</title>
		<link>http://blog.srmklive.com/2012/09/12/calculate-difference-between-two-dates-in-php/</link>
		<comments>http://blog.srmklive.com/2012/09/12/calculate-difference-between-two-dates-in-php/#comments</comments>
		<pubDate>Wed, 12 Sep 2012 10:26:08 +0000</pubDate>
		<dc:creator>Raza</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.srmklive.com/?p=229</guid>
		<description><![CDATA[Here is how we can calculate difference between two dates &#8230; We can also do this using PHP&#8217;s native DateTime &#038; DateInterval objects. I would recommend this method, as this takes care of the leap year checks as well. Remember this is only available in PHP version>=5.3.0]]></description>
		<wfw:commentRss>http://blog.srmklive.com/2012/09/12/calculate-difference-between-two-dates-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Renew Self-Signed Certificate in Linux?</title>
		<link>http://blog.srmklive.com/2012/07/05/how-to-renew-self-signed-certificate-in-linux/</link>
		<comments>http://blog.srmklive.com/2012/07/05/how-to-renew-self-signed-certificate-in-linux/#comments</comments>
		<pubDate>Thu, 05 Jul 2012 09:29:01 +0000</pubDate>
		<dc:creator>Raza</dc:creator>
				<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://blog.srmklive.com/?p=217</guid>
		<description><![CDATA[Hi guys, We can generate self-signed certificate in Linux using OpenSSL. One issue we may encounter is how to renew that certificate. No issues, this can accomplished using OpenSSL. where oldcert.pem is the old certificate. When you run the above command, its data will be imported into the certificate newcert.csr using the current private key [...]]]></description>
		<wfw:commentRss>http://blog.srmklive.com/2012/07/05/how-to-renew-self-signed-certificate-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install LAMP in Ubuntu with SSL</title>
		<link>http://blog.srmklive.com/2012/03/15/how-to-install-lamp-in-ubuntu-with-ssl/</link>
		<comments>http://blog.srmklive.com/2012/03/15/how-to-install-lamp-in-ubuntu-with-ssl/#comments</comments>
		<pubDate>Thu, 15 Mar 2012 11:46:55 +0000</pubDate>
		<dc:creator>Raza</dc:creator>
				<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://blog.srmklive.com/?p=192</guid>
		<description><![CDATA[Hi guys, In this tutorial, you will know how to install apache, php5 &#38; mysql in ubuntu. You will know how to configure virtual hosts &#38; SSL in ubuntu as well. So lets get started &#8230; Open the terminal using command Ctrl+Alt+T.First run the command sudo apt-get update to update all the packages. Step 1: [...]]]></description>
		<wfw:commentRss>http://blog.srmklive.com/2012/03/15/how-to-install-lamp-in-ubuntu-with-ssl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to enable Multisite/Multidomains in WordPress?</title>
		<link>http://blog.srmklive.com/2011/09/12/how-to-enable-multisitemultidomains-in-wordpress/</link>
		<comments>http://blog.srmklive.com/2011/09/12/how-to-enable-multisitemultidomains-in-wordpress/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 10:52:23 +0000</pubDate>
		<dc:creator>Raza</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.srmklive.com/?p=167</guid>
		<description><![CDATA[Hey guys! I recently worked on a wordpress project, in which i had to enable multiple sites running on a single wordpress installation. Following are steps involved in creating the multi-site on a single wordpress installation: First install wordpress on your machine using virtual host configuration. Suppose, you installed it on the local virtual host [...]]]></description>
		<wfw:commentRss>http://blog.srmklive.com/2011/09/12/how-to-enable-multisitemultidomains-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to implement SSL in Zend Framework?</title>
		<link>http://blog.srmklive.com/2011/06/21/how-to-implement-ssl-in-zend-framework/</link>
		<comments>http://blog.srmklive.com/2011/06/21/how-to-implement-ssl-in-zend-framework/#comments</comments>
		<pubDate>Tue, 21 Jun 2011 13:54:28 +0000</pubDate>
		<dc:creator>Raza</dc:creator>
				<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://blog.srmklive.com/?p=142</guid>
		<description><![CDATA[Hi guys! At work, i was working on an e-commerce application in Zend Framework. I had to implement SSL on login, cart and checkout pages. While searching on the task, i found the following post on stackoverflow.com. This implements SSL on specific urls of your application. I am gonna assume that you have a working [...]]]></description>
		<wfw:commentRss>http://blog.srmklive.com/2011/06/21/how-to-implement-ssl-in-zend-framework/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to Export Categories/Subcategories from x-cart to Magento?</title>
		<link>http://blog.srmklive.com/2011/03/21/how-to-export-categoriessubcategories-from-x-cart-to-magento/</link>
		<comments>http://blog.srmklive.com/2011/03/21/how-to-export-categoriessubcategories-from-x-cart-to-magento/#comments</comments>
		<pubDate>Mon, 21 Mar 2011 06:40:01 +0000</pubDate>
		<dc:creator>Raza</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://blog.srmklive.com/?p=118</guid>
		<description><![CDATA[Hi guys! I just started working in magento a few days back. One of the tasks was to import categories data from x-cart to magento. So lets get started: First create a file called func.export_magento.php in the folder include/func of the x-cart installation, and write the following code in it. Then create another file called [...]]]></description>
		<wfw:commentRss>http://blog.srmklive.com/2011/03/21/how-to-export-categoriessubcategories-from-x-cart-to-magento/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
