<?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>computeraxe</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>
	<lastBuildDate>Thu, 26 Aug 2010 15:30:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Commands for Cron Jobs</title>
		<link>http://computeraxe.com/commands-for-cron-jobs/</link>
		<comments>http://computeraxe.com/commands-for-cron-jobs/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 18:46:30 +0000</pubDate>
		<dc:creator>axe</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=476</guid>
		<description><![CDATA[I got totally lost the other day when I couldn&#8217;t get a cron job to work. Now, what path was that? WordPress Database Backup is a plugin that I&#8217;d relied on in the past to keep a randomly backed up &#8230; <a href="http://computeraxe.com/commands-for-cron-jobs/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I got totally lost the other day when I couldn&#8217;t get a cron job to work. Now, what path was that?</p>
<p>WordPress Database Backup is a plugin that I&#8217;d relied on in the past to keep a randomly backed up copy of a WordPress site. Unfortunately, that&#8217;s not a complete solution as the images or uploads folder, as well as any modified theme pages, won&#8217;t be saved during the database backup. Nor will the blog links! Keep an archive copy of everything you put on your website, so everything can be reconstructed in the case of a disaster or even a host switch. In case a website is made up of more than one database, you&#8217;d need a different backup solution than what a WordPress plugin can provide.</p>
<p>Use CRON jobs to automate the task of backing up all your hard work. It might take a while to figure things out, but once you do you&#8217;ll be secure in the knowledge that you did it and your data is safe.</p>
<p>At first I didn&#8217;t have the command part right for the cron job to work. After the time elements you need to indicate the path to sh, any flags (none used here), and the path to the shell script. In this case the command was -</p>
<p>/bin/sh /home/owner/backup/automysqlbackup.sh</p>
<p>where &#8220;owner&#8221; is the CPanel login name, and &#8220;backup&#8221; is an empty directory or folder that you create above the public_html directory. Some hosts will have a folder called &#8220;etc&#8221; already created for you. Check with your host!</p>
<p>In this case the /bin/sh directory was already created at the server level, in other words, I didn&#8217;t have to create it. The corresponding first line in the .sh file was -</p>
<p>#!/bin/sh</p>
<p>Originally, the .sh file had an opening #!/bin/bash, but that didn&#8217;t work on this particular host.</p>
<ul>
<li>A great <a title="cron commands" href="http://www.interspire.com/support/kb/questions/383/How+does+the+CRON+command+work%3F">explanation of CRON commands</a> is found in the rainbow. Nice touch, guys!</li>
<li>Best <a title="Set up automysqlbackup" href="http://freenuts.com/6-steps-to-back-up-your-blog-database-with-automysqlbackup/">explanation of setting up automysqlbackup</a> shell script.</li>
<li>Get the open source database backup script from sourceforge, <a title="automysqlbackup" href="http://sourceforge.net/projects/automysqlbackup/">automysqlbackup</a>.</li>
</ul>
<p>The host tells me the script is running successfully, so I know the lack of output is my fault &#8211; somewhere. Checks the paths&#8230;found it! An error in the path for the configuration file lead to the script trying to run with default parameters, some of them blank. The script ran as far as it could so there was no error reported by the cron daemon to my email address. When the output is successful a log file is sent to that address.</p>
<p>When I finally got the paths straightened out, the backup files were zipped and in their proper places and an email log was sent to the proper address at the time the cron job was to run. It worked! Now I&#8217;ll go back and set up a couple of other cron jobs to back up other databases. I&#8217;ll use the same script, modified to back up different sets of databases on different schedules.</p>
<ul>
<li>If you&#8217;re looking for a simple script to make one database backup and save that on your server, check out DaniWeb&#8217;s <a title="CRON job for backup" href="http://www.daniweb.com/forums/thread646.html">CRON job for backup</a>.</li>
<li><a title="backup home directory" href="http://www.alphaone-tech.com/tech-support/index.php?_m=knowledgebase&amp;_a=viewarticle&amp;kbarticleid=68">Backing up your home directory</a> is just as easy!</li>
</ul>
<p>Once you have your sites backed up automatically, you can do away with any backup plugins that you may have relied on in the past. When at all possible, automate the task of backing up a database. It&#8217;ll make your life easier!</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/commands-for-cron-jobs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Block Comment Spam on Older WordPress Posts</title>
		<link>http://computeraxe.com/block-comment-spam-on-older-wordpress-posts/</link>
		<comments>http://computeraxe.com/block-comment-spam-on-older-wordpress-posts/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 20:24:36 +0000</pubDate>
		<dc:creator>axe</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Comment Spam]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=400</guid>
		<description><![CDATA[Here&#8217;s a spam blocking tip for ya! If you get lots of comment spam and DO have the Akismet plugin installed and updated in your WordPress, check the dates of the posts that the spam-comments are being left on. Chances &#8230; <a href="http://computeraxe.com/block-comment-spam-on-older-wordpress-posts/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a spam blocking tip for ya!</p>
<p>If you get lots of comment spam and DO have the Akismet plugin installed and updated in your WordPress, check the dates of the posts that the spam-comments are being left on. Chances are high that much of the spam is left on older posts. I guess the spammers figured we wouldn&#8217;t notice?</p>
<p>Take a look at the Discussion settings from the WP main menu. Note under <strong>Other comment settings</strong> the third line down where you  can fill in the number of days after which an article can&#8217;t be commented  on.</p>
<p><img src="file:///C:/Users/lizzie/AppData/Local/Temp/moz-screenshot.png" alt="" /><img src="file:///C:/Users/lizzie/AppData/Local/Temp/moz-screenshot-1.png" alt="" /><img src="file:///C:/Users/lizzie/AppData/Local/Temp/moz-screenshot-2.png" alt="" /><img src="file:///C:/Users/lizzie/AppData/Local/Temp/moz-screenshot-3.png" alt="" /></p>
<div id="attachment_443" class="wp-caption alignnone" style="width: 310px"><a href="http://computeraxe.com/wp-content/uploads/2010/07/wp_comment-spam.jpg"><img class="size-medium wp-image-443" title="wp_comment-spam" src="http://computeraxe.com/wp-content/uploads/2010/07/wp_comment-spam-300x118.jpg" alt="Discussion Settings in WordPress" width="300" height="118" /></a><p class="wp-caption-text">Discussion Settings in WordPress</p></div>
<p>Fill in some value less than 30 days and that will knock down the number of spam comments left on your blog. Don&#8217;t forget to scroll down the discussion settings page and hit the <em>Save Changes</em> button.</p>
<p>There is at least one alternative WordPress plugin (and there&#8217;s probably many more, but I haven&#8217;t needed to check for any) that was commented on in a positive way, called WP-Spam Free. Might be worth checking out.</p>
<p>Keep bloggin!</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=be00b54a-70bf-42f4-84b7-96c395cac2cc" alt="Enhanced by Zemanta" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/block-comment-spam-on-older-wordpress-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.0 Worth the Upgrade</title>
		<link>http://computeraxe.com/wordpress-3-0-worth-the-upgrade/</link>
		<comments>http://computeraxe.com/wordpress-3-0-worth-the-upgrade/#comments</comments>
		<pubDate>Sun, 27 Jun 2010 14:10:21 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=358</guid>
		<description><![CDATA[Hey Guys! WordPress 3.0 is here and it&#8217;s definitely worth the download. The time you could save in keeping your blogging software up-to-date alone by using WP 3.0 is worth the upgrade. When it comes time to update the WordPress &#8230; <a href="http://computeraxe.com/wordpress-3-0-worth-the-upgrade/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hey Guys!</p>
<p>WordPress 3.0 is here and it&#8217;s definitely worth the download. The time you could save in keeping your blogging software up-to-date <em>alone</em> by using WP 3.0 is worth the upgrade. When it comes time to update the WordPress software, including plugins, all it takes is one click!</p>
<p>I love the new Twenty Ten theme for its wider view and its modern look and feel. It&#8217;s easy to modify, too.</p>
<p>Just take a look at this video for a quick lesson about WordPress 3.0 -</p>
<p><embed src="http://v.wordpress.com/wp-content/plugins/video/flvplayer.swf?ver=1.21" type="application/x-shockwave-flash" width="480" height="270" wmode="transparent" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true" flashvars="guid=BQtfIEY1&amp;width=480&amp;height=270&amp;locksize=no&amp;dynamicseek=false&amp;qc_publisherId=p-18-mFEk4J448M" title="Introducing WordPress 3.0 &quot;Thelonious&quot;"></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/wordpress-3-0-worth-the-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mass Delete Spam Comments in WordPress</title>
		<link>http://computeraxe.com/mass-delete-spam-comments-wordpress/</link>
		<comments>http://computeraxe.com/mass-delete-spam-comments-wordpress/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 12:57:04 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Akismet]]></category>
		<category><![CDATA[Comment Spam]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[Spam]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=330</guid>
		<description><![CDATA[So, the spam is getting out of control on your WordPress blog? Even if you have activated the Akismet plugin &#8211; and you should &#8211; SPAM may keep filing up the comments. You can just let it ride and those &#8230; <a href="http://computeraxe.com/mass-delete-spam-comments-wordpress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So, the spam is getting out of control on your WordPress blog? Even if you have activated the Akismet plugin &#8211; <em>and you should</em> &#8211; SPAM may keep filing up the comments.</p>
<p>You can just let it ride and those comments identified by Akismet as spam will silently disappear in a month&#8217;s time. In the meantime your database will be getting bigger and bloated with thousands of lines of useless information. Will this bog down your blog? Perhaps it will.</p>
<p>I found another reason to manually delete all the spam comments on one of my WP blogs. From the WP Dashboard I saw 1000+ spam comments and went to edit the comments. When I clicked on &#8216;spam&#8217;, the anti-virus software on this computer, AVG, detected a threat on the spam comments page and blocked my access to it. Even after shutting down the browser and returning to the edit spam comments page another day, the AVG software wouldn&#8217;t let me in. <em>How could I delete the spam if I can&#8217;t get to the page to do it?</em> Even if I could get to that page it would take a long time to delete so many comments. There must be a better solution to getting rid of spam comments in WordPress.</p>
<p>So, how do you mass delete spam comments in WordPress? Check out this excellent video that provides a solution using phpmyadmin and your WordPress blog database.</p>
<p><object height="385" width="480"><param name="movie" value="http://www.youtube.com/v/QCA4loQi7yM&amp;hl=en_US&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6"><param name="allowFullScreen" value="true"><param name="allowscriptaccess" value="always"><embed src="http://www.youtube.com/v/QCA4loQi7yM&amp;hl=en_US&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" height="385" width="480"></embed></object></p>
<p>Steps to follow:</p>
<ol>
<li>sign in to CPanel</li>
<li>open up phpmyadmin and select the WP database</li>
<li>click on &#8220;wp_comments&#8221; table and browse to see the comments</li>
<li>backup database by clicking on database name in left column, click on export tab, select all tables under Export, select SQL, check &#8220;save as file&#8221;, click Go to download database backup to your computer</li>
<li>select comments table, by clicking on the table name wp_comments, then click on the SQL tab</li>
<li>use an sql query to mass delete spam comments in WordPress by typing the following in the Run SQL Query box:
<p>DELETE FROM wp_comments WHERE comment_approved = 0</p>
<p>Click Go, click OK.</li>
<li>Comments deleted!</li>
</ol>
<p>If you are using a spam catcher, like Akismet, the value for comment_approved may be set to &#8220;spam&#8221;, so you&#8217;ll need to alter the query as follows:</p>
<p><strong>DELETE FROM wp_comments WHERE comment_approved = &#8216;spam&#8217;</strong></p>
<p>Don&#8217;t forget to use the single quote marks to enclose the word spam.</p>
<p>Verify that the number of records in the comments table has been reduced to the number of approved comments. Hooray!</p>
<p>Optimize the WordPress database by going to the Structure tab, or clicking on the database name in the left column, and at the bottom of the table listing click on &#8220;Check tables having overhead&#8221;. Choose &#8220;optimize table&#8221; from the spin box on the right and all the extra space that those nasty spam comments took up will be released and the database optimized.</p>
<p>Go back to database view and verify that the overhead space has been removed. The size column now represents the space that is actually used by the database.</p>
<p>Refresh your WP blog and the spam comments will be gone. Isn&#8217;t is great to see ZERO spam comments?!</p>
<p>Alternatively, you can catch spam before it lands in your WP blog by modifying the function.php file in your theme using these excellent <a href="http://www.clickonf5.org/wordpress/function-to-avoid-apam-comments-wordpress/6407">directions from Tejaswini</a>.</p>
<p>Also, try <a href="http://maketecheasier.com/5-ways-to-reduce-comment-spam-on-wordpress-blogs/2010/03/17">Soumen Halder&#8217;s list</a> of ways to reduce comment spam on WP blogs.</p>
<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/8c433a50-800a-49d3-9f4d-07c5e1fbf4ec/" title="Reblog this post [with Zemanta]"><img style="border: medium none; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=8c433a50-800a-49d3-9f4d-07c5e1fbf4ec" alt="Reblog this post [with Zemanta]"></a><span class="zem-script more-related pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/mass-delete-spam-comments-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Website Analytics Options Beyond Google</title>
		<link>http://computeraxe.com/websites-analytic-option-stats/</link>
		<comments>http://computeraxe.com/websites-analytic-option-stats/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 17:12:21 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[awstats]]></category>
		<category><![CDATA[mint]]></category>
		<category><![CDATA[statcounter]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[webalizer]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=321</guid>
		<description><![CDATA[If you have any interest in knowing where your website traffic is coming from and what brought them to your site, you need to use some type of analytics software to learn these things. As with any kind of software, &#8230; <a href="http://computeraxe.com/websites-analytic-option-stats/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you have any interest in knowing where your website traffic is coming from and what brought them to your site, you need to use some type of analytics software to learn these things.</p>
<p>As with any kind of software, there are free and open source alternatives to paid versions. The one pay-software for site stats worth mentioning here is called Mint and is found at haveamint.com. It&#8217;s a totally configurable way to look at your site stats. If you don&#8217;t have many web properties, the $30 per site license isn&#8217;t too bad.</p>
<p>Let&#8217;s take a look at the software that doesn&#8217;t cost anything but an investment of time&#8230;.</p>
<p>Site statistics are included in CPanel which comes with most hosting packages. Once you sign in to CPanel, look under the <em>Logs</em> section for Awstats or Webalizer Stats. More people seem to talk about using Awstats, but if you go to Webalizer Stats and click on any month name under the summary you&#8217;ll get all the same data that is provided by Awstats. Pick one whose layout is easy to read and you&#8217;ll have your site statistics at your fingertips.</p>
<p>Google Analytics (GA) is geared towards marketers and can easily be integrated with an Adwords or Adsense account, both from Google. If you want to formulate a plan for meeting sales goals or increasing conversions, the big G can help you when you link your existing accounts. Some folks have written that they don&#8217;t trust Google and don&#8217;t want Big Brother knowing their every move online, so they shy away from using a GA account.</p>
<p>Instead, you could rely on a free alternative called statcounter. Visit statcounter.com and click on the features page. You&#8217;ll see many of the same items listed that occur in your CPanel stats options. The downside to using statcounter or GA is that you&#8217;ll have to dig into the page code and insert a few lines of code. It&#8217;s not that hard, but it does take a little time to set up. You only have to set it up once, though.</p>
<p>If you&#8217;re running a WordPress blog, try the stats plugin found at http://wordpress.org/extend/plugins/stats/ for a pretty look at your site stats.</p>
<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/c3245e09-1321-44ff-a1f6-931c46764ef0/" title="Reblog this post [with Zemanta]"><img style="border: medium none ; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=c3245e09-1321-44ff-a1f6-931c46764ef0" alt="Reblog this post [with Zemanta]"></a><span class="zem-script more-related pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/websites-analytic-option-stats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE7 Error Refuses to Open Site &#8211; Operation Aborted</title>
		<link>http://computeraxe.com/ie7-error-refuses-to-open-site-operation-aborted/</link>
		<comments>http://computeraxe.com/ie7-error-refuses-to-open-site-operation-aborted/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 14:57:54 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[browsers]]></category>
		<category><![CDATA[IE6]]></category>
		<category><![CDATA[IE7]]></category>
		<category><![CDATA[IE8]]></category>
		<category><![CDATA[Internet Explorer]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=314</guid>
		<description><![CDATA[A client mystically had these errors pop up where they could not open their web site with Internet Explorer. It&#8217;s strange that this error hadn&#8217;t been reported to me before because the site has been operational for a couple years &#8230; <a href="http://computeraxe.com/ie7-error-refuses-to-open-site-operation-aborted/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A client mystically had these errors pop up where they could not open their web site with Internet Explorer. It&#8217;s strange that this error hadn&#8217;t been reported to me before because the site has been operational for a couple years now. Internet Explorer 8 doesn&#8217;t spew the error, nor does Firefox, but IE6 and IE7 would report that it couldn&#8217;t open the site with the following error window:</p>
<div id="attachment_315" class="wp-caption alignnone" style="width: 511px"><img src="http://computeraxe.com/wp-content/uploads/2009/11/MSIE7-error-abort1.png" alt="Internet Explorer cannot open the Internet site - Operation aborted." title="MSIE7-error-abort" class="size-full wp-image-315" height="134" width="501"><p class="wp-caption-text">Internet Explorer cannot open the Internet site - Operation aborted.</p></div>
<p>The problem was traced to the older IE browsers&#8217; inability to render the page completely before it tried to execute some javascript code.</p>
<p>The solution was to add a simple defer tag to each javascript call, like so:<br />
<code><br />
&lt;script defer="defer" type="text/javascript" src="src goes here"&gt;/*code goes here*/&lt;/script&gt;<br />
</code></p>
<p>Thanks goes out to <a href="http://www.richardcastera.com/">Richard for posting</a> his found solution. Thanks, Richard!</p>
<p>Microsoft also indicates that this <a href="http://support.microsoft.com/default.aspx/kb/927917">error can be avoided by updating your browser</a> to the latest version, which at this time is IE8. Now, if only all my clients would do the same!</p>
<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/774edc06-303b-48ff-90a4-a6edbbad7390/" title="Reblog this post [with Zemanta]"><img style="border: medium none ; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=774edc06-303b-48ff-90a4-a6edbbad7390" alt="Reblog this post [with Zemanta]"></a><span class="zem-script more-related pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/ie7-error-refuses-to-open-site-operation-aborted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin Review: Collapsing Blogroll</title>
		<link>http://computeraxe.com/wordpress-plugin-review-collapsing-blogroll/</link>
		<comments>http://computeraxe.com/wordpress-plugin-review-collapsing-blogroll/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 15:51:58 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=301</guid>
		<description><![CDATA[Last time, I wrote about a new WordPress plugin, at least new to me, that is, Collapsable blogroll. The author let us know that there is a newer version with a slightly different name, Collapsing Blogroll. Here&#8217;s what I did &#8230; <a href="http://computeraxe.com/wordpress-plugin-review-collapsing-blogroll/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Last time, I wrote about a new WordPress plugin, at least new to me, that is, <a href="http://computeraxe.com/wordpress-plugin-review-collapsable-blogroll/">Collapsable blogroll</a>. The author let us know that there is a newer version with a slightly different name, Collapsing Blogroll.</p>
<p>Here&#8217;s what I did to update from Collapsable blogroll to Collapsing Blogroll:</p>
<ul>
<li><a href="http://wordpress.org/extend/plugins/collroll/">Downloaded collroll</a>, unpacked the zip file, ftp&#8217;d the folder &#8216;collroll&#8217; and its contents to wp-contents/plugins/.</li>
<li>Logged in to the WordPress dashboard and edited the links page where I had used the older plugin, Collapsable blogroll, to create a list of links from the blogroll. I changed &lt;!&#8211;catlinkspage&#8211;&gt; to [collroll] and saved the page.</li>
<li>From the Manage Plugins page I deactivated Collapsable blogroll, then activated Collapsing Blogroll.</li>
<li>When I visited the links page, all the links were hidden, or collapsed, and the words <strong>Expand | Collapse</strong> were visible. Clicking on expand showed all the links. <em>(I&#8217;m not sure the words expand/collapse need to be there as you can set the links page default to either expanded or collapsed.)</em></li>
<li>Once I knew that the new plugin worked as expected, then I deleted the older plugin.</li>
</ul>
<p>Improvements in the plugin allow you to change the appearance of your links page from the WP dashboard. Visit the new Collapsing Blogroll page that is listed under Settings in your WP-admin.</p>
<p>From there you can select a title background color by clicking on the white color swatch. A color picker comes up that lets you select whatever color you want by picking it from the rainbow or entering the RGB/#hex values. If you uncheck the box &#8220;use this color&#8221; next to the title background, then there is a <em>transparent</em> background, or no background color depending on your point of view.</p>
<p>Also featured in the newer plugin, you can select the order of categories or links as either alphabetical or one of your own choosing, which is especially useful if you use a different plugin to order your links. Since I&#8217;d been using &#8220;My Link Order&#8221; on a site where the Collapsing Blogroll was installed, this feature was a relief to see.</p>
<p>From the settings page you can specify the width of the blogroll div, in px or %, so your link list can fit in the sidebar or other space you&#8217;ve created.</p>
<p>And finally, indicate whether you&#8217;d like the initial link list to be collapsed by default, or not. Make sure to save your new settings.</p>
<p>Collapsing Blogroll will be really helpful for those sites where there are many links, especially when the list of links changes from time to time.  Works in WP 2.8.4! Thanks again, Romain!</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/wordpress-plugin-review-collapsing-blogroll/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin Review: Collapsable Blogroll</title>
		<link>http://computeraxe.com/wordpress-plugin-review-collapsable-blogroll/</link>
		<comments>http://computeraxe.com/wordpress-plugin-review-collapsable-blogroll/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 13:28:04 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=293</guid>
		<description><![CDATA[A client&#8217;s site was being updated and I needed to find a way to capture their blogroll into a page of links. Instead of manually inserting links and titles into a new page, I searched for a WordPress plugin to &#8230; <a href="http://computeraxe.com/wordpress-plugin-review-collapsable-blogroll/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A client&#8217;s site was being updated and I needed to find a way to capture their blogroll into a page of links. Instead of manually inserting links and titles into a new page, I searched for a WordPress plugin to do the work for me. It would be desirable to have the links page be automatically updated when the blogroll was updated.</p>
<p>It took a little bit of searching to find the plugin called Collapsable Blogroll, but it does exactly what was needed. Downloading the file collapsable-blogroll.0.1.zip, unzipping it, uploading it to the /wp-content/plugins/ directory, and activating it via the wp-admin page went smoothly. No surprises there.</p>
<p>All you have to do is place &lt;!&#8211;catlinkspage&#8211;&gt; where you want your blogroll list of links to appear. It&#8217;s that easy! Put your links inside a post or a page &mdash; it&#8217;s your choice. By default the link list is separated into the categories of your WP blog and each list is shown in the collapsed state. Just click on the category name and the list will expand to show all your links.</p>
<p>I like the fact that you could add a new link to your blogroll via the wp-admin and it would show up right away on the links page.</p>
<p>The <a href="http://wordpress.org/extend/plugins/collapsable-blogroll/">Collapsable Blogroll plugin</a> works with WordPress 2.8. Thanks, Romain!</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/wordpress-plugin-review-collapsable-blogroll/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin Review: Page Links To</title>
		<link>http://computeraxe.com/wordpress-plugin-review-page-links-to/</link>
		<comments>http://computeraxe.com/wordpress-plugin-review-page-links-to/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 13:26:43 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=288</guid>
		<description><![CDATA[The other day I was looking for a way to have a WordPress page redirect to an external page, one that is not on the same domain as the WP blog. A quick search for &#8216;links page&#8217; lead me to &#8230; <a href="http://computeraxe.com/wordpress-plugin-review-page-links-to/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The other day I was looking for a way to have a WordPress page redirect to an external page, one that is not on the same domain as the WP blog. A quick search for &#8216;links page&#8217; lead me to a great little plugin, called <strong>Page Links To</strong>.</p>
<p>Page Links To has basically one purpose. According to the author you can &#8220;make a WordPress page or post link to a URL of your choosing, instead of its WordPress page or post URL.&#8221; Exactly what I was looking for!</p>
<p>Like most other plugins downloading the page-links-to.zip file, unpacking and uploading the plugin folder to the /wp-content/plugins/ directory, and activating the plugin was simple.</p>
<p>Then, all you have to do is make a new WP page by entering its title and leaving the content blank. Scroll down to the Page Links To widget and enter the URL that you want your page to link to. Here, you can choose whether the redirect is 302-a temporary move, or not. The default is 301-permanent move. That&#8217;s it!</p>
<p>Verify that all went smoothly by clicking on your page and you&#8217;ll see that it links to the outside URL. By the way both WordPress pages and posts can point to the URLs that you like. Might be great for resource pages or links to related sites.</p>
<p><a href="http://wordpress.org/extend/plugins/page-links-to/">Page Links To</a> works with WordPress 2.8. Thanks, Mark!</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/wordpress-plugin-review-page-links-to/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CSS Rounds Corners in Firefox, But Not in IE8</title>
		<link>http://computeraxe.com/css-rounds-corners-firefox-not-ie8/</link>
		<comments>http://computeraxe.com/css-rounds-corners-firefox-not-ie8/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 20:26:00 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[corners]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=267</guid>
		<description><![CDATA[Firefox/Mozilla browsers are gaining shares of the browser market and for good reason. Upbeat features let the user take complete control of their browsing experience, which is one main reason behind their gaining popularity. Add-On tools can help most any &#8230; <a href="http://computeraxe.com/css-rounds-corners-firefox-not-ie8/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Firefox/Mozilla browsers are gaining shares of the browser market and for good reason. Upbeat features let the user take complete control of their browsing experience, which is one main reason behind their gaining popularity. Add-On tools can help most any website developer to see that their site is put together in a valid way and that has pushed Firefox use among developers to probably a very high level. I still have yet to hear another web developer state that they prefer IE over Firefox, and I&#8217;m pretty sure that all of us have cursed IE6!</p>
<p>Firefox also champions the use of future CSS, which are CSS features that will only be seen by IE users at some time in the future. Ok, I made that up, but since Internet Explorer is playing the catchup game, I think it&#8217;s only fitting to point out an example.</p>
<p>Looking at some CSS basics&#8230;we have a way to draw a box around some content. It&#8217;s called the border property. The top, left, right and bottom sides of the box can be assigned diferent values for the width, style and color. Each of these values can be assigned separately or all at once.</p>
<p>Separately:</p>
<div class="box">
.box {<br />
border-width: 1px;<br />
border-style: solid;<br />
border-color: #000;<br />
}
</div>
<p>All together, in the order <em>width, style, color</em>:</p>
<div class="box">
.box {<br />
border: 1px solid #d1d1d1;<br />
}
</div>
<p>If you want to have different widths, styles or colors for your box, then you&#8217;ll have to use the properties that target each side, like so:</p>
<div class="sbox">
.box {<br />
border-left: 1px dashed #000;<br />
border-right: 2px solid #5ca3b7;<br />
border-top: 1px dashed #000;<br />
border-bottom: 2px solid #5ca3b7;<br />
}
</div>
<p>That&#8217;s nice, but sometimes we really don&#8217;t want the square boxy look. Rounded corners are nice, aren&#8217;t they? Well, our Firefox users can see rounded corners for the same box that we&#8217;ve built for our menu. All we have to do is add one property to the menu, called the -moz-border-radius, and specify its size. IE simply ignores this property, so those boxes will show pointed corners.</p>
<p>.roundedbox {<br />
-moz-border-radius:10px;<br />
}</p>
<p>The 10 pixel radius is the size of the rounded corner. We probably want to add a little padding to the menu box so the content isn&#8217;t smashed against the border, so we&#8217;ll set that at 10 px, too.</p>
<p>Here&#8217;s a menu box that will show rounded corners in Firefox/Mozilla browsers:</p>
<div class="rbox">
.roundedbox {<br />
border:1px solid #5ca3b7;<br />
padding:10px;<br />
-moz-border-radius:10px;<br />
}
</div>
<p>There are ways to get the rounded corner look in IE browsers, but it&#8217;s a bit more work. For now, we&#8217;ll continue to use the -moz-border-radius property in appreciation of our Firefox users.</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/css-rounds-corners-firefox-not-ie8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
