<?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>Easy Life &#187; blog</title>
	<atom:link href="http://easy-life.sabza.org/tag/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://easy-life.sabza.org</link>
	<description>Computer Tips and Tutorials for non-IT Folks</description>
	<lastBuildDate>Thu, 05 Jan 2012 05:35:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Securing a WordPress Blog</title>
		<link>http://easy-life.sabza.org/2009/02/wordpress-security-tips/</link>
		<comments>http://easy-life.sabza.org/2009/02/wordpress-security-tips/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 17:36:31 +0000</pubDate>
		<dc:creator>Noumaan Yaqoob</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://easy-life.sabza.org/?p=168</guid>
		<description><![CDATA[Due to some troubles with a few of my WordPress blogs. I have recently learned a lot about security and protecting my WordPress blogs from hacking. There is no way to be 100% sure that your website couldn&#8217;t get hacked....]]></description>
			<content:encoded><![CDATA[<div style="text-align:left;float:left;"><img src="http://easy-life.sabza.org/wp-content/uploads/2009/02/wordpress-security.png" alt="wordpress security" title="wordpress security" width="130" height="130" class="size-full wp-image-169" style="padding:2px;margin:2px;" /></div>
<p>Due to some troubles with a few of my WordPress blogs. I have recently learned a lot about security and protecting my WordPress blogs from hacking. There is no way to be 100% sure that your website couldn&#8217;t get hacked. However, using the best practices described below, you can make it very hard for someone to crack into your WordPress installation. Taking these steps does not take much time but it saves you from a lot of trouble, even if your website get&#8217;s attacked you can fight back quickly and restore your website easily. Without these security precautions you not only make your WordPress installtion vulnerable, but you also make it difficult for yourself to recover from horrible accidents. So lets begin securing of your blog:</p>
<p><strong>Back up often</strong></p>
<p>You have heard this many times. Here it is once again, back up your website and database at least once a week if you update your website daily, or atleast once a month if you don&#8217;t update that often. But please back up. Do not trust your webhost when they tell you that they have back ups of your website created on a daily basis. It is very smart to have backups on hand just in case something goes terribly wrong with you or your webhost. There are many WordPress plugins to back up your database. I use <a href="http://wordpress.org/extend/plugins/wp-dbmanager/">WordPress database manager</a> plugin called wp-dbmanager. Using this plugin you can schedual weekly backups to be sent to you via email. </p>
<p><strong>Stay Updated</strong></p>
<p>Whenever there is a new version of WordPress, upgrade your installation as soon as possible. Since 2.7 WordPress has automated the upgrade process or you can manually update to latest version. It only takes about ten minutes but it saves you from a lot of trouble. Older, outdated and upsupported installations often get hacked. Once hacked it is a very lengthy process to clean your blog and upgrade. So protect yourself now upgrade your WordPress. </p>
<p>Also keep your plugins updated to newest versions. If you notice that a plugin author has not released an updated version since a long time go to plugin&#8217;s home page and check its status. If the author has abandoned the plugin then stop using it right away. </p>
<p><strong>Strong Passwords</strong></p>
<p>If no one has ever stolen your password then it does not mean that no one ever will. There are some really bad people out there who randomly pick their victims and crack their passwords to take control of their websites. WordPress has strong password indicator which you can use to generate a strong password. A strong password contains atleast 8 characters a combination of alphabates and numbers and special characters. Avoid using words that can be found in a dictionary. </p>
<p>You should have strong passwords not only for your blog&#8217;s admin interface, but also for your site&#8217;s SSH shell and FTP access. Doing so you make it very difficult for hackers to crack your site and access your files via ftp. Try to use SSH or SFTP instead of plain FTP. </p>
<p>But strong passwords are difficult to remember. Well you should then read this wonder post from the blog herald that tells you <a href="http://www.blogherald.com/2007/05/08/protect-your-blog-with-a-solid-password/">how to create strong but memorable passwords</a>. You can also generate a strong password using <a href="http://www.adel.nursat.kz/apg/">Aautomatic password generator tool</a>.</p>
<p><strong>File Permissions</strong></p>
<p>One drawback of using WordPress or some of its plugins is that sometimes you need to make a few files writeable on your server. For security it is important that you keep file permissions as strict as possible. It is ideal to have your directories file permission set to 755 and your files 644. See WordPress Codex <a href="http://codex.wordpress.org/Changing_File_Permissions">Changing File Permissions</a>. </p>
<p><strong>Default Username</strong></p>
<p>At the first installation WordPress automatically creates a user account with the username admin. Now using the default username means that half of cracking is done without any guessing. Unfortunately it is not possible to change this username from the WordPress admin interface. However you can change it by running a simple mysql query.<br />
<code>Update tableprefix_users set user_login='newusername' where user_login='admin'; </code></p>
<p>Replace tableprefix with the table prefix in your wp-config file. If you didn&#8217;t add a table prefix then it would the default one which is wp_ . You can run this query or manually edit table in phpMyAdmin or you can also run this query using wp-dbmanager plugin. </p>
<p><strong>Other tips:</strong></p>
<p>Remember, no website is 100% secure. But taking these precautions reduces the chances of your blog or website getting compromised easily. The following web pages has more tips on securing your WordPress even more. </p>
<p><a href="http://codex.wordpress.org/Hardening_WordPress">Hardening WordPress</a><br />
<a href="http://www.noupe.com/how-tos/wordpress-security-tips-and-hacks.html">WordPress Security Tips and Hacks</a><br />
<a href="http://blogsecurity.net/wordpress/wordpress-security-whitepaper">WordPress Security Whitepaper</a></p>
]]></content:encoded>
			<wfw:commentRss>http://easy-life.sabza.org/2009/02/wordpress-security-tips/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Choose A Theme for Your WordPress Blog</title>
		<link>http://easy-life.sabza.org/2008/09/howto-choose-theme-wordpress-blog/</link>
		<comments>http://easy-life.sabza.org/2008/09/howto-choose-theme-wordpress-blog/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 18:36:21 +0000</pubDate>
		<dc:creator>Noumaan Yaqoob</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://easy-life.sabza.org/?p=96</guid>
		<description><![CDATA[How do I pick up a theme for my wordpress blog from thousands of freely available themes out there? This is really a tough question. Some bloggers, even the experienced ones, spend so much time looking around for the perfect...]]></description>
			<content:encoded><![CDATA[<p><strong>How do I pick up a theme for my wordpress blog from thousands of freely available themes out there?</strong> </p>
<p>This is really a tough question. Some bloggers, even the experienced ones, spend so much time looking around for the perfect theme to beautify their blog. There are themes with lots of images in header and every where they look amazingly beautiful. There are themes that are simple and elegant. Themes, with functionality to improve certain aspects of your blogging experience. Themes designed for SEO and themes designed to be used with advertising programs such as Google Adsense. There are three columns, two column and single column themes. How do you know what is right for your blog? </p>
<p>Here is how I do it. First of all I try to think <em>what I want to achieve with my new blog</em>. Like this particular blog that you are currently reading is a place to share tips. So I needed a theme that was easy on reader&#8217;s eyes so that they can read the content, apply it somewhere, and then leave a comment if they want. This approach to design is called Usability and it helps a lot in the long run. This blog is new, so I also needed a theme that is easy to modify for my future needs. </p>
<p>I wasn&#8217;t sure about sidebar and layout. But then I thought that I don&#8217;t have enough content at the moment to fill the two sidebars with interesting items. So I decided to go with a single sidebar theme such themes are also called two column themes sometimes. Right sidebar or left sidebar? I remembered reading somewhere (probably <a href="http://www.useit.com/papers/webwriting/">here</a>) that people read left to right so if you put your content on right and relevant links and navigation on the left then it is easy for them to quickly find what they need. </p>
<p>So this the first step of choosing the right theme. You need to think what you want to do with your blog and think of a layout that fit both your&#8217;s and your readership&#8217;s needs. </p>
<p><strong>The Next step is design, color, and layout.</strong> There are so many colors in this beautiful world and please remember that we all love colors. So even if you are into simple looking web pages make sure that it has some colors too. While browsing the theme directories you will see many themes and I would suggest that you bookmark the themes that you like on your way. Once you think you have browsed enough themes then look into your bookmarked themes. And select a few that you like most.</p>
<p>In my opinion themes with large image headers containing pictures of irrelevant things are not very good. because these images provide no benefit to your reader. Still if you prefer images in your header then make sure that they are not too big. </p>
<p>Optimizing your blog for search engines and advertising programs is no more a hassle. But it could be if you pick a theme that is not easy to modify or relies on some plugins that you don&#8217;t really need. You don&#8217;t really need to pick up a search engine friendly theme, because it could easily be done later on with either <a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">plugins</a> or <a href="http://codex.wordpress.org/Search_Engine_Optimization_for_Wordpress">manually</a>. You also don&#8217;t need to pick up a theme that has room for lots of advertisements. Because such themes are used widely by bad websites and if your visitor has seen such websites already he would think that your blog looks like those trash sites so it would be useless as well.Choose a theme that is easy to modify and you can always add your advertisement code in it. </p>
<p><strong>Widgets or No Widgets?</strong></p>
<p>Depends on how easy you want it to be, I personally feel easier working with themes in my text editor. But lots of people like the comfort of Widgets. So if you want to make adding items to your sidebar simpler then you go for widgets ready themes. </p>
<p>While picking up a theme don&#8217;t just think about the attractiveness. Look for a theme that is easy for your readers so that they can easily navigate your website or blog. Also make sure that the same theme is easy for you too, so that you can work with it in future and add features to it if the need arises. </p>
<p><strong>How do you know that the theme you want is easy to modify or not?</strong> I particularly check the theme in theme-editor. Since I feel that most editing goes on in sidebars so I look at the sidebar template. Themes that use complex div structure in sidebars are difficult to use. I prefer themes that have simpler sidebar code so that I could add my own items easily. </p>
<p>Another quick tip, <strong>don&#8217;t just go for the popular themes</strong>. If you browse the theme directories deep down you would find some really amazing themes that are not already used by hundreds and thousands of blogs. Also make sure that you add your own branding to the theme. Like your own image in header, or your customize it so that it looks uniquely yours. </p>
<p>Caution: Please remember to look at the theme carefully. There are some dirty minded people who add links to adware and spyware sites in wordpress themes. Some people even add their own Google Adsense code in themes. So if you see any such thing you can either remove the code or simply choose someother theme. The best place to look for themes is the <a href="http://wordpress.org/extend/themes/">theme directory at official WordPress site</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://easy-life.sabza.org/2008/09/howto-choose-theme-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

