<?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>Extreme Trix &#187; PHP</title>
	<atom:link href="http://extremetrix.com/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://extremetrix.com</link>
	<description>Tricky site for all tricksters</description>
	<lastBuildDate>Sat, 10 Jul 2010 13:51:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>What I did to save Extreme Trix from SEO problems?</title>
		<link>http://extremetrix.com/what-i-did-to-save-extreme-trix-from-seo-problems/</link>
		<comments>http://extremetrix.com/what-i-did-to-save-extreme-trix-from-seo-problems/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 13:10:13 +0000</pubDate>
		<dc:creator>Ankit</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Extreme Trix]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Site News]]></category>
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://extremetrix.com/?p=1884</guid>
		<description><![CDATA[<img align="left" hspace="5" width="130" src="http://extremetrix.com/blog/wp-content/uploads/2009/12/QuestionMark.gif" class="alignleft wp-post-image tfe" alt="Question Mark" title="Question Mark" />
			
				
			
		
You may remember that Extreme Trix was deleted on 16th of November and it took me almost complete two days to make it live again without any problem, it was entirely my fault for not keeping a backup, but from now onwards I have started using WP-DB-Backup plug-in which helps me in getting daily backup [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fextremetrix.com%2Fwhat-i-did-to-save-extreme-trix-from-seo-problems%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fextremetrix.com%2Fwhat-i-did-to-save-extreme-trix-from-seo-problems%2F&amp;source=ExtremeTrix&amp;style=normal&amp;service=TinyURL.com&amp;hashtags=Blog,Extreme+Trix,Site+News" height="61" width="50" /><br />
			</a>
		</div>
<p>You may remember that Extreme Trix was deleted on 16th of November and it took me almost complete two days to make it live again without any problem, it was entirely my fault for not keeping a backup, but from now onwards I have started using WP-DB-Backup plug-in which<span id="more-1884"></span> helps me in getting daily backup easily. When Extreme Trix was deleted the biggest challenge to me was to solve SEO problems. Actually I had two installations of WordPress in my Database one was of WordPress 2.7.1 and second one was of WordPress 2.8.1. I wanted to remove WordPress 2.7.1 as ET was powered by 2.8.1 and the blog which was powered by 2.7.1 was just a test blog which was consuming my free space and making ET very slow.</p>
<p style="text-align: center;"><a href="http://extremetrix.com/blog/wp-content/uploads/2009/12/QuestionMark.gif"><img class="aligncenter size-full wp-image-1905" title="Question Mark" src="http://extremetrix.com/blog/wp-content/uploads/2009/12/QuestionMark.gif" alt="Question Mark" width="224" height="224" /></a></p>
<p>While deleting that first installation of WordPress by mistake second one (blog directory) also got deleted where Extreme Trix was installed. <img src='http://extremetrix.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  I lost my everything images, videos, docs and even some articles too. Thanks to Farhan and Prateek bro who helped me in finding back images and permalinks of the posts and pages from Google Cache. At last after continuous hard work of five hours my images and permalinks were restored.</p>
<p>The second challenge for me was to redirect some pages and my forum (my forum was also deleted so I installed a new one) be directory to the new one. I searched on Google about how to redirect PHP based pages and finally got a solution. First my login page was www.extremetrix.com/wp-login.php but now its www.extremetrix.com/blog/wp-login.php. To redirect old page to new one I simply made a new PHP file and added this piece of code -</p>
<pre lang="php">&lt; ?php header( 'Location: http://extremetrix.com/blog/wp-login.php' ) ; ?&gt;</pre>
<p>then saved it with name wp-login.php in my root directory.</p>
<p>Firstly when I launched Extreme Trix&#8217;s forum, it was with permalink forum, but when I re-installed it I changed the permalink to &#8220;support&#8221; instead of forum. To redirect forum to support what I did is just made a blank directory with name &#8220;forum&#8221; and made an index.htm file. In that index file I added a piece of HTML code (301 redirection code) which redirects and tells the crawler not to index forum directory. The code was -</p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;script LANGUAGE="JavaScript"&gt;
&lt;!--
window.location.replace("http://www.extremetrix.com/support");
--&gt;
&lt;/script&gt;
&lt;noscript&gt;
&lt;meta http-equiv="Refresh" content="10; URL=http://www.extremetrix.com/support"/&gt;
&lt;meta http-equiv="expires" content="10"/&gt;
&lt;meta name="Description" content="301 moved permanently"/&gt;
&lt;META NAME="ROBOTS" CONTENT="NOINDEX, FOLLOW"/&gt;
&lt;META NAME="GOOGLEBOT" CONTENT="NOINDEX, FOLLOW"/&gt;
&lt;/noscript&gt;
&lt;title&gt;301 moved permanently&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;center&gt;
&lt;h1&gt;ET - Forum&lt;/h1&gt;
&lt;p&gt;has been moved to new address&lt;/p&gt;
&lt;a href=" http://www.extremetrix.com/support/"&gt; &lt;h1&gt;ET - Support&lt;/h1&gt;&lt;/a&gt;
&lt;p&gt;Sorry for inconvenience... &lt;/p&gt;
&lt;/center&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>Last challenge for me was to find a free SEO optimized theme for New version of Extreme Trix, I didn&#8217;t want again use my old theme because everything was new on my blog and moreover it was a bit un-professional. After reading reviews of 5-6 free themes the best theme I found was Swift by Satish bro. That time I was expecting a spike in my traffic so I switched to it as it was light and had very cool features.</p>
<p>Well that&#8217;s all! It was the entire story how I made Extreme Trix up again and solved SEO errors. If you also have such a drastic blogging story do share with us. <img src='http://extremetrix.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://extremetrix.com/what-i-did-to-save-extreme-trix-from-seo-problems/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Top 10 WordPress Plug-ins to make your site more user friendly!</title>
		<link>http://extremetrix.com/top-10-wordpress-plug-ins-to-make-your-site-more-user-friendly/</link>
		<comments>http://extremetrix.com/top-10-wordpress-plug-ins-to-make-your-site-more-user-friendly/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 12:55:52 +0000</pubDate>
		<dc:creator>Ankit</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://extremetrix.com/?p=1190</guid>
		<description><![CDATA[<img align="left" hspace="5" width="130" src="http://extremetrix.com/blog/wp-content/uploads/2009/11/Wordpress-150x150.png" class="alignleft wp-post-image tfe" alt="" title="WordPress" />
			
				
			
		
We had already covered too many articles under Blogging category about SEO,  famous blogging software WordPress and also covered an article about Google&#8217;s Blogger in which I told you all about its history and tutorial to set-up custom domain name. So I hope till now you all will be familiar with WordPress Plug-ins. Don&#8217;t worry [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fextremetrix.com%2Ftop-10-wordpress-plug-ins-to-make-your-site-more-user-friendly%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fextremetrix.com%2Ftop-10-wordpress-plug-ins-to-make-your-site-more-user-friendly%2F&amp;source=ExtremeTrix&amp;style=normal&amp;service=TinyURL.com&amp;hashtags=Tutorials,WordPress" height="61" width="50" /><br />
			</a>
		</div>
<p><img class="alignleft size-thumbnail wp-image-1720" title="WordPress" src="http://extremetrix.com/blog/wp-content/uploads/2009/11/Wordpress-150x150.png" alt="" width="90" height="90" />We had already covered too many articles under Blogging category about SEO,  famous blogging software WordPress and also covered an <a href="http://extremetrix.com/how-to-set-up-custom-domain-for-blogger/" target="_blank">article</a> about Google&#8217;s Blogger in which I told you all about its history and tutorial to set-up custom domain name.<span id="more-1190"></span> So I hope till now you all will be familiar with WordPress Plug-ins. Don&#8217;t worry if you are new to WordPress and yet not familiar with plug-ins, I am once again going to explain it here.</p>
<blockquote><p>Plug-ins are PHP based  tools which extend and expand the functions of  WordPress. You can add plugins by just uploading it to your wp-content &gt; plugins folder that is in your WordPress directory. <a href="http://extremetrix.com/blog/go/Install-Plugins/" target="_blank">More info</a>.</p></blockquote>
<p>Today in this article I am going  to review Top 10 WordPress Plug-ins which I had myself used on Extreme Trix to make WordPress powered blogs more user friendly.</p>
<p><em>So here we go -</em></p>
<ol>
<li><strong><a href="http://extremetrix.com/blog/go/adsmgr/" target="_blank">Advertising Manager</a> &#8211; </strong>The best advertisement managing plug-in for WordPress I have ever used! Its having all the features that a publisher looks for. It manages our Google Adsense and other ad network accounts, and allows us to easily place the ads either within our WordPress blog posts, or within our WordPress theme/template.</li>
<li><a href="http://extremetrix.com/blog/go/atd/" target="_blank"><strong>After the Deadline</strong></a> &#8211; It is free for our personal use plug-in that check writing errors and offer smart suggestions for our blogs. It uses artificial intelligence and natural language processing technology to find our writing errors and offer smart suggestions.</li>
<li><strong><a href="http://extremetrix.com/blog/go/RDP/" target="_blank">AJAX Random Posts</a></strong><a href="http://extremetrix.com/blog/go/RDP/" target="_blank"> </a>- This plugins display a highly customizable list of random posts. There are some plugins that server a similar purpose already, if they&#8217;re used along with cache <a href="http://extremetrix.com/blog/go/Install-Plugins/" target="_blank">plug-ins</a>, the list is cached also, and remains the same over thousands of views, thus not so &#8220;random&#8221;. AJAX Random Posts, as its name says, uses AJAX technology to retrieve the posts and overcome the problem: now each page refresh comes with one different list!</li>
<li><strong>Akismet</strong> &#8211; It checks your comments against the Akismet web service to see if they look like spam or not. You need a <a style="outline-width: 0px; outline-style: initial; outline-color: initial; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; color: #21759b; word-wrap: break-word; text-decoration: none; background-position: initial initial; padding: 0px; margin: 0px; border: 0px initial initial;" href="http://wordpress.com/api-keys/" target="_blank">WordPress.com API key</a>to use it. You can review the spam it catches under &#8220;Comments.&#8221; To show off your Akismet stats just put <code style="margin-top: 0px; margin-right: 1px; margin-bottom: 0px; margin-left: 1px; padding-top: 1px; padding-right: 3px; padding-bottom: 1px; padding-left: 3px; outline-width: 0px; outline-style: initial; outline-color: initial; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: #eaeaea; font-family: Consolas, Monaco, Courier, monospace; font-size: 11px; word-wrap: break-word; background-position: initial initial; border: 0px initial initial;">&lt;?php akismet_counter(); ?&gt;</code> in your template.</li>
<li><strong><a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/" target="_blank">All in One SEO Pack</a></strong> &#8211; It&#8217;s a nice plug-in with inbuilt option for entire required field for SEO optimization of any post or page.</li>
<li><strong><a href="ttp://www.jonbishop.com/socialize" target="_blank">Socialize</a></strong> – The plugin was designed to make it very easy to manage. Instead of adding new meta keys, like other plugins require, there is an additional panel in your post&#8217;s admin page that allows you to select which bookmarks you want to display. This is to encourage people to choose more relevant bookmarks for their posts.</li>
<li><strong><a href="http://www.blogsdna.com/5038/wp-thumbie-wordpress-plugin-from-blogsdna-lab.htm" target="_blank">Wp-Thumbie</a> &#8211; </strong>This plugin will show related posts based in context and you can configure lots of settings from plugin option page. You can make changes in CSS and design from the plugin editor page. Though even if you don’t this plugin will look good to start.</li>
<li><a href="http://wordpress.org/extend/plugins/gocodes/" target="_blank"><strong>GoCodes</strong></a> &#8211; It is simple WordPress plugin which can be used to hide your affiliate link and make them look like a simple link.</li>
<li><a href="http://devilsbackyard.com/downloads/?did=5" target="_blank"><strong>About the Author Box</strong></a> &#8211; Displays a sleek &#8220;about the author&#8221; box in the single posts page. This is very useful for team blog having too many writers.</li>
<li><strong><a href="http://widgets.fbshare.me/plugins/wordpress/sharecount" target="_blank">Facebook Sharecount</a></strong> &#8211; The Facebook Share count plugin shows the number of shares on Facebook your posts get and allows users to share it themselves. This plugin is based on the (excellent) <a style="outline-width: 0px; outline-style: initial; outline-color: initial; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; color: #21759b; word-wrap: break-word; text-decoration: none; background-position: initial initial; padding: 0px; margin: 0px; border: 0px initial initial;" href="http://www.backtype.com/plugins/tweetcount" target="_blank">Backtype Tweetcount</a> plugin.</li>
</ol>
<p style="text-align: center;"><em>New Blogger?</em></p>
<p>If you are totally new to blogging I will suggest you to read these articles on blogging.</p>
<ul>
<li><a href="http://extremetrix.com/learn-wordpress-in-three-days/" target="_self">Learn WordPress in three days!</a></li>
<li><a href="http://extremetrix.com/how-to-install-wordpress-and-wordpress-mu-on-local-host/" target="_self">Tutorial &#8211; to install WordPress and WordPress MU on local server.</a></li>
<li><a href="http://extremetrix.com/how-to-transform-wordpress-mu-into-cool-social-network/" target="_self">How to transform WPMU into social network.</a></li>
<li><a href="http://extremetrix.com/how-to-choose-edit-upload-themes-and-plugins/" target="_self">How to choose, edit, upload themes and plug-ins?</a></li>
<li><a href="http://extremetrix.com/what-is-seo-how-to-optimize-wordpress-for-it/" target="_self">What is SEO? How to optimize it for WordPress?</a></li>
<li><a href="http://extremetrix.com/top-10-blogging-tipsarticles-for-new-bloggers/" target="_blank">Top 10 blogging tips/articles for new bloggers.</a></li>
<li><a href="http://extremetrix.com/extreme-trix-first-round-up/" target="_self">Why round up of articles is so important for our blogs?</a></li>
</ul>
<p><em><strong><small style="font-size: 10px;">I hope that you liked my article, if you really enjoyed reading it do read other articles filled under <a style="color: #2970a6; text-decoration: underline;" title="View all posts filed under Blogging" href="http://extremetrix.com/category/blogging/" target="_blank">Blogging</a> category. Comments, tweets and Diggs will be appreciated <span style="font-weight: normal;"> <img src='http://extremetrix.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span></small></strong></em><strong></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://extremetrix.com/top-10-wordpress-plug-ins-to-make-your-site-more-user-friendly/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>How to track the IP of visitors in your website without any plugin or script?</title>
		<link>http://extremetrix.com/how-to-track-the-ip-of-visitors-in-your-website-without-any-plugin-or-script/</link>
		<comments>http://extremetrix.com/how-to-track-the-ip-of-visitors-in-your-website-without-any-plugin-or-script/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 12:16:45 +0000</pubDate>
		<dc:creator>Ankit</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://extremetrix.com/?p=699</guid>
		<description><![CDATA[<img align="left" hspace="5" width="130" src="http://extremetrix.com/blog/wp-content/uploads/2009/11/Wordpress-150x150.png" class="alignleft wp-post-image tfe" alt="" title="WordPress" />
			
				
			
		
We all know that using lots of unnecessary plug ins and scripts will slow down our site performance, or may cause internal server error (if you are on shared web hosting chances of showing 500 Error is quite high). That&#8217;s why its always advised to not to use unnecessary plug ins and scripts on your [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fextremetrix.com%2Fhow-to-track-the-ip-of-visitors-in-your-website-without-any-plugin-or-script%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fextremetrix.com%2Fhow-to-track-the-ip-of-visitors-in-your-website-without-any-plugin-or-script%2F&amp;source=ExtremeTrix&amp;style=normal&amp;service=TinyURL.com&amp;hashtags=Programming" height="61" width="50" /><br />
			</a>
		</div>
<p><img class="alignleft size-thumbnail wp-image-1720" title="WordPress" src="http://extremetrix.com/blog/wp-content/uploads/2009/11/Wordpress-150x150.png" alt="" width="90" height="90" />We all know that using lots of unnecessary plug ins and scripts will slow down our site performance, or may cause internal server error (if you are on shared web hosting chances of showing 500 Error is quite high). That&#8217;s why its always advised to not to use unnecessary plug ins and scripts on your site/blog. Today I&#8217;m gonna tell you how to track the IP address of visitors in your website without any plug in or script.<span id="more-699"></span></p>
<pre lang="php">
< ?php

    $ipaddress = $_SERVER['REMOTE_ADDR'];
    $date = date ("M dS H:i:s");

    $message = "$page _ $ipaddress _ $date\n";

    $File = "track.txt";
    $Open = fopen($File, "a+");
    if ($Open){

    fwrite($Open, "$message");
    fclose ($Open);
    }

    ?>
</pre>
<p>You can easily track IP address of visitors in your website by just adding this PHP code, the IP&#8217;s tracked are saved in a log file named <strong>&#8220;track.txt</strong>&#8221; in the server. After adding this PHP code make track.txt page writable by PHP.</p>
]]></content:encoded>
			<wfw:commentRss>http://extremetrix.com/how-to-track-the-ip-of-visitors-in-your-website-without-any-plugin-or-script/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to choose, edit, upload themes and plugins?</title>
		<link>http://extremetrix.com/how-to-choose-edit-upload-themes-and-plugins/</link>
		<comments>http://extremetrix.com/how-to-choose-edit-upload-themes-and-plugins/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 05:23:32 +0000</pubDate>
		<dc:creator>Ankit</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[LW3]]></category>

		<guid isPermaLink="false">http://extremetrix.com/?p=622</guid>
		<description><![CDATA[<img align="left" hspace="5" width="130" src="http://extremetrix.com/blog/wp-content/uploads/2009/11/Wordpress-150x150.png" class="alignleft wp-post-image tfe" alt="" title="WordPress" />
			
				
			
		
Hello guys! I am back again with second post of this series today in this post&#8217;s I am going to tell you how to edit, upload themes and plug ins in WordPress. Before choosing a theme for your own WordPress blog, you should choose your niche, Now what&#8217;s niche?
- Niche is a role an organism [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fextremetrix.com%2Fhow-to-choose-edit-upload-themes-and-plugins%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fextremetrix.com%2Fhow-to-choose-edit-upload-themes-and-plugins%2F&amp;source=ExtremeTrix&amp;style=normal&amp;service=TinyURL.com&amp;hashtags=Blog,Blogging,Internet,LW3,WordPress" height="61" width="50" /><br />
			</a>
		</div>
<p><img class="alignleft size-thumbnail wp-image-1720" title="WordPress" src="http://extremetrix.com/blog/wp-content/uploads/2009/11/Wordpress-150x150.png" alt="" width="90" height="90" />Hello guys! I am back again with second post of this series today in this post&#8217;s I am going to tell you how to edit, upload themes and plug ins in WordPress. Before choosing a theme for your own WordPress blog, you should choose your niche, <strong>Now what&#8217;s niche?<span id="more-622"></span></strong></p>
<blockquote><p>- Niche is a role an organism plays in its inviornment. In simple blogging language its the topic on which you blog. For example- I mainly blog about tricks,tips,blogging,technology so my niche is &#8211; Technology,Tricks,Blogging.</p></blockquote>
<p>According to your niche choose your theme and plug ins to customize your <a href="http://extremetrix.com/category/wordpress/" target="_blank">WordPress</a> blogs, if you are having difficulty to choose your theme and need some tips for that, then read <a href="http://buddingbloggers.com/2009/06/tips-to-choose-a-theme-for-your-wordpress-powered-blog/" target="_blank">this article</a> posted by Satish of budding blogger (the guy who sponsored me hosting and free domain). Now if you got a right theme that suits your niche, then just open your themes folder in <span>wp</span>-content in your WordPress folder and add (upload) the theme you want there, Now login to your WordPress blog and click on appearance &gt; themes, click on your theme and just activate it.</p>
<p>For WordPress <span title="Do you mean &lt;i&gt;m&lt;b&gt;y&lt;/b&gt;&lt;/i&gt;?">MU</span> <span title="There should not be a space before this punctuation mark.">:</span> before activating any theme for your WordPress <span title="Do you mean &lt;i&gt;m&lt;b&gt;y&lt;/b&gt;&lt;/i&gt;?">MU</span> blog login to your local host site &#8211; http://localhost.localdomain/wordpress-<span>mu</span> and activate theme from WordPress <span title="Do you mean &lt;i&gt;m&lt;b&gt;y&lt;/b&gt;&lt;/i&gt;?">Mu</span> themes admin section (http://localhost.localdomain/network/<span title="Spelling error - suggestions: WP, PW, P, p, wop, wpm, PP, pp, Twp, twp, AP, DP, GP, HP, JP, KP, LP, MP, NP, Np, RP, Sp, VP, hp, mp, op, up, WA, WC, WI, WV, Wm, Wu, we, wk, wt, W's">wp</span>-admin/<span title="Spelling error - suggestions: wpm, PM, Pm, pm, emu, Pu, WP, Wm, mu, ppm, womb, PMS, PMs, Pru, rpm, Pm's, ppm's">wpmu</span>-themes.<span title="Spelling error - suggestions: Phip, PP, pH, pp, HP, hp, phi, PhD, Pip, pap, pep, pip, pop, pup, pH's">php</span>) and then go to appearance &gt; themes and activate your theme.</p>
<p>You can easily customize your themes by editing them, but before you edit any theme you should save your copy of your theme and you should know basic PHP and HTML to edit your theme, Well don&#8217;t worry if you don&#8217;t know PHP or HTML, you can easily extend and expand the functionality of WordPress with help of plug ins.</p>
<p><strong>If you are new and don&#8217;t know what are plugins then wait let me explain you first.</strong></p>
<blockquote><p><em>- Plugins are PHP based (mainly) tools which extend and expand the functionality of WordPress. You can add plugins by just uploading it to your wp-content &gt; plugins folder which is in your WordPress directory. </em></p></blockquote>
<p>Before you add any plug in, you should check whether that plug in is compatible with your WordPress version or not, if it is not compatible with your WordPress version please don&#8217;t upload that to your server cause it may not work or crash your WordPress.</p>
<p>In next post we will learn about Buddy Press plugin which tranforms the default WordPress MU installation into a cool social networking site like Facebook or Orkut. <img src='http://extremetrix.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> <em><strong></strong></em></p>
]]></content:encoded>
			<wfw:commentRss>http://extremetrix.com/how-to-choose-edit-upload-themes-and-plugins/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
