<?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; Search Results  &#187;  textpad</title>
	<atom:link href="http://www.cybercoded.net/search/textpad/feed/rss2/" 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>Static HTML to WordPress Conversion Case Study</title>
		<link>http://www.cybercoded.net/static-html-to-wordpress-conversion-case-study/</link>
		<comments>http://www.cybercoded.net/static-html-to-wordpress-conversion-case-study/#comments</comments>
		<pubDate>Mon, 27 Dec 2010 13:49:09 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress How To]]></category>
		<category><![CDATA[Wordpress Themes]]></category>

		<guid isPermaLink="false">http://www.cybercoded.net/?p=1321</guid>
		<description><![CDATA[Converting older static html sites to WordPress is one of the most popular things for me to work on. Seems there are still a lot of older sites that have no CMS system and when people decide to finally convert these sites WordPress is one of the most popular options. I used my holiday time [...]]]></description>
			<content:encoded><![CDATA[<p>Converting older static html sites to WordPress is one of the most popular things for me to work on. Seems there are still a lot of older sites that have no CMS system and when people decide to finally convert these sites WordPress is one of the most popular options.</p>
<p>I used my holiday time to convert one of my own static sites. I wanted to use it as a case study in procedure and time. The site I converted was my Scripts and Database site, <a href="http://www.cybercoded.com/" target="new">CyberCoded.com</a>. This is one of my older sites and I have been too busy to convert it so I continued to manually add pages as needed.</p>
<p>I have about 10 hours invested in the whole process to convert this site. The bulk of the time is in the custom coding of a WordPress Theme from scratch to match an older site. There were 12 pages when I started and as some of the pages had different extensions I decided to convert the site using my favorite WordPress permalink structure and then redirect the old pages.</p>
<p>I used my <a href="http://theme1.cybercoded.net/" target="new">Blank WordPress Theme</a> so that I could start with a clean slate and match the design to the old site.</p>
<p>Here are the steps I took.</p>
<ol>
<li>Installed WordPress in a Sub Folder
<ul>
<li>Set Privacy setting to OFF while I developed the site in a sub folder.</li>
<li>Modified the permalink to my favorite which is /%postname%/</li>
</ul>
</li>
<li>Installed the Blank theme in the WordPress Themes folder.
<ul>
<li>I used FTP to upload the files into a new theme folder in WordPress.</li>
</ul>
</li>
<li>Copied and matched elements from the old Style.css file into the WordPress Style.css
<ul>
<li>The blank theme has an empty CSS file.</li>
<li>The Body and Links were the only elements called out in the old CSS file.</li>
<li>Added Wrapper, Content, Header and Footer Divs to CSS.</li>
</ul>
</li>
<li>Copied the Index.php file to home.php so I could have a custom Home page that would match the old page.
<ul>
<li>Simply copying the file like this makes a new home page with the home.php file.</li>
</ul>
</li>
<li>Modified the WordPress code in the Home page to show each category and posts as lists.
<ul>
<li>Stripped out the common WordPress Loop</li>
<li>Created new code that loops through the categories and list each post per category.</li>
<li>Set the Category to sort in Descending order.</li>
<li>Set the Post titles to sort Title in ascending order</li>
</ul>
</li>
<li>Created an Analytics.php file in the WordPress Theme to use throughout the site.
<ul>
<li>Retrieved the code from Google to use for analytics.php</li>
</ul>
</li>
<li>Created a Header.php file within the WordPress Theme to add common header elements.
<ul>
<li>Modified the Title so that it would be SEO friendly, very similar to most popular SEO plugins.</li>
<li>Added a call to analytics.php file</li>
</ul>
</li>
<li>Created a footer.php file in WordPress to add a common footer.
<ul>
<li>Used the code from the old static footer file for contact and info.</li>
</ul>
</li>
<li>Created Single.php page
<ul>
<li>Added a <a href="http://twitter.com/about/resources/tweetbutton" target="new">Tweet This button from Twitter</a>.</li>
</ul>
</li>
<li>Created my Categories to match old site.
<ul>
<li>The old site had headers for each item type which I converted to Categories.</li>
</ul>
</li>
<li>Copied each page from the old site into Textpad and removed any code that would interfere with WordPress.</li>
<li>Pasted each page into WordPress as a Post.</li>
<li>Created Tag Page.
<ul>
<li>Tag page list the excerpt for each Post that is tagged.</li>
</ul>
</li>
<li>Created <a href="http://www.cybercoded.com/fdlhfakldh">custom 404 page</a>.
<ul>
<li>The 404 page shows a tag cloud to visitors.</li>
</ul>
</li>
<li>Created Search page.
<ul>
<li>Search page only shows title for a matched post.</li>
</ul>
</li>
<li>Widgetized and added a sidebar.
<ul>
<li>Create and set widgets in the functions.php file.</li>
<li>Add sidebar.php and corresponding code to use widgets.</li>
<li>Added a <a href="http://developers.facebook.com/docs/reference/plugins/like" target="new">Facebook Like button</a>.</li>
<li>Added RSS Button and link.</li>
</ul>
</li>
<li>Copied the index.php from the WordPress sub folder to the root and modified the code to use WordPress from the Sub Folder.</li>
<li>Changed the Site Address within WordPress Admin to set the site in the root while leaving WordPress installed in the sub folder.</li>
<li>Redirected the old pages to the new WordPress pages using PHP header calls.</li>
<li>Installed and setup XML Sitemap Generator for WordPress Plugin</li>
</ol>
<p>ALL DONE !</p>
<p>I copied the old Index file so we can see a before and after look.</p>
<p><a href="http://www.cybercoded.com/index2.php" target="new">Original Page</a> versus <a href="http://www.cybercoded.com" target="new">New WordPress Site</a>.</p>
<p>Most of the time was in the Theme setup. Each page took about 5 minutes to convert the content to a WordPress Post.</p>
<p>12 Pages, 10 hours</p>
<p>Think I will send my wife a bill and see if it gets paid, lol&#8230;</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/static-html-to-wordpress-conversion-case-study/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Top Ten Daily Tools</title>
		<link>http://www.cybercoded.net/top-ten-daily-tools/</link>
		<comments>http://www.cybercoded.net/top-ten-daily-tools/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 13:00:36 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Ramblings]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[FireFox]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.cybercoded.net/?p=1129</guid>
		<description><![CDATA[While working and sharing tips with others I have come to realize just how important some tools are to me. Some of these are not really tools, but without them I would certainly have gaps to fill in my work flow. They are not necessarily in any particular order. TextPad Firefox with FireBug extension. Chrome [...]]]></description>
			<content:encoded><![CDATA[<p>While working and sharing tips with others I have come to realize just how important some tools are to me. Some of these are not really tools, but without them I would certainly have gaps to fill in my work flow.</p>
<p>They are not necessarily in any particular order.</p>
<ol>
<li>TextPad</li>
<li>Firefox with FireBug extension.</li>
<li>Chrome Browser</li>
<li>Skype</li>
<li>Google Talk</li>
<li>Google Reader</li>
<li>Twitter</li>
<li>Facebook</li>
<li>WordPress</li>
<li>Email (Gmail)</li>
</ol>
<p>As an extra mention, most of these are used on my desktop and my iPhone. I am still doing 99.9% of my work on an HP Mini 311 <a title="Verizon Netbook" href="http://www.cybercoded.net/verizon-wireless/" target="_self">Verizon Netbook</a>, which is simply amazing.</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/top-ten-daily-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Top 5 Desktop Applications List</title>
		<link>http://www.cybercoded.net/top-5-desktop-applications-list/</link>
		<comments>http://www.cybercoded.net/top-5-desktop-applications-list/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 14:18:43 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Ramblings]]></category>
		<category><![CDATA[Agent Ransack]]></category>
		<category><![CDATA[Desktop Tools]]></category>
		<category><![CDATA[Lynx Text Browser]]></category>
		<category><![CDATA[Ping]]></category>
		<category><![CDATA[Process Explorer]]></category>
		<category><![CDATA[SamSpade]]></category>
		<category><![CDATA[TextPad]]></category>
		<category><![CDATA[Whois]]></category>

		<guid isPermaLink="false">http://www.cybercoded.net/?p=399</guid>
		<description><![CDATA[I rarely talk about my computer, and the reason is that I try to do as much with Web Apps as I can. On any given day I will work on 3 different computers and I have to be able to keep working without skipping a beat. However, there are several desktop applications that I [...]]]></description>
			<content:encoded><![CDATA[<p>I rarely talk about my computer, and the reason is that I try to do as much with Web Apps as I can. On any given day I will work on 3 different computers and I have to be able to keep working without skipping a beat.</p>
<p>However, there are several desktop applications that I have to install to be in my zone. I have been using each one of these for as long as I can remember. </p>
<p><a title="Sam Spade" href="http://samspade.org/" target="_blank">Sam Spade</a> - Sam Spade is an integrated network query tool for Windows 95, 98, NT and Windows 2000. This tool allows me to keep several sites in the options as I am running traces, pings and whois calls.</p>
<p><a title="Agent Ransack" href="http://www.mythicsoft.com/agentransack/" target="_blank">Agent Ransack</a> - Freeware graphical file searching that supports regular expressions for Windows. I keep a copy of all software I download, such as a copy of each WordPress Release. With Agent Ransack I can quickly find any reference to anything I am looking for in a very large file folder.</p>
<p><a title="Process Explorer" href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx" target="_blank">Process Explorer</a> - Process Explorer, also known as procexp.exe, shows you information about which handles and DLLs processes have opened or loaded. If you want to know what is using up your resources on a Microsoft OS machine, this is the best way I have found. The biggest benefit to me is the ability to shut down and process without affecting the others.</p>
<p><a title="TextPad" href="http://www.textpad.com/" target="_blank">TextPad</a> - TextPad is an award winning text editor for Windows.  with powerful features that will increase your productivity. This is probably the most used tool I have. Everything I write or code gets passed through TextPad. There are so many features and reasons I could not possibly list them all.</p>
<p><a title="Lynx Text Browser" href="http://www.vordweb.co.uk/standards/download_lynx.htm" target="_blank">Lynx Text Browser</a> - Lynx is the text web browser. Recommended by Google to see what a site looks like to a Search Crawler. This package should be required of anyone who is working on website (blog) development. If you really want to know what it looks like, you have to check this out!</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/top-5-desktop-applications-list/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

