<?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>WordPress Web Hosting</title>
	<atom:link href="http://www.shrewdies.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shrewdies.net</link>
	<description>Business Web Hosting For Shrewdies Not Dummies</description>
	<lastBuildDate>Fri, 13 Jan 2012 14:33:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Beware The Sanitized Title Value</title>
		<link>http://www.shrewdies.net/1741/beware-the-sanitized-title-value/</link>
		<comments>http://www.shrewdies.net/1741/beware-the-sanitized-title-value/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 14:22:55 +0000</pubDate>
		<dc:creator>Keith from shrewdies</dc:creator>
				<category><![CDATA[Function]]></category>

		<guid isPermaLink="false">http://www.shrewdies.net/?p=1741</guid>
		<description><![CDATA[One victim of my current project to build my own theme &#038; plugin replacement is the shrewdBar menu. If you are quick, you will still see it at the top of the screen, and if I remember, I will save an example for posterity before I replace it. I found it to be the best, [...]]]></description>
			<content:encoded><![CDATA[<p>One victim of my current project to build my own theme &#038; plugin replacement is the shrewdBar menu. If you are quick, you will still see it at the top of the screen, and if I remember, I will save an example for posterity before I replace it.</p>
<p>I found it to be the best, most flexible, way to build a dynamic navigation structure. I need dynamic navigation to adjust the menu to reflect the changing importance of different pages. More importantly, I need it to present a customized navigation menu for each user.</p>
<p>I experimented with other formats, but nothing was as easy to use, and as easy to recognize as a strip of buttons across the top of the page. WordPress also saw how good this was, and continued to evolve the Admin Menu Bar. I felt this was too good to keep for administrators, and resolved to replace my shrewdBar with the WordPress Admin bar, enhanced by functions to add and remove menu items based on the visitor, and my page priority process.</p>
<p>This is very easy to do, and there are hundreds of websites with articles about amending the Admin bar. The codex page on the add_menu() function is quite clear, and so you probably do not need to read articles about it. In any case, it is deprecated from WordPress version 3.3, to be replaced with the add_node(), and Admin bar is now called Toolbar.</p>
<p>There is additional functionality in add_node() compared to add_menu(), but the function calls for my menu manipulation work just the same, so all you need to change in any example code is to replace add_menu with add_node. Then everything works OK, except it doesn&#8217;t.<br />
<span id="more-1741"></span></p>
<p>It might work OK in simple cases, but it is unlikely to work in most practical cases where you want to add a useful menu navigation system for your visitors. I have worked on, and with, menu systems for many years, in many forms. I do not like the approach of many programmers who dictate that they will group links to features as they think fit, and users must learn the right way to access them. The tradition has followed through applications into operating systems and websites. Adding bookmarks, and favorites goes some way to giving users choices, but the hierarchical menu tradition is the default setting for many. The WordPress Toolbar follows this tradition, but I want to offer more choice.</p>
<p>I am a firm believer in a structured approach to website building. It helps visitors, and it helps search engines, to organize topics into sections. A hierarchical menu to access each section and it&#8217;s main topics is a must. However, a large website has pages that relate across sections. It has priority pages that I want to draw attention to. I want visitors to be able to access their favorite pages, those of their buddies, and also see recommendations from like-minded people. Most websites do this by creating various tables or menus above, below and at the side of their articles. I want to stick all my navigation links in a  menu at the top of the screen. And I want to be able to <strong>show pages in more than one menu</strong>.</p>
<h2>The Perils Of Sanitized Title Value</h2>
<p>I do not like hacking around in the WordPress code, and I only look at it as a last resort to try and work out what is wrong. Several WordPress commentators build articles from snippets of WordPress code, to show how easy it is to extend or apply basic functions. They often copy and paste code that is amended from WordPress code, which is a good thing, as it goes back to the heart of open source programming. Whilst I was removing skin from my scalp trying to work out why my multiple menus seemed to be playing random tricks, I looked more closely at the snippets I had copied from a web article about building menus.</p>
<p>Menus are all about creating one root menu with a unique id, then adding sub-menu items in a loop for however many items you want to drop down when the mouse hovers over your root menu entry. It all starts falling apart from thereon, and I wont bore you with the details. Just to say that whatever you read about Admin bar add_menu(), or Toolbar add_node(), ignore what it says about id. The original code was confused between title, id, and defaults for id, and though later versions say id is compulsory, it isn&#8217;t, and if you do not specify it properly, your menus will fail to show properly.</p>
<p>The add_menu() function includes the fateful description for id:</p>
<blockquote><p>&#8220;defaults to a sanitized title value&#8221;</p></blockquote>
<p>The id argument, which must be unique, defaults to title if you do not specify it. Title is the wording you see for the menu item. It should be called MenuItemText to differentiate it from the HTML title property but it isn&#8217;t. I&#8217;ll call it MenuItemText, and I will accept that it should be unique in a single menu list. I might not want it to be, if I have a long list, and I want an important item to appear top and bottom, but I will accept that it has to be. I cannot accept that it has to be unique across the entire Toolbar. If you rely on default settings, even sanitized ones, then you must have unique titles. If you do not, then be sure to specify the id on all child menus. You have to set it on the root menu, so on the child menu, add the root id to the child MenuItemText (called title, remember), and make that the child id.</p>
<p>If you get stuck, ask in the <a title="Discuss Website Function And Plugins" href="http://shrewdies.org/web-business-questions/questions/plugins-and-other-funtionality">WordPress Functions forum</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shrewdies.net/1741/beware-the-sanitized-title-value/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website Health: A Long Way To Go</title>
		<link>http://www.shrewdies.net/1730/website-health-a-long-way-to-go/</link>
		<comments>http://www.shrewdies.net/1730/website-health-a-long-way-to-go/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 09:22:26 +0000</pubDate>
		<dc:creator>Keith from shrewdies</dc:creator>
				<category><![CDATA[Foundation]]></category>

		<guid isPermaLink="false">http://www.shrewdies.net/?p=1730</guid>
		<description><![CDATA[Since my last post here, my personal health has deteriorated, and my website health has suffered as a result. A few days after my last post, a fall resulted in a broken back, a broken skull, a broken knee, and broken dreams. But 2012 is the year to set all that aside. A time to [...]]]></description>
			<content:encoded><![CDATA[<p>Since my last post here, my personal health has deteriorated, and my website health has suffered as a result.</p>
<p>A few days after my last post, a fall resulted in a broken back, a broken skull, a broken knee, and broken dreams. But 2012 is the year to set all that aside. A time to fix the health of this website, and improve the health of all my visitors.</p>
<p>In a new project, I am working on bringing health freedom to people, their businesses, and their networks. I will share more of that with you as that develops, but since this website is here to support everyone who is responsible for building and operating websites, let me focus on website health here today.</p>
<p>There is a lot of confusing information about the way to test the health of your website. Various technical experts offer different views on the importance of many aspects of page structure. Various marketeers offer different views on the importance of many aspects of search engine optimization. Various online checkers have different methods for analyzing your page health. It is very easy to lose focus. We spend more time monitoring, analyzing, and improving, but that distracts us from the important job of delivering an easy-to-navigate website to as many people as possible.<br />
<span id="more-1730"></span></p>
<p>I have recently discovered the best tool to help webmasters since Google shared it&#8217;s vital Webmaster Tools. This new tool is only available to Firefox users at the moment. But then again, so am I.</p>
<p>Actually, that last bit is not strictly true, because I&#8217;ll work for anyone. However, I believe Firefox is the best browser for website building. Chrome is improving, and I also retain Microsoft Internet Explorer for testing. But successful webmasters are productive webmasters, so stick with whatever works for you. I use Chrome and Firefox together everyday. You are going to have to install Firefox if you want to take advantage of the tool I am about to describe. Other browsers may be covered in future releases.</p>
<h2>Your Website Health</h2>
<p>Before I start, I should warn that the following tool will not fix a bad site structure. If you have ignored my advice about a good website structure, then you will always be tending a sick donkey, compared to a thoroughbred race hound. I cannot blame you too much for not having a good plan, as I have not finished my articles about how to generate one on my management website. Let&#8217;s leave that one for now.</p>
<p>The tool you need for better website health is the aptly named <a href="http://www.prelovac.com/vladimir/browser-addons/seo-doctor" title="SEO Doctor">SEO Doctor from the exotically named Vladimir Prelovac</a>. Once installed as an add-on to your Firefox browser, SEO Doctor analyzes every page as it loads, giving you vital information about the health of your web pages. You get bonus points if you follow Vladimir&#8217;s advice:</p>
<blockquote><p>SEO Doctor works really well with <a href="https://addons.mozilla.org/en-US/firefox/addon/321/">Search Status</a>, in fact these may be the only two SEO extensions you will ever need in your browser.</p></blockquote>
<p>Actually they might be the only ones you NEED, but if I ever share my own add-on list with you, they will not be the only ones you WANT.</p>
<p>Over the next few days, I will describe the tests that SEO Doctor performs, and explain why they are important to you. In the meantime, there is excellent help built-in, and that includes links to Vladimir&#8217;s website for a more thorough explanation. Or, if you are stuck, or need any other help, please ask in the <a href="http://shrewdies.org/13/discuss-website-health/" title="Discuss Website Health">website health forum</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shrewdies.net/1730/website-health-a-long-way-to-go/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Entries</title>
		<link>http://www.shrewdies.net/blog/wordpress-pages/wordpress-entries/</link>
		<comments>http://www.shrewdies.net/blog/wordpress-pages/wordpress-entries/#comments</comments>
		<pubDate>Fri, 06 May 2011 15:14:24 +0000</pubDate>
		<dc:creator>Keith from shrewdies</dc:creator>
		
		<guid isPermaLink="false">http://www.shrewdies.net/</guid>
		<description><![CDATA[WordPress entries are the posts and pages that make the content your website. Your pages and posts only effective if people keep coming back to read them, and you can encourage this by sharing them at the earliest opportunity. There are many ways to encourage this, but one of the best ways is by sharing [...]]]></description>
			<content:encoded><![CDATA[<div class="kctIntro">
<p>WordPress entries are the posts and pages that make the content your website.</p>
<p>Your pages and posts only effective if people keep coming back to read them, and you can encourage this by sharing them at the earliest opportunity.</p></div>
<p>There are many ways to encourage this, but one of the best ways is by sharing WordPress entries by a subscription service. Of all the services I have used, FeedBurner from Google is the most effective. As this is a free service, it pays you to introduce it as soon as possible. During the early days, your content is limited, but if visitors find one of your early articles interesting, it is wise to inform them when you publish new content.</p>
<p>The process is particularly easy, as you are already registered with Google from the preparation for your <a href="http://www.shrewdies.net/hosting/wordpress-installation/">WordPress installation</a>. Simply go to FeedBurner.com, and add your feed (it is simply yourdomain.com/feed/).</p>
<p>Work through the registration wizard, selecting all options (though leave the podcasting options blank unless you will be producing podcasts). On the Optimize tab, enable SmartFeed and FeedFlare. On the Publicize tab, enable Email Subscriptions, then add the subscription form or link to as many places on your site as you can, including the sidebar, footer, and the end of your articles where relevant.</p>
<p>Just like this:</p>
<form style="border:1px solid #ccc;padding:3px;text-align:center;" action="http://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=shrewdiesDotNet', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true">
<p>Keep up-to-date. Enter your email address:</p>
<input type="text" style="width:140px" name="email"/>
<input type="hidden" value="shrewdiesDotNet" name="uri"/>
<input type="hidden" name="loc" value="en_US"/>
<input type="submit" value="Subscribe By Email" />
<p>Or <a href="http://feeds.feedburner.com/shrewdiesDotNet" rel="alternate" type="application/rss+xml"><img src="http://www.feedburner.com/fb/images/pub/feed-icon16x16.png" alt="XML, RSS"  style="vertical-align:middle;border:0;" /> Subscribe by Feed (RSS)</a>
</p>
</form>
]]></content:encoded>
			<wfw:commentRss>http://www.shrewdies.net/blog/wordpress-pages/wordpress-entries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Pages</title>
		<link>http://www.shrewdies.net/blog/wordpress-pages/</link>
		<comments>http://www.shrewdies.net/blog/wordpress-pages/#comments</comments>
		<pubDate>Fri, 06 May 2011 06:52:18 +0000</pubDate>
		<dc:creator>Keith from shrewdies</dc:creator>
		
		<guid isPermaLink="false">http://www.shrewdies.net/</guid>
		<description><![CDATA[WordPress Pages are used for most of your website reference content. Whilst this is largely a management process, covered at shrewdies.com, there are a few pages that, as technical manager, you need to provide, or at least ensure they are fulfilled by the management team. As well as providing useful visitor information, these pages give [...]]]></description>
			<content:encoded><![CDATA[<div class="kctIntro">
<p>WordPress Pages are used for most of your website reference content.</p>
<p>Whilst this is largely a management process, covered at shrewdies.com, there are a few pages that, as technical manager, you need to provide, or at least ensure they are fulfilled by the management team.</p></div>
<p>As well as providing useful visitor information, these pages give your site more credibility. Though generally referred to as &#8220;admin&#8221; pages, and therefore fairly boring, I like to see them as a creative challenge to make them as interesting as possible. I&#8217;ll look at how you make a Privacy Policy or Funding Policy interesting later, but let&#8217;s consider the structure first.</p>
<h2>Admin WordPress Pages Structure</h2>
<p>Often grouped under the &#8220;About&#8221; heading, you could even be creative about that, but the important thing is to make them as relevant to your website topic as possible. Even basic changes can make a difference, e.g. instead of Contact Us, write a contact page that&#8217;s a little more inviting such as &#8220;Contact Shrewdies About Saving Money On Web Hosting.&#8221;</p>
<p>As far as your all-important site structure is concerned, these pages are also an opportunity to apply a strong topic related keyword that you do not have much content for. When I started this site, I had not included these admin pages in my website blueprint, so I just used an &#8220;about&#8221; section. For most sites now, I build these pages in a &#8220;key-topic related&#8221; section, or choose an appropriate topic synonym. For example, I could change the About section to Sidebar, Website, or similar.</p>
<h2>Admin WordPress Pages List</h2>
<p>This is a list of common pages to include in your Admin/About section. Please add your suggestions in the forum. The most important pages are marked with a *.</p>
<ul>
<li>*About This Website
</li>
<li>Forum Guide
</li>
<li>Commenting Guide
</li>
<li>* Privacy Policy
</li>
<li>Linking Policy
</li>
<li>* Contact Form
</li>
<li>* Advertising/Funding Policy</li>
<li>Road Map</li>
<li>* <a href="http://www.shrewdies.net/blog/wordpress-pages/wordpress-entries/" title="Subscribe To WordPress Entries Updates">Update Service</a></li>
</ul>
<h2>WordPress Pages: Next Steps</h2>
<p>You should plan to get these pages published as soon as possible after you complete your <a href="http://www.shrewdies.net/hosting/wordpress-configuration/">website configuration</a>. Start with the pages marked * above, but think of creative, topic-related titles and content.</p>
<p>If you have any questions, problems, or theories about WordPress Pages, please raise them in the Fulfillment Forum.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shrewdies.net/blog/wordpress-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Configuration</title>
		<link>http://www.shrewdies.net/hosting/wordpress-configuration/</link>
		<comments>http://www.shrewdies.net/hosting/wordpress-configuration/#comments</comments>
		<pubDate>Wed, 06 Apr 2011 06:04:19 +0000</pubDate>
		<dc:creator>Keith from shrewdies</dc:creator>
		
		<guid isPermaLink="false">http://www.shrewdies.net/</guid>
		<description><![CDATA[WordPress configuration starts just as soon as you&#8217;ve completed your WordPress Installation But, don&#8217;t even think about it if you do not have your site blueprint. Rushing in at this point without a clear site content plan will seriously damage your future prospects. There are a bunch of settings that control your WordPress website. Most [...]]]></description>
			<content:encoded><![CDATA[<div class="kctIntro">
<p>WordPress configuration starts just as soon as you&#8217;ve completed your <a href="http://www.shrewdies.net/hosting/wordpress-installation/" title="WordPress Installation: Vital Tips For A Successful Start">WordPress Installation</a></p>
<p>But, don&#8217;t even think about it if you do not have your site blueprint. Rushing in at this point without a clear site content plan will seriously damage your future prospects.</p></div>
<p>There are a bunch of settings that control your WordPress website. Most are common across free WordPress.com and hosted WordPress.org sites, so unless I state otherwise, assume my explanations apply to both (or I&#8217;ve made a mistake <img src='http://www.shrewdies.net/wp-includes/images/smilies/icon_smile.gif' alt=':smile:' class='wp-smiley' /> ). Most can be tweaked as your website grows, but some must be set from the start.</p>
<h2>Enhancing wp-config.php</h2>
<p>Hosted WordPress.org only. This can actually be done at any time &#8211; usually when you get sick of the huge list of revisions, or hit an out of memory error.<br />
Edit wp-config.php to add:<br />
<code>define('WP_MEMORY_LIMIT', '64M');<br />
define('WP_POST_REVISIONS', 3);</code></p>
<p>See <a href="http://www.shrewdies.net/452/wp-config-php-essentials/" rel="next">wp-config.php Essentials</a> for more.</p>
<h2>WordPress Settings</h2>
<p>In the Admin area, there are several pages in the Settings section. Go through these in turn:</p>
<h3>General Settings</h3>
<dl>
<dt>Site Title &#038; Tagline</dt>
<dd>From your site blueprint.</dd>
<dt>Membership</dt>
<dd>Tick for a community site, otherwise leave blank.</dd>
<dt>Timezone</dt>
<dd>Your main market, if known, otherwise your local time.</dd>
</dl>
<h3>Discussion Settings</h3>
<dl>
<dt>Allow link notifications &#038; Allow people to post comments</dt>
<dd>Tick for community websites otherwise make blank, and ignore rest of discussion settings.</dd>
<dt>Users must be registered</dt>
<dd>Not vital, but forcing registration reduces spam.</dd>
<dt>Comment Moderation</dt>
<dd>Again, not vital, but I usually change the default from 2 to 1.</dd>
</dl>
<h3>Privacy Settings</h3>
<dl>
<dt>Site Visibility</dt>
<dd>Should have been set during installation, but double-check to make sure you are visible to search  engines.</dd>
</dl>
<h3>Permalink Settings</h3>
<dl>
<dt>Custom Structure</dt>
<dd>Make sure custom is selected and change it to <em>/%post_id%/%postname%/</em></dd>
<dt>Category base</dt>
<dd>From your site blueprint. Ensure this will never be the same as any planned Page Title</dd>
<dt>Tag base</dt>
<dd>From your site blueprint. Ensure this will never be the same as any planned Page Title</dd>
</dl>
<h2>WordPress Categories &#038; Tags</h2>
<p>Setup the WordPress Categories (Admin &#8211; Posts &#8211; Categories) according to your website blueprint. Don&#8217;t forget to change uncategorized to your key market target, then add the other sections of your site. Though you can add the sections as you write the first article in that section, you will miss out on the description. I cover category descriptions in more depth in the Format section.</p>
<p>You should also setup the WordPress Post Tags (Admin &#8211; Posts &#8211; Post Tags) before you start publishing articles. Except for small sites, I find this a little tedious, so I tend to do it a section at a time as I work through the site blueprint. Eventually, I&#8217;ll add import features to the website development tools to do this automatically (with categories, and vital settings), but that is for the future.</p>
<h2>WordPress Configuration: Next Steps</h2>
<p>Your website is now just about operational, and you can edit or delete the example pages and posts that WordPress installs automatically.</p>
<p>Getting the first 50-60 pages published is the key task now, though if you are part of a team, you can hand this over to the Content Managers. If you are working alone, you will now constantly switch hats between Website Technical Manager (or webmaster) and Web Business Manager. See my website production introduction for the overview of managing the launch stage. For your next technical tasks, see the Function &#038; Format sections.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shrewdies.net/hosting/wordpress-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Tools To Enhance WordPress Installation</title>
		<link>http://www.shrewdies.net/1692/google-tools-to-enhance-wordpress-installation/</link>
		<comments>http://www.shrewdies.net/1692/google-tools-to-enhance-wordpress-installation/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 16:33:22 +0000</pubDate>
		<dc:creator>Keith from shrewdies</dc:creator>
				<category><![CDATA[Foundation]]></category>

		<guid isPermaLink="false">http://www.shrewdies.net/?p=1692</guid>
		<description><![CDATA[In today&#8217;s page about installing WordPress, I&#8217;ve mentioned some essential tools. I&#8217;ve selected Google versions since they are free, effective, and easy to implement. As I mentioned, these tools are so easy to use, they do not really merit step-by-step instructions, though I will do this for some of the reporting features that I use [...]]]></description>
			<content:encoded><![CDATA[<div class="kctIntro">
<p>In today&#8217;s page about <a href="http://www.shrewdies.net/hosting/wordpress-installation/" title="WordPress Installation">installing WordPress</a>, I&#8217;ve mentioned some essential tools. I&#8217;ve selected Google versions since they are free, effective, and easy to implement.</p>
</div>
<p>As I mentioned, these tools are so easy to use, they do not really merit step-by-step instructions, though I will do this for some of the reporting features that I use elsewhere. The tools are important, as they give you management tools (covered at <a href="http://shrewdies.com/">Shrewdies Web Business Management</a>), and technical development tools covered throughout this site.</p>
<p>Of course, you may prefer tools from other companies, and I&#8217;m always happy to discuss the comparison, or help with other tools. Just use the forum to discuss alternatives, or ask for help.</p>
<p>The essential tools I cover here are Google Analytics, and Google Webmaster Tools. </p>
<p>Analytics gives you vital information about how traffic arrives at your site, where it comes from, and what happens to your visitors once they arrive at your site. Though much of this is for management use, technicians will find some of the information crucial for making decisions about navigation. Note that Analytics cannot be used on WordPress.com sites, which do have some free site usage statistics, but none that will help you monitor navigation paths.</p>
<p>Webmaster Tools gives you a wide range of information about site performance and interaction with the rest of the Internet. Though some of this is vital for management use, most of it is crucial to technicians to determine and fix weaknesses, and to make the most of your strengths.</p>
<p>The implementation screens for both these services are very simple, so I will not spend much time explaining them. There is plenty of flexibility about the way you enable them, and I will present what I believe is the optimum sequence.</p>
<h2>Google Analytics</h2>
<p>It pays to start with Analytics, as Google will use that account to verify Webmaster Tools later (though there are several other options). Once your Google account is open, you need to add a new Profile in Google Analytics, and you need to choose the option for a new domain.</p>
<p>Your first question, after entering your website domain address, is to choose a time zone. As all information is summarized by day (and other time intervals), you need to choose something that suits you best. This is normally your local time zone, but if your market is predominately located elsewhere, then it might help to chose that location. Ideally, you would choose the same timezone as your webserver location, but this is not critical. I find that, once in use, most of your time is spent comparing current time periods with historical positions to see if you are improving, so it doesn&#8217;t particularly matter where each day starts. If you plan to use AdSense or AdWords on the same website, then it really does help to have consistent timezones, but it will not harm you if you do not.</p>
<p>Note that the Country selector is a little strange &#8211; common countries are listed at the top, followed by less populous countries.</p>
<p>After entering your timezone, the next screen gives some code to add to your website.</p>
<p>The simplest way to add this to your website is to copy the code, and add it to the footer.php file in your theme (Admin &#8211; Appearance &#8211; Editor &#8211; footer.php). This has drawbacks because it means you have to repeat this edit if you change your theme, and you cannot easily use advance features without adding your own PHP or JavaScript code.</p>
<p>The better way is to use a WordPress Plugin to add Analytics code to your site simply by setting your profile Web Property ID, and other optional choices. I&#8217;m currently testing three plugins on various websites, and will report back on them in due course. In the meantime, you can discuss your own plugin choice or experiences in the Hosting forum.</p>
<p>Once your plugin options have been set, and your site starts generating traffic, and this will be monitored by Google Analytics. Remember, if you have set options not to track your own visits, you will not generate any Analytics data until you, or somebody else, visits the site without being logged in. There will be a few minutes delay between your first visit, and the Analytics screen reporting you as verified. As ever, if you have problems, please use the hosting forum.</p>
<h2>Google Webmaster Tools</h2>
<p>On your self-hosted WordPress.org website, enabling Google Webmaster Tools is as simple as adding the site URL, and choosing the &#8220;Link to your Google Analytics account&#8221; option. (Update: for this to work, it requires Asynchronous Analytics code <strong>in your page header</strong>. Not all plugins do this, as you will see in my forthcoming review, so probably best to choose one of the other options &#8211; I prefer uploading a file. I will do a further in-depth report on Webmaster Tools soon)</p>
<p>If you have a free WordPress.com site you can enable WebMaster Tools by choosing the &#8220;Add a meta tag to your site&#8217;s home page&#8221; option. This will reveal  a meta tag, and you need to highlight the content part of that tag &#8211; excluding the quotes. Paste this into the Tools (Admin &#8211; Tools) box labeled &#8220;Google Webmaster Tools&#8221; and save your changes.</p>
<p>For both these options, you click the Verify button next, and Google will report your site as verified, though you might have to wait a few minutes.</p>
<p>Though neither of these tools will provide much value until you publish some pages, you will soon find the data, especially from Webmaster Tools, to be indispensable. Please discuss your experiences with these tools, and any other similar services, on the <a href="http://www.shrewdies.net/web-hosting-forum/host-forum/">hosting forum</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shrewdies.net/1692/google-tools-to-enhance-wordpress-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Installation</title>
		<link>http://www.shrewdies.net/hosting/wordpress-installation/</link>
		<comments>http://www.shrewdies.net/hosting/wordpress-installation/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 14:49:35 +0000</pubDate>
		<dc:creator>Keith from shrewdies</dc:creator>
		
		<guid isPermaLink="false">http://www.shrewdies.net/</guid>
		<description><![CDATA[This covers getting a new WordPress installation ready on the Internet to start adding pages, following your site blueprint. Strictly speaking, the site blueprint is not required until the next stage, configuration. However that plan is so important to your success, that you should make sure you have it before going further. The other thing [...]]]></description>
			<content:encoded><![CDATA[<div class="kctIntro">
<p>This covers getting a new WordPress installation ready on the Internet to start adding pages, following your site blueprint. Strictly speaking, the site blueprint is not required until the next stage, configuration. However that plan is so important to your success, that you should make sure you have it before going further.</p>
</div>
<p>The other thing you need is your domain name, unless you are starting with the free WordPress.com option described below. Domain names are normally registered when you open the hosting account described below, but for extra domains, I recommend <a href="http://x.co/UMva">GoDaddy</a>. I explain why extra domain names are useful elsewhere, or you can ask about this in the hosting forum.</p>
<h2>Installation Preparation</h2>
<p>In addition to the site blueprint that I keep banging on about, there are some services that will enhance almost all web businesses, regardless of how and where they are hosted.</p>
<p>I tend to use Google services, as they are largely free from charge, and very effective. Alternatives do exist, and I discuss these on Shrewdies Interactive.</p>
<p>Two essential services are Analytics and Webmaster Tools. Setting up these services is very straightforward, so I will not bother with detailed instructions. Though you can register your domain with these services now, you can only complete the process when you have installed your website using the instructions below. For effective use of Google Analytics, you will also need to add an appropriate plugin or amend your site theme.</p>
<h2>WordPress.com Installation</h2>
<p>WordPress.com does not actually have an installation process &#8211; that&#8217;s the beauty of it &#8211; all the detailed technical stuff is done for you. All you need to do is register, and you can &#8220;install&#8221; as many websites as you like. Once registered, see the <a href="#next">Next Steps</a> notes below.</p>
<h2>WordPress.org Installation USA</h2>
<p>If you are planning a global web business, or a market targeting the uSA specifically, it is best to use a website server based in the USA. Experience tells me to avoid Bluehost &#8211; though recommended by WordPress, I find their server configuration very awkward, which limits some of the features I like to use, and their customer support is poor (as at 2010). I have had good technical support from Justhost, but their commercial support is terrible &#8211; as soon as you start to be successful, you break their barriers, and get suspended with no warning. Though they do offer an upgrade path, this is after you&#8217;ve lost at least one day&#8217;s business &#8211; a real budding business killer.</p>
<p>Since 2010, I&#8217;ve used <a href="http://www.dreamhost.com/r.cgi?1063522">DreamHost</a>, and found them to be excellent. See my <a href="http://www.shrewdies.net/about/web-hosting-prices/" title="shrewdies Web Hosting Prices &amp; WordPress Costs">Web Hosting Prices</a> page for more details.</p>
<p>I believe the installation process to be so simple that I haven&#8217;t (at least yet) provided a step-by-step guide. You can discuss any issues in the forum, but please note that if you order your DreamHost account through my link above, I&#8217;ll happily complete the installation process for you.</p>
<p>Use the DreamHost automated WordPress installation (the customized version), and WordPress will be live in around ten minutes. Alternatively, you can log into your domain via FTP, and follow the famous five minute install process.  Once installed, see the <a href="#next">Next Steps</a> notes below.</p>
<h2>WordPress.org Installation UK</h2>
<p>If you are hosting a .co.uk domain, or targetting UK markets with other domain names, it pays to use a UK based server, both for speed, and audience matching reasons. I now use <a href="http://my.nativespace.co.uk/aff.php?aff=248">NativeSpace.co.uk</a>, and have found them to be very reliable, cost effective, and user-friendly. See my <a href="http://www.shrewdies.net/about/web-hosting-prices/" title="shrewdies Web Hosting Prices &amp; WordPress Costs">Web Hosting Prices</a> page for more details.</p>
<p>I believe the installation process to be so simple that I haven&#8217;t (at least yet) provided a step-by-step guide. You can discuss any issues in the forum, but please note that if you order your NativeSpace account through my link above, I&#8217;ll happily complete the installation process for you.</p>
<p>Use the NativeSpace automated WordPress installation under Fantastico in cPanel, and WordPress will be live in around two minutes. Alternatively, you can log into your domain via FTP, or use the cPanel File Manager, and follow the famous five minute install process.  Once installed, see the <a href="#next">Next Steps</a> notes below.</p>
<h2>Non-WordPress Sites &#038; Other Countries</h2>
<p>Please discuss non-WordPress installation issues, or hosting in other countries in the hosting forum. If common questions arise, I&#8217;ll add explanations to this page.</p>
<h2 id="next">WordPress Installation: Next Steps</h2>
<p>Now that you have an accessible website, you are probably eager to turn it over to the content building team (or put your content management hat on if you are a one-man-band). But there is at least one more step required first. You must apply various settings that shape how WordPress (or your alternative CMS) operates to suit your site blueprint. I deal with these in the <a href="http://www.shrewdies.net/hosting/wordpress-configuration/">WordPress Configuration</a> pages.</p>
<p>In most cases, you will also need to add functionality using plugins, and organize your format using themes, but these can be done during the early stages of content building.</p>
<p><a href="http://www.shrewdies.net/host/" title="WordPress Hosting Foundation For Shrewdies">Leave the WordPress Installation page to browse the rest of WordPress Hosting Foundations</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shrewdies.net/hosting/wordpress-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

