<?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"
	>

<channel>
	<title>computeraxe.com</title>
	<atom:link href="http://computeraxe.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://computeraxe.com</link>
	<description>wordpress tips and tricks</description>
	<pubDate>Tue, 11 Nov 2008 15:51:41 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>Calendar Pick-A-Date Scripts Reviewed</title>
		<link>http://computeraxe.com/calendar-pick-a-date-scripts-reviewed/</link>
		<comments>http://computeraxe.com/calendar-pick-a-date-scripts-reviewed/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 15:51:41 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[mysql]]></category>

		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=220</guid>
		<description><![CDATA[This week I needed to make a form where the user needed to enter two dates in order to produce a report with the selected start and end dates. What were my options?
I considered writing my own php script where I would have separate pull-down boxes for the day, month and year to assure that [...]]]></description>
			<content:encoded><![CDATA[<p>This week I needed to make a form where the user needed to enter two dates in order to produce a report with the selected start and end dates. What were my options?</p>
<p>I considered writing my own php script where I would have separate pull-down boxes for the day, month and year to assure that there was no mistake as to the actual dates. That would take a little extra format massaging to create the date in MySQL format, so I looked for scripts that others had already written. Who wouldn&#8217;t?</p>
<p>Formatting dates can drive a person crazy. Does &#8216;06-08-2000&#8242; mean June 8th or the 6th of August? Writing for the Web should be universal. The month-day format that we tend to use in the U.S. is confusing to everybody else who uses the day-month format, and vice-versa.</p>
<p>Writing by hand I like to use this format &#8216;12-Mar-2000&#8242; so there is no ambiguity, but that format needs to be converted to &#8216;YYYY-MM-DD&#8217; format when sending dates to MySQL.</p>
<p>So, what are my requirements for such a Date-Picker Script?</p>
<ul>
<li>easy, intuitive for the user</li>
<li>easy for me with output in MySQL format (YYYY-MM-DD)</li>
<li>unrestricted license would be nice</li>
</ul>
<p>I tried a few different date picker scripts and decided upon SpiffyCalendar because it&#8217;s the most advanced, yet easily modified to suit my purposes. Also, there is an established support system via a Yahoo! user group. That&#8217;s really nice, and unexpected.</p>
<p>Here&#8217;s the scripts I tried and the pros and cons for each&#8230;most weren&#8217;t as user-friendly as SpiffyCalendar.</p>
<p>&nbsp;</p>
<h3><a href="http://www.phpclasses.org/browse/package/3611/download/zip.html">PHP Calendar</a></h3>
<ul>PROS</p>
<li>I like the look of this calendar, but it&#8217;s difficult to determine how to modify the calendar other than for css of calendar appearance.</li>
<li>Date output is already in MySQL format: YYYY-MM-DD</li>
</ul>
<ul>CONS</p>
<li>Can&#8217;t select year from calendar unless you click back or forward to the actual month.</li>
<li>Ugly and excessively long query strings in links.</li>
</ul>
<h3><a href="http://www.javascriptkit.com/script/script2/timestamp.shtml">DatePick</a></h3>
<ul>PROS</p>
<li>I like the little calendar icon.</li>
</ul>
<ul>CONS</p>
<li>Can&#8217;t select year from calendar unless you click back or forward to the actual month.</li>
<li>Timestamp is included. Don&#8217;t need it.</li>
<li>Relies on javascript and pop-up window to select date.</li>
<li>Calendar doesn&#8217;t update well when moving from month to month. Part of the calendar doesn&#8217;t get loaded in so all days are not selectable. Have to manually widen window to see all days.</li>
<li>Can&#8217;t select year directly, have to click through months to get to next year.</li>
<li>No directions on how to modify output.</li>
</ul>
<h3><a href="http://www.javascriptkit.com/script/script2/tengcalendar.shtml">DateTimePick</a></h3>
<ul>PROS</p>
<li>I like the little calendar icon.</li>
<li>Can modify output via provided directions.</li>
</ul>
<ul>CONS</p>
<li>Can&#8217;t select year from calendar unless you click back or forward to the actual month.</li>
<li>Relies on javascript and pop-up window to select date.</li>
<li>Calendar doesn&#8217;t update well when moving from month to month. Part of the calendar doesn&#8217;t get loaded in so all days are not selectable. Have to manually widen window to see all days.</li>
<li>Can select year directly, but calendar doesn&#8217;t update well.</li>
</ul>
<h3><a href="http://www.geocities.com/bazillyo/spiffy/calendar/">SpiffyCalendar</a></h3>
<p>Sign up to the Yahoo! Group to download the script.</p>
<ul>PROS</p>
<li>Calendar pops into page, not a separate window.</li>
<li>Can modify output via provided directions.</li>
<li>Can get help at Yahoo! Groups.</li>
<li>Unrestricted license.</li>
<li>Can refresh page containing calendars as link is not modified after picking a date or two.</li>
<li>Highlights holidays, although will have to remove Dec 1st developer&#8217;s birthday. (OK, modified holiday array in script on lines 86-87.)</li>
</ul>
<ul>CONS</p>
<li>Format of date will have to be modified for MySQL. (OK, Added <code>"cal1.dateFormat="yyyy-MM-dd";</code> after instantiation in header for calendar named &#8216;cal1&#8242;.)</li>
<li>Relies on javascript.</li>
<li>Had to modify the images folder location in the .js file to an absolute address, although things worked fine on my local server with a relative address.</li>
</ul>
<p>I&#8217;m sure there are plenty of these date-picker scripts floating around the Web. Do you have a different one to share with us? Leave a comment!</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/calendar-pick-a-date-scripts-reviewed/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Review of Popular WordPress Plugins: WP-Cumulus</title>
		<link>http://computeraxe.com/review-wordpress-plugins-wp-cumulus/</link>
		<comments>http://computeraxe.com/review-wordpress-plugins-wp-cumulus/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 12:38:33 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
		
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=213</guid>
		<description><![CDATA[If you display tags or categories in a sidebar of your WordPress blog, you might like to take a look at the WP-Cumulus plugin. It gets 5 stars by all the reviewers so far and definitely hits the top on the cool factor.
WP-Cumulus displays your tags and/or categories but in a visually-striking way. A rotating [...]]]></description>
			<content:encoded><![CDATA[<p>If you display tags or categories in a sidebar of your WordPress blog, you might like to take a look at the WP-Cumulus plugin. It gets 5 stars by all the reviewers so far and definitely hits the top on the cool factor.</p>
<p>WP-Cumulus displays your tags and/or categories but in a visually-striking way. A rotating cloud of words is presented instead of a plain old list.</p>
<p>Here&#8217;s an example of WP-Cumulus in action:</p>
<p><!-- SWFObject embed by Geoff Stearns geoff@deconcept.com http://blog.deconcept.com/swfobject/ --><script type="text/javascript" src="http://computeraxe.com/wp-content/plugins/wp-cumulus/swfobject.js"></script><div id="wpcumuluscontent"><p style="display:none;">	<a href="http://computeraxe.com/category/browsers/" title="View all posts filed under browsers">browsers</a> (3)<br />
	<a href="http://computeraxe.com/category/css/" title="View all posts filed under CSS">CSS</a> (13)<br />
	<a href="http://computeraxe.com/category/mysql/" title="View all posts filed under mysql">mysql</a> (4)<br />
	<a href="http://computeraxe.com/category/php/" title="View all posts filed under php">php</a> (8)<br />
	<a href="http://computeraxe.com/category/plugins/" title="View all posts filed under Plugins">Plugins</a> (10)<br />
	<a href="http://computeraxe.com/category/software/" title="View all posts filed under Software">Software</a> (20)<br />
	<a href="http://computeraxe.com/category/the-gimp/" title="View all posts filed under The GIMP">The GIMP</a> (8)<br />
	<a href="http://computeraxe.com/category/wordpress/" title="View all posts filed under WordPress">WordPress</a> (41)<br />
</p><p>WP Cumulus Flash tag cloud by <a href="http://www.roytanck.com">Roy Tanck</a> requires Flash Player 9 or better.</p></div><script type="text/javascript">var rnumber = Math.floor(Math.random()*9999999);var so = new SWFObject("http://computeraxe.com/wp-content/plugins/wp-cumulus/tagcloud.swf?r="+rnumber, "tagcloudflash", "350", "200", "9", "#000000");so.addParam("allowScriptAccess", "always");so.addVariable("tcolor", "0x72c8a5");so.addVariable("tcolor2", "0x5a9eb5");so.addVariable("hicolor", "0x72c8a5");so.addVariable("tspeed", "100");so.addVariable("distr", "");so.addVariable("mode", "cats");so.addVariable("categories", "%09%3Ca+href%3D%22http%3A%2F%2Fcomputeraxe.com%2Fcategory%2Fbrowsers%2F%22+title%3D%22View+all+posts+filed+under+browsers%22%3Ebrowsers%3C%2Fa%3E+%283%29%3Cbr+%2F%3E%0A%09%3Ca+href%3D%22http%3A%2F%2Fcomputeraxe.com%2Fcategory%2Fcss%2F%22+title%3D%22View+all+posts+filed+under+CSS%22%3ECSS%3C%2Fa%3E+%2813%29%3Cbr+%2F%3E%0A%09%3Ca+href%3D%22http%3A%2F%2Fcomputeraxe.com%2Fcategory%2Fmysql%2F%22+title%3D%22View+all+posts+filed+under+mysql%22%3Emysql%3C%2Fa%3E+%284%29%3Cbr+%2F%3E%0A%09%3Ca+href%3D%22http%3A%2F%2Fcomputeraxe.com%2Fcategory%2Fphp%2F%22+title%3D%22View+all+posts+filed+under+php%22%3Ephp%3C%2Fa%3E+%288%29%3Cbr+%2F%3E%0A%09%3Ca+href%3D%22http%3A%2F%2Fcomputeraxe.com%2Fcategory%2Fplugins%2F%22+title%3D%22View+all+posts+filed+under+Plugins%22%3EPlugins%3C%2Fa%3E+%2810%29%3Cbr+%2F%3E%0A%09%3Ca+href%3D%22http%3A%2F%2Fcomputeraxe.com%2Fcategory%2Fsoftware%2F%22+title%3D%22View+all+posts+filed+under+Software%22%3ESoftware%3C%2Fa%3E+%2820%29%3Cbr+%2F%3E%0A%09%3Ca+href%3D%22http%3A%2F%2Fcomputeraxe.com%2Fcategory%2Fthe-gimp%2F%22+title%3D%22View+all+posts+filed+under+The+GIMP%22%3EThe+GIMP%3C%2Fa%3E+%288%29%3Cbr+%2F%3E%0A%09%3Ca+href%3D%22http%3A%2F%2Fcomputeraxe.com%2Fcategory%2Fwordpress%2F%22+title%3D%22View+all+posts+filed+under+WordPress%22%3EWordPress%3C%2Fa%3E+%2841%29%3Cbr+%2F%3E%0A");so.write("wpcumuluscontent");</script></p>
<p>Move your cursor over the display and the rotation will change direction and speed. Click on a word once it has a box around it to get a listing of posts containing that tag or filed in that category. Pretty cool, eh?</p>
<p>The only caution here is that you must be running WP 2.3 or later. WP-Cumulus will not work with earlier versions.</p>
<p>Installation follows the typical plugin format. Simply download the plugin, unpack it, and FTP the plugin folder, called wp-cumulus, to your wp-content/plugins directory. </p>
<p>There are three ways to display your WP-Cumulus cloud:</p>
<ul>
<li>In a page or post like above, using the key <code>&#91;WP-CUMULUS&#93;</code>. Features can be modified under Settings/WP-Cumulus.</li>
<li>In your theme anywhere that you insert <code>&lt;?php wp_cumulus_insert(); ?&gt;</code>, probably in a sidebar. Just make sure the sidebar is big enough to display the cloud nicely.</li>
<li>As a widget, via &#8216;Design&#8217;->&#8217;Widgets&#8217;. Edit the widget to modify the size of the cloud and the colors used for the text and background.</li>
</ul>
<p>Really nice, don&#8217;t you think?</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/review-wordpress-plugins-wp-cumulus/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Update WordPress to the Latest Version to Secure Your Blog</title>
		<link>http://computeraxe.com/update-wordpress-latest-version-secure-blog/</link>
		<comments>http://computeraxe.com/update-wordpress-latest-version-secure-blog/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 13:17:22 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
		
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=207</guid>
		<description><![CDATA[Aren&#8217;t you running the latest version of WordPress? Right now, the WP developers are working on version 2.7 and the latest available non-beta version is 2.6.3.
If you&#8217;re not running the latest version of WordPress, why not? There&#8217;s no reason not to - in my mind at least. You and your data will be safer when [...]]]></description>
			<content:encoded><![CDATA[<p>Aren&#8217;t you running the latest version of WordPress? Right now, the WP developers are working on version 2.7 and the latest available non-beta version is 2.6.3.</p>
<p>If you&#8217;re not running the latest version of WordPress, why not? There&#8217;s no reason not to - in my mind at least. You and your data will be safer when you run the most up-to-date version.</p>
<p>Actually, I did think of one exception and that would be if you use a must-have plugin that isn&#8217;t yet updated to run with the latest WordPress, you might want to wait it out for the updated plugin to arrive before updating to the latest WP. I wouldn&#8217;t wait too long because it is known that older versions of WP are targets for the dolts out there who are trying to separate you from your money and identity. <a href="http://computeraxe.com/caution-plugins-dont-work-with-all-wordpress-versions/">Check the plugin&#8217;s FYI box</a> for version compatibility.</p>
<p>Sometimes your installation of WP won&#8217;t be affected by the security or other issues solved in the next release and that depends on the features of WP that you rely upon. For instance, updating from 2.6.2 to 2.6.3 wasn&#8217;t necessary for my blogs because I wasn&#8217;t using the feature that had a security issue fixed. Not updating to 2.6.3 wasn&#8217;t a security risk, so I could put that off because I know another version is on its way shortly.</p>
<p>You can get all the info on the latest updates by scrolling down into your WP Dashboard and reading the WP news links.</p>
<p>Besides being assured that you have the latest and most secure version of WordPress, you&#8217;ll get all the tweaks for a smooth ride.</p>
<p>Updating to the next version of WP isn&#8217;t that bad. Once you run through it a couple of times updating your software is pretty darn easy.</p>
<p>Here&#8217;s the <a href="http://codex.wordpress.org/Upgrading_WordPress_Extended">quick steps to a better WordPress</a> experience:</p>
<ul>
<li>Backup your database. You probably should be doing this anyway, right? Did you know that a plugin will automate backing up your WP site? One click backup - how easy can you get?</li>
<li>Backup your other pages, those not produced by WordPress, by FTPing a copy somewhere. You do have a place for extra storage, don&#8217;t you? If not, try <a href="http://computeraxe.com/recommends/mozy">Mozy Online Storage</a>. They&#8217;ll give you a few free GB to store anything you like so you don&#8217;t glum up your local hard drive.</li>
<li>Deactivate all plugins. With the latest versions of WP this is a one-click step.</li>
<li>Verify that the first three steps were done successfully.</li>
<li>Download the latest WordPress software and unpack the zip file.</li>
<li>Delete the old WP pages, EXCEPT wp-config.php, the wp-content folder, the wp-images folder, your .htaccess and robot.txt files.</li>
<li>Upload the new WP files. Check if there are plugins or themes that you might use with newer dates in the new wp-content folder. Upload any newer files.</li>
<li>Run the upgrade program by visiting <code>http://yourdomain.com/wp-admin/upgrade.php</code>, and clicking on Upgrade.</li>
<li>Sign-in to your WP Dashboard and verify the permalinks are set to your liking.</li>
<li>Activate plugins, as needed.</li>
<li>Feel satisfied that you&#8217;re now safely running the latest and greatest WordPress blogging software.</li>
</ul>
<p>It&#8217;s not difficult to run these updates, and you should be backing up your great content anyway, right? To stay on top of the most recent changes in WP, check out the WP news items in your Dashboard.</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/update-wordpress-latest-version-secure-blog/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Review of Popular WordPress Plugins: WP Super Cache</title>
		<link>http://computeraxe.com/review-wordpress-plugins-wp-super-cache/</link>
		<comments>http://computeraxe.com/review-wordpress-plugins-wp-super-cache/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 15:50:43 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
		
		<category><![CDATA[Plugins]]></category>

		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=199</guid>
		<description><![CDATA[WP Super Cache is a plugin for more advanced WordPress users. Not that running the plugin is difficult, but the installation is a bit different than the typical plugin. If you&#8217;re not comfortable with tinkering around the insides of your Apache or PHP code, you will want to learn about that stuff first.
Poke around Apache.com, [...]]]></description>
			<content:encoded><![CDATA[<p>WP Super Cache is a plugin for more advanced WordPress users. Not that running the plugin is difficult, but the installation is a bit different than the typical plugin. If you&#8217;re not comfortable with tinkering around the insides of your Apache or PHP code, you will want to learn about that stuff first.</p>
<p>Poke around Apache.com, or better yet, read about <a title="Apache mod rewrite" href="http://www.workingwith.me.uk/articles/scripting/mod_rewrite">Apache mod_rewrites</a> in particular.</p>
<p>Need to learn about PHP? RTFM found online: <a title="PHP Manual" href="http://www.php.net/manual/en/">PHP Manual</a>.</p>
<p>So, why is WP Super Cache so popular? Simply put, it will speed up your blog.</p>
<p>WP Super Cache creates a static html page and serves that up to visitors of your blog instead of the dynamic php pages. Visitors who are logged in to your blog, or who have left a comment, will see the dynamic php pages instead of the static, cached pages. By creating and using a static page that is cached the activity on your server will be reduced and it will run faster.</p>
<h3>Installation Tips for WP Super Cache Plugin</h3>
<ul>
<li>Assure that the Apache mod mime and mod rewrite modules are installed.</li>
<li>WordPress fancy permalinks must be enabled.</li>
<li>PHP safe mode should be disabled.</li>
<li>Backup your .htaccess before installing the plugin.</li>
<li>Upload the WP Super Cache folder to your plugins directory, where it will create a &#8216;wp-content/plugins/wp-super-cache/&#8217; directory.</li>
<li>Activate &#8220;WP Super Cache&#8221; on the WP plugins page.</li>
<li>Go to Settings-&gt;WP Super Cache and enable caching.</li>
<li>Visit the <a title="Install WP Super Cache plugin directions." href="http://wordpress.org/extend/plugins/wp-super-cache/installation/">installation page for WP Super Cache</a> to assure that the newly created .htaccess files - there are 2 of them! - were created properly.</li>
</ul>
<p>In my case the .htaccess file in the root directory could not be modified as the permissions on that file were set as read-only. I had to manually add the lines of code from supercache to the existing .htaccess file. The second .htaccess file &#8220;wp-content/cache/.htaccess&#8221; was created correctly by supercache.</p>
<p>Now, after you&#8217;ve installed and activated the WP Super Cache plugin, when your blog gets <em>really</em> popular your server should be able to better handle the influx of new traffic.</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/review-wordpress-plugins-wp-super-cache/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Review of Popular WordPress Plugins: All in One SEO Pack</title>
		<link>http://computeraxe.com/review-wordpress-plugins-all-in-one-seo-pack/</link>
		<comments>http://computeraxe.com/review-wordpress-plugins-all-in-one-seo-pack/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 14:23:30 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
		
		<category><![CDATA[Plugins]]></category>

		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=189</guid>
		<description><![CDATA[The All in One SEO Pack WordPress Plugin makes it a simple matter to specify the Meta statements for WordPress blog pages. WordPress may produce generic Meta statements for each page without this very useful plugin.
Search engines may or may not consider Meta statements when listing your sites in the search engine results pages, but [...]]]></description>
			<content:encoded><![CDATA[<p>The <a title="All in One SEO Pack WP Plugin" href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">All in One SEO Pack WordPress Plugin</a> makes it a simple matter to specify the Meta statements for WordPress blog pages. WordPress may produce generic Meta statements for each page without this very useful plugin.</p>
<p>Search engines may or may not consider Meta statements when listing your sites in the search engine results pages, but if they do wouldn&#8217;t you want your blog&#8217;s meta data to be the best it can be? Since search engines send traffic to your blog, you should be satisfying those search engines by providing them with the most accurate information about your blog.</p>
<p>To be the most effective Meta statements should be page-specific, so that each page has a meta title, meta description and meta keywords that reflect the content of each page. Using the All in One SEO Pack plugin for WordPress blogs simplifies the creation of post- or page-specific Meta statements.</p>
<p>After you have installed and activated the All in One SEO Pack plugin, scan down the write a new post page and look for the <strong>All in One SEO Pack</strong> feature. Click on the right-pointing triangle to open this feature.</p>
<div id="attachment_191" class="wp-caption aligncenter" style="width: 310px"><a href="http://computeraxe.com/wp-content/uploads/2008/10/wp-plugin-allseo.jpg"><img class="size-medium wp-image-191" title="All in One SEO Plugin Feature" src="http://computeraxe.com/wp-content/uploads/2008/10/wp-plugin-allseo-300x131.jpg" alt="All in One SEO Plugin Feature for WordPress" width="300" height="131" /></a><p class="wp-caption-text">All in One SEO Plugin Feature for WordPress</p></div>
<p>Fill in your keyword-laden title and description making sure not to get too wordy. List your keywords for that post separated by commas.</p>
<p>If there is some reason to turn off this plugin, you can do it <em>per post</em> by ticking the box next to &#8220;Disable on this page/post&#8221;.</p>
<p>One nice thing about using Meta descriptions is that search engines may use your carefully written description in the Meta statement, instead of grabbing the first few words of your post, when describing your site in the search results listings.</p>
<p>Use the <strong>All in One SEO Pack plugin</strong> to entice new site visitors by writing your own Meta statements instead of leaving it up to chance.</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/review-wordpress-plugins-all-in-one-seo-pack/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Install WordPress Plugins</title>
		<link>http://computeraxe.com/how-to-install-wordpress-plugins/</link>
		<comments>http://computeraxe.com/how-to-install-wordpress-plugins/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 14:03:24 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
		
		<category><![CDATA[Plugins]]></category>

		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=182</guid>
		<description><![CDATA[Plugins change the default behavior of the WordPress software that you can download from WordPress.org.
Plugins reside in the plugins directory inside the wp-content directory of your WordPress installation.
To install a new plugin for WordPress all you have to do is FTP the plugin&#8217;s folder to the plugins directory.
Download and unpack the plugin from the WordPress [...]]]></description>
			<content:encoded><![CDATA[<p>Plugins change the default behavior of the WordPress software that you can download from WordPress.org.</p>
<p>Plugins reside in the plugins directory inside the wp-content directory of your WordPress installation.</p>
<p>To install a new plugin for WordPress all you have to do is FTP the plugin&#8217;s folder to the plugins directory.</p>
<p>Download and unpack the plugin from the WordPress Plugin Directory, then upload to your site. Pay attention to the Installation tab on the plugin&#8217;s page in the WP directory. Some plugins need a few extra steps to be completed, but most follow the standard installation.</p>
<div id="attachment_183" class="wp-caption alignleft" style="width: 310px"><a href="http://computeraxe.com/wp-content/uploads/2008/10/wp-plugin-install.jpg"><img class="size-large wp-image-183" title="WordPress Plugin Installation" src="http://computeraxe.com/wp-content/uploads/2008/10/wp-plugin-install-300x77.jpg" alt="WordPress Plugin Installation Steps" width="300" height="77" /></a><p class="wp-caption-text">WordPress Plugin Installation Steps</p></div>
<p>You may be directed to the plugin&#8217;s homepage for further instructions on how to install that particular plugin.</p>
<p>Also, you&#8217;ll need to activate the plugin before it will function. Go to the plugins tab from the WP Dashboard, find your new plugin in the list of inactive plugins, and click on <strong>Activate</strong>.</p>
<p>You&#8217;re all set! Your new plugin may have a management page, so check the Manage Tab of the WP Dashboard for a new link for managing your new plugin.</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/how-to-install-wordpress-plugins/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Caution: Plugins Don&#8217;t Work with All WordPress Versions</title>
		<link>http://computeraxe.com/caution-plugins-dont-work-with-all-wordpress-versions/</link>
		<comments>http://computeraxe.com/caution-plugins-dont-work-with-all-wordpress-versions/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 13:27:57 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
		
		<category><![CDATA[Plugins]]></category>

		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=176</guid>
		<description><![CDATA[Not all plugins are created equal. The most widely used plugins will work with the most versions of WordPress and especially with the most recent version of WP.
When you pick up a new plugin from WordPress, check the FYI box at the top right of the plugin page.
Note the version of WordPress that is required [...]]]></description>
			<content:encoded><![CDATA[<p>Not all plugins are created equal. The most widely used plugins will work with the most versions of WordPress and especially with the most recent version of WP.</p>
<p>When you pick up a new <a title="WordPress Plugins Directory" href="http://wordpress.org/extend/plugins/">plugin from WordPress</a>, check the FYI box at the top right of the plugin page.</p>
<div id="attachment_178" class="wp-caption aligncenter" style="width: 231px"><a href="http://computeraxe.com/wp-content/uploads/2008/10/wp-plugin-fyi1.jpg"><img class="size-medium wp-image-178" title="WordPress Plugin FYI Box" src="http://computeraxe.com/wp-content/uploads/2008/10/wp-plugin-fyi1.jpg" alt="WordPress Plugin FYI Box" width="221" height="238" /></a><p class="wp-caption-text">WordPress Plugin FYI Box</p></div>
<p>Note the version of WordPress that is required for your plugin to work properly, if at all. Also, it may be important to note the highest version of WP that is compatible with the plugin.</p>
<p>The Plugin FYI Box also gives links to the author&#8217;s homepage and the plugin&#8217;s homepage so that you can find out a lot more about the plugin.</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/caution-plugins-dont-work-with-all-wordpress-versions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Review of Popular WordPress Plugins: Akismet</title>
		<link>http://computeraxe.com/review-wordpress-plugins-akismet/</link>
		<comments>http://computeraxe.com/review-wordpress-plugins-akismet/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 13:18:26 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
		
		<category><![CDATA[Plugins]]></category>

		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=172</guid>
		<description><![CDATA[The only true plugin that comes standard with WordPress software is Akismet. And for good reason. The developers of WordPress wanted to keep the basic blogging platform as lean as possible while allowing for extension of that software into as many directions as possible.
Plugins are bits of software that modify the out-of-the-box functionality of the [...]]]></description>
			<content:encoded><![CDATA[<p>The only true plugin that comes standard with WordPress software is <a title="Akismet WP Plugin" href="http://wordpress.org/extend/plugins/akismet/">Akismet</a>. And for good reason. The developers of WordPress wanted to keep the basic blogging platform as lean as possible while allowing for extension of that software into as many directions as possible.</p>
<p>Plugins are bits of software that modify the out-of-the-box functionality of the basic WordPress blog.</p>
<p>What does Akismet do? The Akismet plugin catches comment and trackback spam.</p>
<p>We all need a way to deal with spam left in comments or we&#8217;d spend waaaay too much time reading and deleting the hundreds and thousands of machine-generated comments.</p>
<p>Akismet proudly keeps track of the number of spam comments it has arrested from your blog. One of mine has been saved from over 32,000 spammy comments, so far!</p>
<p>One of the great things about Akismet is that once you set it, you can forget it. At first I checked to see what comments were being caught as spam, but I got over it real fast. Once in a while a spam comment slips through, but not very often. Just mark it as spam and poof! - it&#8217;s a goner.</p>
<p>In order to run the Akismet plugin you will need to get a <a title="WordPress API Keys" href="http://wordpress.com/api-keys/">WordPress.com API key</a>. All you have to do is sign up for a WordPress account. Part of that process is to check your email for details.</p>
<p>After you have your key - it&#8217;s listed on your profile page - enter it on the Akismet Configuration page that you can reach via the plugins tab of your WordPress Dashboard.</p>
<p>Stay tuned for more WordPress Plugin reviews.</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/review-wordpress-plugins-akismet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WordPress Plugins Winning Popularity Contest</title>
		<link>http://computeraxe.com/wordpress-plugins-winning-popularity-contest/</link>
		<comments>http://computeraxe.com/wordpress-plugins-winning-popularity-contest/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 16:29:40 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
		
		<category><![CDATA[Plugins]]></category>

		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=165</guid>
		<description><![CDATA[When it comes to people I&#8217;m not one for popularity contests. I couldn&#8217;t care less who is more popular or who&#8217;s the brightest star in Hollywood or Bollywood. Right now, USA has the every-four-years-popularity-contest in running for President and a host of smaller public office positions. Good luck, Mr. Obama! Not that you really need [...]]]></description>
			<content:encoded><![CDATA[<p>When it comes to people I&#8217;m not one for popularity contests. I couldn&#8217;t care less who is more popular or who&#8217;s the brightest star in Hollywood or Bollywood. Right now, USA has the every-four-years-popularity-contest in running for President and a host of smaller public office positions. Good luck, Mr. Obama! Not that you really need it now.</p>
<p>Start talking about popular features of any practical device and it interests me a little more. Popular with respect to people means glitz and glamour, but popular with respect to machines means useful and practical. I&#8217;m more of a granola girl, so the practical stuff is waaaay more interesting than the glitzy fluff.</p>
<p>WordPress has already claimed the winning votes to become the best blogging platform anywhere. But what about all those different ways that we can extend the basic blogging software?</p>
<p>What are the most popular, er..useful, plugins for WordPress blogs?</p>
<p>Looking at the WordPress Plugin Directory, the top 6 plugins listed as the most popular include:</p>
<ul>
<li>Akismet</li>
<li>All in One SEO Pack</li>
<li>WP Super Cache</li>
<li>cforms II - contact form</li>
<li>NextGEN Gallery</li>
<li>Google XML Sitemaps</li>
</ul>
<p>These popular plugins are all rated 4/5 stars or better by the people that use them and each has been downloaded hundreds of thousands of times. Sounds good to me!</p>
<p>I&#8217;ll be reviewing a number of WP plugins in the upcoming weeks, so stay tuned!</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/wordpress-plugins-winning-popularity-contest/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WordPress Plugins By Default</title>
		<link>http://computeraxe.com/wordpress-plugins-by-default/</link>
		<comments>http://computeraxe.com/wordpress-plugins-by-default/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 13:21:00 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
		
		<category><![CDATA[Plugins]]></category>

		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=158</guid>
		<description><![CDATA[Different WordPress blogs will take advantage of different plugins depending on the needs of each blog, but can we find a core group of plugins that &#8220;should&#8221; be used on all WordPress blogs?
I&#8217;m sure the answer to that question is a big fat NO. And that&#8217;s because each blog is unique!
I looked through my blogs, [...]]]></description>
			<content:encoded><![CDATA[<p>Different WordPress blogs will take advantage of different plugins depending on the needs of each blog, but can we find a core group of plugins that &#8220;should&#8221; be used on all WordPress blogs?</p>
<p>I&#8217;m sure the answer to that question is a big fat NO. And that&#8217;s because each blog is unique!</p>
<p>I looked through my blogs, including blogs that I write for fun and ones that I maintain for clients, to see which plugins are common to all. The list is a short one.</p>
<ul>
<li>Akismet - best spam catcher of them all</li>
<li>FeedBurner FeedSmith - best way to manage your blog feeds</li>
<li><a href="http://computeraxe.com/recommends/maxping" style=""  rel="nofollow" onmouseover="self.status='http://computeraxe.com/recommends/maxping';return true;" onmouseout="self.status=''">MaxBlogPress Ping Optimizer</a> - best way to ping your blog</li>
</ul>
<p>Akismet comes along with WordPress by default, which makes it the <em>de facto</em> standard way of managing spam comments and trackbacks left on your blog. Piece of cake. Get your <a title="WP API Key" href="http://wordpress.com/api-keys/" target="_blank">WordPress.com API Key</a> so you can set up Akismet now.</p>
<p>Register your blog with FeedBurner via the FeedBurner FeedSmith plugin and you&#8217;ll be able to see how many people subscribe to your blog feed and other crazy statistics about your site visitors. FeedBurner makes it easy to analyze your site traffic.</p>
<p>MaxBlogPress offers several plugins worth checking out, especially the <a href="http://computeraxe.com/recommends/maxping" style=""  rel="nofollow" onmouseover="self.status='http://computeraxe.com/recommends/maxping';return true;" onmouseout="self.status=''">MaxBlogPress Ping Optimizer</a>. Pinging your blog lets the world know that you have something new on your site, which is a great way to get your message out there. Trouble can arise when you edit blog posts, or post-date your blog entries, as each time you publish your content or save edited content the ping service gets hit again. Multiple pings in a row may look like blog spam and you really don&#8217;t want your blog properties to be associated with spam in any way, shape or form. Use MaxBlogPress Ping Optimizer to take control of pinging your blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/wordpress-plugins-by-default/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
