<?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>CyberCoded &#187; Programming</title>
	<atom:link href="http://www.cybercoded.net/category/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cybercoded.net</link>
	<description>Trying to help others with their Wordpress, PHP and other Web issues.</description>
	<lastBuildDate>Sun, 05 Feb 2012 09:00:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Amazon Simple Store in PHP with Mandatory Signed Requests</title>
		<link>http://www.cybercoded.net/amazon-simple-store-in-php-with-mandatory-signed-requests/</link>
		<comments>http://www.cybercoded.net/amazon-simple-store-in-php-with-mandatory-signed-requests/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 23:24:38 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[PHP Programming]]></category>

		<guid isPermaLink="false">http://www.cybercoded.net/?p=1517</guid>
		<description><![CDATA[Several years ago I used Amazon software for a lot of sites. But after they changed their authentication there was a lack of documentation and I lost interest in trying to fix the old code. I kept going back to their site and forums to see if anyone had ever fixed their Simple Store example [...]]]></description>
			<content:encoded><![CDATA[<p>Several years ago I used Amazon software for a lot of sites. But after they changed their authentication there was a lack of documentation and I lost interest in trying to fix the old code. I kept going back to their site and forums to see if anyone had ever fixed their Simple Store example which was an excellent spring board into understanding the code. Unfortunately there was never a resolution, and the last comment on the product page was from July 2010 stating that it still does not work.</p>
<p>For some unknown reason this product came back into my vision over the past weekend and the pieces fell into place to resolve the problems.</p>
<p>So I have modified the original and fixed the problem with the mandatory signed request.</p>
<p>A working copy can be seen at <a href="http://www.cybercoded.com/amazon/">CyberCoder Amazon Store</a></p>
<p>It can be downloaded from <a href="http://www.cybercoded.com/amazon-simple-store-in-php-with-mandatory-signed-requests/">Amazon Simple Store in PHP with Mandatory Signed Requests</a> , I do charge a $9.95 fee to download from my site. And yes, I know, everything should be free, but some of us have to make an income from our work.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/amazon-simple-store-in-php-with-mandatory-signed-requests/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Author to RSS Feed in WordPress</title>
		<link>http://www.cybercoded.net/add-author-to-rss-feed-in-wordpress/</link>
		<comments>http://www.cybercoded.net/add-author-to-rss-feed-in-wordpress/#comments</comments>
		<pubDate>Wed, 15 Jun 2011 16:29:59 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[Feedburner]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Function]]></category>

		<guid isPermaLink="false">http://www.cybercoded.net/?p=1451</guid>
		<description><![CDATA[If you have multiple authors on a WordPress blog you may want to add the Author name to the RSS feed title. Although the standard RSS feed file in WordPress contains the author if you view the RSS feed you will not be able to see the Author name through standard readers as it is [...]]]></description>
			<content:encoded><![CDATA[<p>If you have multiple authors on a WordPress blog you may want to add the Author name to the RSS feed title.</p>
<p>Although the standard RSS feed file in WordPress contains the author if you view the RSS feed you will not be able to see the Author name through standard readers as it is not converted.</p>
<p>A good example is to look at a WordPress feed that uses Google Reader and you will not see the Author listed.</p>
<p>One solution of course is to change the WordPress Feed files, however, if you do this every time you update WordPress your change will get written over. The easier and better solution is to add the small snippet of code below to your WordPress Themes function file.</p>
<p>&nbsp;</p>
<p><code>function wp_titlerss($content) {<br />
global $wp_query;<br />
$content = $content." by ".get_the_author();<br />
return $content;<br />
}</code></p>
<p><code> </code></p>
<p><code>add_filter('the_title_rss', 'wp_titlerss');<br />
</code></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/add-author-to-rss-feed-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Being a Website Mechanic</title>
		<link>http://www.cybercoded.net/being-a-website-mechanic/</link>
		<comments>http://www.cybercoded.net/being-a-website-mechanic/#comments</comments>
		<pubDate>Mon, 14 Feb 2011 16:02:36 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[NetMechanic]]></category>
		<category><![CDATA[PHP Programming]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Mechanic]]></category>
		<category><![CDATA[Website Mechanic]]></category>

		<guid isPermaLink="false">http://www.cybercoded.net/?p=1388</guid>
		<description><![CDATA[It is a niche I really did not plan on, but it is probably the best description of what I do on a daily basis. Thanks to the SoloBizCoach for pointing that out during one of our chats. Using the term mechanic invariably brings to mind a car mechanic, and a website mechanic is very [...]]]></description>
			<content:encoded><![CDATA[<p>It is a niche I really did not plan on, but it is probably the best description of what I do on a daily basis. Thanks to the <a title="SoloBizCoach" href="http://www.solobizcoach.com/" target="new">SoloBizCoach</a> for pointing that out during one of our chats.</p>
<p>Using the term mechanic invariably brings to mind a car mechanic, and a website mechanic is very similar. If you want your car to look better you take it to a body shop, but if you want it to run better, tune it up, or fix something you take it to a mechanic. And that is the same situation here. If you want graphics or a slick looking website, I should not be your first choice to help you. However, if something is not working right, or you want to tune it up, I can usually help you.</p>
<p>In just the last week I have converted a couple of static sites to WordPress, repaired a slow loading blog, fixed a site that was not loading properly and several other small &#8220;mechanic&#8221; tasks for others. I also do a lot of custom stuff. Here is a <a href="http://www.waynejohn.com/how-to-automate-tweets-with-the-twitter-api/" target="new">good post from WayneJohn</a> explaining some Twitter API work we were both involved in.</p>
<p>Remember, there is nothing wrong with needing help. A lot of the people who call on me are excellent bloggers and designers, but we each have our skill set and we need to know our limitations. Trust me, if I want some hot graphics I am going to call on someone else to help me out.</p>
<p>A key to success is being able to know when you need help and utilize other peoples skills to advance your work.</p>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/being-a-website-mechanic/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Your Own Branded Twitter Interface</title>
		<link>http://www.cybercoded.net/your-own-branded-twitter-interface/</link>
		<comments>http://www.cybercoded.net/your-own-branded-twitter-interface/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 18:37:59 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Branding]]></category>
		<category><![CDATA[PHP Programming]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Twitter API]]></category>
		<category><![CDATA[Twitter Tools]]></category>

		<guid isPermaLink="false">http://www.cybercoded.net/?p=1296</guid>
		<description><![CDATA[Did you know you can build your own custom Twitter interface? Since Twitter changed to 100% OAuth support you are now required to have a Twitter Application to post to Twitter. This can be seen with how a lot of the WordPress plugins work, which now require you to setup an application and save your [...]]]></description>
			<content:encoded><![CDATA[<p>Did you know you can build your own custom Twitter interface?</p>
<p>Since Twitter changed to 100% OAuth support you are now required to have a Twitter Application to post to Twitter. This can be seen with how a lot of the WordPress plugins work, which now require you to setup an application and save your OAuth keys so that they can post to Twitter.</p>
<p>You can do the same thing in a stand alone application and add functionality specific to your needs.</p>
<p>There are several benefits including but not limited to, having your link and name appear at the bottom of each Tweet as seen below.</p>
<p><a href="http://www.cybercoded.net/wp-content/uploads/2010/12/download-1.png"><img class="alignleft size-medium wp-image-1300" title="CyberCoder on Twitter" src="http://www.cybercoded.net/wp-content/uploads/2010/12/download-1-300x119.png" alt="" width="300" height="119" /></a></p>
<p>You can also write custom routines to help you issue better Tweets.</p>
<p>I did this on my own <a href="http://www.cybercoded.net/Twitter/">Twitter App</a> page with my Follow Friday Tweets.</p>
<p>I always hated the FollowFriday Tweets that are just several links to other people with no explanation of why I would want to follow them. So I built a routine where I can input the persons Twitter name, a reason to follow them and the result will always be the same formatted Tweet.</p>
<p>Each Tweet has the #FollowFriday hashtag followed by the referenced account and an explanation as to why I recommend them, and finally the #ff hastag to end the Tweet.</p>
<p>I also included several other features to make Twitter easier. I have a regular post box where I can write a Tweet and I created a Javascript bookmark for auto posting.</p>
<p>When I am on any web page I click Auto Post, and a Tweet is created and sent that has the Title of the page as the body of the Tweet, and a shortened link is included to the page. And of course they are branded with my link for each Tweet.</p>
<p>If you have a little time and programming help, I would highly recommend using a custom branded Twitter strategy.</p>
<p>Think outside the box!</p>
<p>Every little bit of exposure and linking helps !</p>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/your-own-branded-twitter-interface/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tracking Live Incoming Search Terms</title>
		<link>http://www.cybercoded.net/tracking-live-incoming-search-terms/</link>
		<comments>http://www.cybercoded.net/tracking-live-incoming-search-terms/#comments</comments>
		<pubDate>Fri, 22 Oct 2010 01:51:45 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Internet Search]]></category>
		<category><![CDATA[Keywords Used]]></category>
		<category><![CDATA[PHP Programming]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.cybercoded.net/?p=1269</guid>
		<description><![CDATA[Thinking about all the instant stuff we have on the net I thought it would interesting to watch incoming traffic generated from search engines. I setup a script on a couple test sites that email me the Domain, Search Term, Search Engine and Landing Page whenever a visitor comes from a search engine. With over [...]]]></description>
			<content:encoded><![CDATA[<p>Thinking about all the instant stuff we have on the net I thought it would interesting to watch incoming traffic generated from search engines. I setup a script on a couple test sites that email me the Domain, Search Term, Search Engine and Landing Page whenever a visitor comes from a search engine.</p>
<p>With over 80 sites generating traffic there is no way I could do this on all my sites, but it is interesting and helpful to run on sites where I am trying to get a better feel for the incoming search traffic on a real time basis. I also dump the results to a file to review later, which would be easy to adapt for other things utilizing a database.</p>
<p>Doing a quick search I found this article with a complete tutorial that outlines doing the same. <a href="http://www.willmaster.com/library/statistics/getting-search-terms.php">Search Terms Extractor : Statistics and Demographics</a></p>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/tracking-live-incoming-search-terms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert HTML to WordPress</title>
		<link>http://www.cybercoded.net/convert-html-to-wordpress/</link>
		<comments>http://www.cybercoded.net/convert-html-to-wordpress/#comments</comments>
		<pubDate>Wed, 13 Oct 2010 14:07:38 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Static Web Site]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Conversion]]></category>
		<category><![CDATA[Wordpress Hierarchy]]></category>
		<category><![CDATA[Wordpress How To]]></category>

		<guid isPermaLink="false">http://www.cybercoded.net/?p=1263</guid>
		<description><![CDATA[This is the second post I have written on this topic, the first post was Convert Static HTML Site to WordPress Easily. In that first post I covered a very simple way to convert a static HTML site to WordPress. After almost 2 years of answering questions on that post I thought it was time [...]]]></description>
			<content:encoded><![CDATA[<p>This is the second post I have written on this topic, the first post was <a href="http://www.cybercoded.net/convert-static-html-site-to-wordpress-easily/">Convert Static HTML Site to WordPress Easily</a>. In that first post I covered a very simple way to convert a static HTML site to WordPress.</p>
<p>After almost 2 years of answering questions on that post I thought it was time to discuss the issue again.</p>
<p>I have done a dozen or so conversions since that post and I have found that some sites really need to take a fresh start approach to get the best result. The main reason for this is that a lot of older HTML sites are built with outdated techniques and WordPress has made some great advancements.</p>
<p>On these sites I create a sub folder for the WordPress install, such as /wordpress. This gives us designated area to work and learn WordPress without interferring with the original design. The hardest task may be getting a theme to match your original design, but I would suggest taking this time to update your original design. There are so many good WordPress Themes this should not be a problem. Once your theme is in place you can copy and paste your orginal content to the new install matching the page names. Depending on your original file extensions you may need to set the permalinks in WordPress.</p>
<p>Once this development is complete it is easy to change the Site address (URL) in WordPress to show the new site in the root. (Make sure to backup the original first!) <a href="http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory">Here is the link</a> from the WordPress Admin panel that explains this.</p>
<p>If you need to learn WordPress and want to take a little time without being pressured to get the new site in place this is the best option I have found.</p>
<p><strong>Yes, I do conversions for others. If you would like a quote, simply send me a link to your site and contact information using my <a href="http://www.cybercoded.net/contact-me/">Contact Form</a>.</strong></p>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/convert-html-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>FaceBook Fan Page</title>
		<link>http://www.cybercoded.net/facebook-fan-page/</link>
		<comments>http://www.cybercoded.net/facebook-fan-page/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 17:13:06 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Facebook Fan Page]]></category>

		<guid isPermaLink="false">http://www.cybercoded.net/?p=883</guid>
		<description><![CDATA[Having a Facebook Fan Page has become almost a standard practice for businesses. The downside to a Facebook Fan Page is the long URL assigned to your page. But once you have 25 fans you can easily set the Vanity URL address by going to the Facebook Username page and setting the name for your [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Having a Facebook Fan Page has become almost a standard practice for businesses. The downside to a Facebook Fan Page is the long URL assigned to your page. But once you have 25 fans you can easily set the Vanity URL address by going to the <a title="Facebook Vanity URL" href="http://www.facebook.com/username/" target="_blank">Facebook Username</a> page and setting the name for your page if it is available.</p>
<p><img class="size-full wp-image-884 aligncenter" style="margin-top: 10px; margin-bottom: 10px;" title="facebookusername" src="http://www.cybercoded.net/wp-content/uploads/2009/12/facebookusername.png" alt="facebookusername" width="400" height="91" /></p>
<p>Another helpful function you can utilize is having multiple Admins assigned to a Fan Page so you can have someone else help you with your page design, programming and updating.</p>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/facebook-fan-page/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Used Car Database</title>
		<link>http://www.cybercoded.net/used-car-database/</link>
		<comments>http://www.cybercoded.net/used-car-database/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 16:14:23 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Custom Programming]]></category>
		<category><![CDATA[CyberCoder]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Used Car Database]]></category>

		<guid isPermaLink="false">http://www.cybercoded.net/?p=835</guid>
		<description><![CDATA[For quite some time now I have needed and wanted to make a database listing of Used Cars by Year, Make and Model. I finally have the used car database complete. The result is a database that should help any programmer needing the same information for their used car project. The Used Car Database currently [...]]]></description>
			<content:encoded><![CDATA[<p>For quite some time now I have needed and wanted to make a database listing of Used Cars by Year, Make and Model. </p>
<p>I finally have the used car database complete. The result is a database that should help any programmer needing the same information for their used car project.</p>
<p>The Used Car Database currently has over 5,200 cars listed by Year, Make and Model, from 1989-2009.</p>
<p>The data matches what is listed in the Kelley Blue Book which has been the nation&#8217;s number-one-selling automotive book, I did this to have a good reference point for data validity.</p>
<p>The file download includes 2 file formats of the database. A CSV file and a MySQL export file. Between these 2 formats, most programmers should be able to incorporate this data into a project easily.</p>
<p>Here is a random sampling of the data.</p>
<p>2002 Saturn SC2<br />
2009 Chevrolet Colorado<br />
1992 Mercury Sable<br />
1994 Dodge Viper<br />
2007 Chevrolet Equinox<br />
1994 Suzuki Samurai<br />
1999 Lexus LS 400<br />
1999 Dodge Durango<br />
2001 Ford Mustang<br />
1992 Buick Riviera</p>
<p><a href="https://www.e-junkie.com/ecom/gb.php?i=320162&#038;c=single&#038;cl=35732" target="ejejcsingle"><img src="http://www.e-junkie.com/ej/x-click-butcc.gif" border="0" alt="Buy Now"/></a></p>
<p><a href="https://www.e-junkie.com/ecom/gb.php?c=cart&#038;i=320162&#038;cl=35732&#038;ejc=2" target="ej_ejc" class="ec_ejc_thkbx" onClick="javascript:return EJEJC_lc(this);"><img src="http://www.e-junkie.com/ej/ej_add_to_cart.gif" border="0" alt="Add to Cart"/></a></p>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/used-car-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Threaded Comments</title>
		<link>http://www.cybercoded.net/wordpress-threaded-comments/</link>
		<comments>http://www.cybercoded.net/wordpress-threaded-comments/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 14:47:22 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress How To]]></category>
		<category><![CDATA[Worpress Threaded Comments]]></category>

		<guid isPermaLink="false">http://www.cybercoded.net/?p=793</guid>
		<description><![CDATA[I have been needing to change my comments to Threaded Comments for some time. I finally took the time to do this, and thought I would share these simple steps to accomplish Threaded Comments using the latest standard WordPress system without any plugins. The one thing you need before you start is a copy of [...]]]></description>
			<content:encoded><![CDATA[<p>I have been needing to change my comments to Threaded Comments for some time. I finally took the time to do this, and thought I would share these simple steps to accomplish Threaded Comments using the latest standard WordPress system without any plugins.</p>
<p>The one thing you need before you start is a copy of WordPress 2.7+ so you can copy some code. Just a little side tip here. Even though most of my sites and clients have one button install of WordPress, I keep a copy of each version that is released on a thumb drive with my other web stuff so I always have it handy. I also sync that thumb drive up to a hard drive in my office for backup!</p>
<p>Here are the steps to take to convert your comments to threaded comments as they appear here on my site.</p>
<ul>
<li>Copy \wp-content\themes\default\comments.php from WordPress 2.7+</li>
<li>Copy \wp-content\themes\default\comments-popup.php from WordPress 2.7+</li>
<li>Copy code from \wp-content\themes\default\header.php, and place in your header file.  &lt;?php if ( is_singular() ) wp_enqueue_script( &#8216;comment-reply&#8217; ); ?&gt;</li>
<li>Copy the Updated styling code from this great article by <a style="text-decoration: none;" title="Chris Harrison" href="http://cdharrison.com/2008/12/threaded-comments/" target="_blank">Chris Harrison</a></li>
</ul>
<div>I modified 2 lines of code in the stlyesheet once I copied it over from Chris Harrisons&#8217; Example. I did not like the word &#8220;says&#8221; showing up, so I turned it off, and I changed the meta link to the comment to match the rest of the site.</div>
<p>Turn off  &#8221;says&#8221; :</p>
<div>
<ul>
<li>From : ol.commentlist li div.vcard span.says {}</li>
<li>To: ol.commentlist li div.vcard span.says {display:none;}</li>
</ul>
</div>
<div>Change Meta link color:</div>
<div>
<ul>
<li>From: ol.commentlist li div.comment-meta a { color:#ccc; }</li>
<li>To: ol.commentlist li div.comment-meta a { color:#003366; }</li>
</ul>
</div>
<p>That&#8217;s it, about a 5 minute process to convert to WP Threaded Comments on a WordPress blog. Pretty painless too. Big thanks to <a title="Chris Harrison" href="http://cdharrison.com/2008/12/threaded-comments/" target="_blank">Chris Harrison</a> for his excellent post on styling Threaded comments!</p>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/wordpress-threaded-comments/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PHP Help</title>
		<link>http://www.cybercoded.net/php-help/</link>
		<comments>http://www.cybercoded.net/php-help/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 16:14:41 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP Consultant]]></category>
		<category><![CDATA[PHP Developer]]></category>
		<category><![CDATA[PHP Help]]></category>
		<category><![CDATA[PHP Programmer]]></category>
		<category><![CDATA[PHP Software]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.cybercoded.net/?p=763</guid>
		<description><![CDATA[Thought I would share a few of my favorite resources for PHP Help, no real secrets here, just some good links. PHP Freaks W3Schools PHP Tutorials PHP Net PHP Classes The thing I liked about getting into PHP Programming was the amount of help and sample code out there is unbelievable, and if you work [...]]]></description>
			<content:encoded><![CDATA[<p>Thought I would share a few of my favorite resources for PHP Help, no real secrets here, just some good links.</p>
<p><a href="http://www.phpfreaks.com/" target="_blank">PHP Freaks</a></p>
<p><a href="http://www.w3schools.com/PHP/DEfaULT.asP" target="_blank">W3Schools PHP Tutorials</a></p>
<p><a href="http://us.php.net/" target="_blank">PHP Net</a></p>
<p><a href="http://www.phpclasses.org" target="_blank">PHP Classes</a></p>
<p>The thing I liked about getting into PHP Programming was the amount of help and sample code out there is unbelievable, and if you work in WordPress you have a great place to test PHP stuff.</p>
<p>I would recommend setting up a dummy WordPress site, just to try things out, it is an excellent way to learn from the ground up.</p>
<p>If you ever need to just ask a simple question, give Twitter a try, there is always someone willing to help.</p>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/php-help/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

