<?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>Interconnect IT - WordPress Consultants, Web Development and Web Design &#187; Web Development</title>
	<atom:link href="http://interconnectit.com/tag/web-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://interconnectit.com</link>
	<description></description>
	<lastBuildDate>Wed, 08 Feb 2012 17:36:30 +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>Spots for WordPress Developer Notes</title>
		<link>http://interconnectit.com/2906/spots-for-wordpress-developer-notes/</link>
		<comments>http://interconnectit.com/2906/spots-for-wordpress-developer-notes/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 09:26:10 +0000</pubDate>
		<dc:creator>Tom J Nowell</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[Documentation]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Spots]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://interconnectit.com/?p=2906</guid>
		<description><![CDATA[Our Spots for WordPress plugin is designed to make your content management life with WP even easier. Although there are developer notes on the WordPress.org repository, we&#8217;ve decided to maintain a page here where we can possibly show a broader range of information in the future, depending on the take-up of the plugin. Template tags Spots provides 2 template tags&#8230; <a class="more" href="http://interconnectit.com/2906/spots-for-wordpress-developer-notes/">continue reading <span class="unicode">&#8674;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Our <a title="Spots for WordPress" href="http://wordpress.org/extend/plugins/spots/other_notes/">Spots for WordPress plugin</a> is designed to make your content management life with WP even easier.</p>
<p>Although there are developer notes on the WordPress.org repository, we&#8217;ve decided to maintain a page here where we can possibly show a broader range of information in the future, depending on the take-up of the plugin.</p>
<h2>Template tags</h2>
<p>Spots provides 2 template tags for developers named <code>icit_spot</code> and <code>icit_get_spot</code>.</p>
<h3>icit_spot</h3>
<p>This template tag echos out a spot:</p>
<pre><code>icit_spot( $id_or_name, $template );</code></pre>
<p>It takes the following parameters:</p>
<ul>
<li><code>$id_or_name</code>: Required. A numeric ID or the name of a spot as a string.</li>
<li><code>$template</code>: Optional. A string used in a call to <code><a href="http://codex.wordpress.org/Function_Reference/get_template_part" target="_blank">get_template_part</a>()</code></li>
</ul>
<h3>icit_get_spot</h3>
<p>This template tag performs the same function, but it allows the developer to specify wether to echo the result, or return it as a variable:</p>
<pre><code>icit_get_spot( $id_or_name, $template, $echo );</code></pre>
<p>It takes the following extra parameter:</p>
<ul>
<li><code>$echo</code>: Optional. Defaults to false. A boolean to indicate whether to echo the spot content or just return it.</li>
</ul>
<h2>Basic Usage</h2>
<p>You can use spots to replace boilerplate text in your themes. If you have areas in your themes where typically you would hard code the text you could use the following code:</p>
<pre><code>if ( <a href="http://php.net/manual/en/function.function-exists.php" target="_blank">function_exists</a>( 'icit_spot' ) )
    icit_spot( 'Copyright' );</code></pre>
<p>The above code would output the contents of a spot titled &#8216;Copyright&#8217;. If the spot does not exist it will be created as a draft. Spots in draft mode are only visible to logged in users with editing capabilities.</p>
<h2>Templates</h2>
<p>The plugin will initially look for a file in your theme using the <code><a href="http://codex.wordpress.org/Function_Reference/get_template_part" target="_blank">get_template_part</a>()</code> function. If you have a file called <code>spot.php</code> in your theme that will be the default template for all spots. The <code>icit_spot()</code> function can take a second parameter for the template part to use for example:</p>
<pre><code>if ( <a href="http://php.net/manual/en/function.function-exists.php" target="_blank">function_exists</a>( 'icit_spot' ) )
    icit_spot( 'Copyright', 'copyright' );</code></pre>
<p>The above code will make the plugin look in your theme folder for a file called <code>spot-copyright.php</code> to use for the output. If not available it will fall back to <code>spot.php</code> and if that is not available it will simply output the spot contents.</p>
<p>Use templates when you want to display a featured image from a spot or if you require some additional/alternative markup for the spot. Spots are just like posts, so in the templates you retrieve the contents of the spot using <code><a href="http://codex.wordpress.org/Function_Reference/the_content" target="_blank">the_content</a>()</code> just as would in the loop.</p>
<h3>Basic spot template example:</h3>
<pre><code>&lt;div class="spot"&gt;
    &lt;?php <a href="http://codex.wordpress.org/Function_Reference/the_content" target="_blank">the_content</a>(); ?&gt;
&lt;/div&gt; </code></pre>
<h3>Spot template with featured image:</h3>
<pre><code>&lt;div class="spot-with-image"&gt;
    &lt;?php
    if ( <a href="http://codex.wordpress.org/Function_Reference/has_post_thumbnail" target="_blank">has_post_thumbnail</a>() )
        <a href="http://codex.wordpress.org/Function_Reference/the_post_thumbnail" target="_blank">the_post_thumbnail</a>( 'medium' );
    <a href="http://codex.wordpress.org/Function_Reference/the_content" target="_blank">the_content</a>(); ?&gt;
&lt;/div&gt; </code></pre>
<h2>Additional</h2>
<p>There are many filters and hooks available to get even more out of spots, so drop by the plugin homepage or use the forums if there is something you need to do with spots but aren&#8217;t sure how.</p>
]]></content:encoded>
			<wfw:commentRss>http://interconnectit.com/2906/spots-for-wordpress-developer-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 10 Functions for functions.php</title>
		<link>http://interconnectit.com/1725/top-10-functions-for-functions-php/</link>
		<comments>http://interconnectit.com/1725/top-10-functions-for-functions-php/#comments</comments>
		<pubDate>Thu, 10 Feb 2011 16:23:00 +0000</pubDate>
		<dc:creator>Robert O'Rourke</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://interconnectit.com/?p=1725</guid>
		<description><![CDATA[I thought I&#8217;d share some of the functions that go into most of our custom WordPress themes. If you have your own favourites then get commenting! Removing the auto capitalisation of &#8216;WordPress&#8217; When version  3.0 was released a fairly simple filter appeared called capital_P_dangit. This was committed to the core by Matt Mullenweg for the purposes of brand reinforcement. Suffice&#8230; <a class="more" href="http://interconnectit.com/1725/top-10-functions-for-functions-php/">continue reading <span class="unicode">&#8674;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I thought I&#8217;d share some of the functions that go into most of our custom WordPress themes. If you have your own favourites then get commenting!</p>
<ol>
<li>
<h3>Removing the auto capitalisation of &#8216;WordPress&#8217;</h3>
<p>When version  3.0 was released a fairly simple filter appeared called capital_P_dangit. This was committed to the core by Matt Mullenweg for the purposes of brand reinforcement. Suffice to say many in the community weren&#8217;t thrilled by this passive-aggressive pedantry for a multitude of very good reasons but that&#8217;s another story (you can read all about it in <a href="http://justintadlock.com/archives/2010/07/08/lowercase-p-dangit">Justin Tadlock&#8217;s article on the subject</a>).</p>
<pre>// remove capital_P_dangit
foreach( array( 'the_content', 'the_title', 'comment_text' ) as $filter )
    remove_filter( $filter, 'capital_P_dangit' );</pre>
</li>
<li>
<h3>Change excerpt length</h3>
<p>The default excerpts in WordPress are reasonable but rarely fit with the design you are working to. Alter the number of characters returned in an excerpt with the following snippet.</p>
<pre>function theme_excerpt_length( $length ) {
    return 80; // 80 characters long
}
add_filter('excerpt_length', 'theme_excerpt_length');</pre>
</li>
<li>
<h3>Change the excerpt truncation text</h3>
<p>You can alter the text that appears at the point of truncation, ie. &#8216;[...]&#8216;, to anything you want, including a useful link to the post page.</p>
<pre>function theme_excerpt_more( $more ) {
    global $post;
    return '&amp;hellip; &lt;a class="read-more" href="'. get_permalink($post-&gt;ID) . '"&gt;' . __('Continue reading') . '&lt;/a&gt;';
}
add_filter('excerpt_more', 'theme_excerpt_more');</pre>
</li>
<li>
<h3>Adding contact methods to the user profile</h3>
<p>On every recent project we have had there has been a need for extra user data, such as Twitter username, FaceBook URL and so on. The user profile screen can be edited using a combination of action hooks but WordPress also has a very simple way to add extra contact methods.</p>
<pre>function more_contactmethods( $contactmethods ) {
    $contactmethods['twitter'] = 'Twitter username';
    $contactmethods['facebook'] = 'Facebook URL';
    return $contactmethods;
}
add_filter( 'user_contactmethods', 'more_contactmethods' );</pre>
</li>
<li>
<h3>Removing the inline stylesheet from galleries</h3>
<p>By default WordPress spits out an inline stylesheet whenever the gallery shortcode is used within a post. The reasoning is that users can control the number of columns each gallery has and the sizes of the images within them as well as a few other options. While it is a noble quest to give users more power over their images it also allows them to screw things up in new and exciting ways when using a custom theme. Adding style tags within the body of an HTML document is also invalid markup.</p>
<p>Thanks to <a href="http://zeo.unic.net.my/remove-wordpress-gallery-shortcode-embedded-css/">Safirul Alredha</a> for this code:</p>
<pre>// remove gallery shortcode styling
add_filter('gallery_style',
    create_function(
        '$css',
        'return preg_replace("#&lt;style type=\'text/css\'&gt;(.*?)&lt;/style&gt;#s", "", $css);'
    )
);</pre>
</li>
<li>
<h3>Replacing the gallery shortcode handler</h3>
<p>While the above snippet does a good enough job in many cases I still find the built in gallery shortcode function to be questionable. For example you can change what HTML tags the gallery outputs with (the default being a semantically poor series of definition lists) but there is no way to set theme defaults without parsing post/page content and adding the attributes to the shortcode programmatically. This is a bad idea for general use themes because it will screw up peoples sites if they switch to another theme in future.</p>
<p>The shortcode can be rescued however by simply removing it and replacing it with your own callback:</p>
<pre>// replace gallery shortcode
remove_shortcode('gallery');
add_shortcode('gallery', 'theme_gallery_shortcode');

function theme_gallery_shortcode( $attr ) {
    global $post, $wp_locale;
    // create your own gallery output...
}</pre>
<p>You can alternatively use the built in shortcode&#8217;s internal filter &#8216;post_gallery&#8217; to change the output and handling of the standard shortcode attributes.</li>
<li>
<h3>Adding custom post types to search results</h3>
<p>Hopefully any custom post types that are set as publicly queryable will be included in the search results by default in future releases of WordPress but for now you can use the following code:</p>
<pre>function search_post_types( $query ) {
    if ( $query-&gt;is_search )
        $query-&gt;set( 'post_type', get_post_types( array( 'publicly_queryable' =&gt; 1 ) ) );
    return $query;
}
add_filter( 'the_search_query', 'search_post_types' );</pre>
</li>
<li>
<h3>Adding custom post types to the main RSS feed</h3>
<p>This can make sense for some sites if you want an amalgamated feed of all your content. We use an array filter in this case to get only those post types that have taxonomies so page-like content is ignored.</p>
<pre>function feed_post_types( $vars ) {
    if ( isset($vars['feed']) &amp;&amp; !isset($vars['post_type']) )
        $vars['post_type'] = array_filter( get_post_types( array( 'publicly_queryable' =&gt; 1 ) ), 'get_object_taxonomies' );
    return $vars;
}
add_filter( 'request', 'feed_post_types' );</pre>
</li>
<li>
<h3>Enable post thumbnails</h3>
<p>This is one is pretty straightforward. Make use of WordPress 3.0&#8242;s post thumbnail feature in your theme.</p>
<pre>add_theme_support( 'post-thumbnails' );</pre>
</li>
<li>
<h3>Enable shortcodes in the text widget</h3>
<p>This little trick makes the text widget into a much more powerful tool. It&#8217;s used on this site to add an author list to the widget space in the footer, avoiding the need to code a specific author list widget.</p>
<pre>add_filter( 'widget_text', 'do_shortcode' );</pre>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://interconnectit.com/1725/top-10-functions-for-functions-php/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>The Danger of Unpaid Consulting, And One Answer&#8230;</title>
		<link>http://interconnectit.com/83/the-danger-of-unpaid-consulting-and-one-answer/</link>
		<comments>http://interconnectit.com/83/the-danger-of-unpaid-consulting-and-one-answer/#comments</comments>
		<pubDate>Tue, 12 Feb 2008 11:46:03 +0000</pubDate>
		<dc:creator>Interconnect IT</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[consultancy]]></category>
		<category><![CDATA[costs]]></category>
		<category><![CDATA[free consultancy]]></category>
		<category><![CDATA[leads]]></category>
		<category><![CDATA[prospects]]></category>
		<category><![CDATA[sales]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://liverpoolwebdesigner.wordpress.com/?p=83</guid>
		<description><![CDATA[One thing that happens a lot in the web development and design sphere is the problem of unpaid consulting. Actually, I&#8217;ll rephrase it a little&#8230; it happens all the time! It&#8217;s rather tricky. Clients are interested in us because we offer them something that gives them better efficiency, sales and returns. But what we do is complex and sophisticated. As&#8230; <a class="more" href="http://interconnectit.com/83/the-danger-of-unpaid-consulting-and-one-answer/">continue reading <span class="unicode">&#8674;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>One thing that happens a lot in the web development and design sphere is the problem of unpaid consulting.</strong></p>
<p>Actually, I&#8217;ll rephrase it a little&#8230; it happens <em>all the time!</em></p>
<p>It&#8217;s rather tricky.  Clients are interested in us because we offer them something that gives them better efficiency, sales and returns.  But what we do is complex and sophisticated.</p>
<p>As it&#8217;s myself that does all the sales work I often find myself giving over two hours of my time to a prospect in order to explain how the dynamic websites work.  I&#8217;m educating them.  For two hours.<span id="more-83"></span></p>
<p>How much would it actually cost to get an expert in any field to educate someone for that period of time on a one-to-one basis?  £120?  £240?  Certainly it wouldn&#8217;t be cheap.</p>
<p>Yet there I am, explaining various elements of design, hosting and development&#8230; all for free.</p>
<p>Not only that, but many clients expect proposals, complete with mockups.  For free too, of course.  After all, we&#8217;re only selling.</p>
<p>And it&#8217;s a trap I think that all IT types need to be wary of.  We&#8217;re natural born &#8216;pleasers&#8217;.  We want to write cool stuff, but more importantly, we want people to acknowledge that coolness.  It&#8217;s interesting that the concept of Open Source is so strong in IT.  There aren&#8217;t nearly so many top photographers offering any of their materials with a right to free duplication as there are developers.</p>
<p>But here&#8217;s the thing&#8230; free doesn&#8217;t put food in the table.  Each prospect may be the result of two hours of work  before we even get to visit.   On top of that is the two hours of free consultancy they end up receiving when we go and see them.  Then there&#8217;s the proposal &#8211; that can be four hours for something simple, but easily a 16hr job.  So we have up to 20hrs per prospect, before a sale is even agreed.</p>
<p>If we then assume a one-in-three conversion (because they&#8217;ll probably talk to three potential clients) that means up to 60hrs of work for each client won.  I&#8217;ve actually estimated that by and large we manage on about 40hrs per client win.</p>
<p>Now here&#8217;s the funny thing &#8211; many of the websites we produce take less than 40hrs to build.  Let&#8217;s say each is 30hrs of work to build &#8211; what with all the toing and froing of ideas, images and copy.</p>
<p>That makes 70hrs per website.  If you&#8217;re going to make a modest, middle class income, and cover costs, then chargeable rates have to be around the £30 an hour mark.  That&#8217;s about what most backstreet mechanics are charged at.  So the very base price for a website built according to expectations above, has to be £2,100.</p>
<p>Read that figure.</p>
<p>£2,100!</p>
<p>For a basic, simple, custom website.</p>
<p>We&#8217;re working on developing techniques to get web developers away from this problem.  Expectations are far higher than can be fulfilled economically.  Check back to the blog regularly to see our up and coming announcements&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://interconnectit.com/83/the-danger-of-unpaid-consulting-and-one-answer/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Does the web industry suck?</title>
		<link>http://interconnectit.com/53/does-the-web-industry-suck/</link>
		<comments>http://interconnectit.com/53/does-the-web-industry-suck/#comments</comments>
		<pubDate>Thu, 17 Jan 2008 09:22:00 +0000</pubDate>
		<dc:creator>David Coveney</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Consulting]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://liverpoolwebdesigner.com/2008/01/17/does-the-web-industry-suck/</guid>
		<description><![CDATA[Does the web industry suck?  Is it because of us techies or is it something about the clients?]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not going to rant here about all the great clients, who understand that time is expensive, who listen, pay attention, and do their own research.</p>
<p>But what I do think is that there&#8217;s a significant chunk of people out there, with no clue as to the Web, what it&#8217;s for, and how it works, who currently seem to be desperate to jump onto the bandwagon.  They sometimes actually have some pretty sound business ideas.</p>
<p>Thing is, they turn up at our office with these huge plans.  And a budget of £250.</p>
<p>There then follows an awkward silence as we have to explain that £250, like in dentistry, doesn&#8217;t really buy you a great deal of cosmetic awe.  Even if the underlying software is free, you still need someone with the ability and understanding to implement it correctly.  And they&#8217;re in demand.<span id="more-53"></span></p>
<p>But then that brings up another issue &#8211; the one of the wannabe web designer.  Very little understanding of the technology or business, but does have a copy of Frontpage, Dreamweaver, or worst of all &#8211; Flash and only Flash.  And thinks they can design for the web because they&#8217;ve done some ok print jobs in their time.  They over promise, often raising expectations, under-quote (causing pricing pressure) and under-deliver.</p>
<p>Not all are actually that bad in overall design terms either, but they have a habit of disappearing when things get difficult.  If one of their sites is hacked they have absolutely no idea why, and can&#8217;t do much about it.  They don&#8217;t understand what the difference between CHMOD 777 or 766 can mean to the security of their site.  In fact, to make their life easier, they simply switch everything to 777.  And they&#8217;ve got so little money from their £300 job that they most definitely can&#8217;t afford to pay a TruePro (my TM, maybe.  Perhaps) to come in and get digging, and to configure their site correctly.</p>
<p>And clients sometimes need to accept that they can&#8217;t just say &#8220;gimme a website!&#8221; to a designer/developer and expect them to magically mind-read their true desires.  For free, of course.</p>
<p>Thing is &#8211; how&#8217;s a client to know the difference between a good or bad web company?  It&#8217;s no easier than knowing the difference between a good or bad engine design in a car.  The only way people learn is by watching what or who gets the most reliable, dependable and economical cars out there.  And if there are none, then eventually someone will come along and do just that.  Like the Japanese did to the British motorbike industry, so, surely, will the good web companies overtake and close down the bad ones.</p>
<p>So to answer my own question &#8211; I actually think the web industry does suck right now.  But it&#8217;ll get better &#8211; slowly, top web brands will move to the fore, and the rubbish ones will fade away.  And it won&#8217;t be from expected sources either.  For example, WordPress.com is likely to become a major force for many small business websites, with many moving to self-hosted WordPress sites once they need more control or uniqueness.  Why does any startup in a non-tech field need to commission a custom site when there&#8217;s plenty of great, free or cheap designs available?</p>
<p>And that&#8217;s where the future website designing and hosting brands will come from.  The small one man web companies need to adapt to this market and consider that the direct one-to-one model of web design &amp; development is approaching its death knell.  Instead, these small companies will become facilitators &#8211; finding the best solutions for the non-techie clients, setting them up, and then briskly moving on to the next client.  The technical knowhow, fixing up and hacking will be concentrated in key points.  They&#8217;ll set up or review systems like SugarCRM, Plone, WordPress, and more.</p>
<p>Bigger clients will of course still need their own web applications built to suit any unique business models they operate, and they&#8217;ll be able to afford the fact that few of these can ever cost less than five figures.  So that business model will continue, and should pay more too as the solutions become critical to firms.</p>
<p>I know I&#8217;ve just had something of a ramble there &#8211; it&#8217;s purely a stream of consciousness thing.  I think the web industry is on the verge of maturing.  That doesn&#8217;t mean the days are over for specialists.  Just that the mass market will move to commodity systems, while the specialised stuff will actually start to pay the kind of rewards that should be available to people who work with a difficult and challenging technology.</p>
]]></content:encoded>
			<wfw:commentRss>http://interconnectit.com/53/does-the-web-industry-suck/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Getting Your DNS Settings Right</title>
		<link>http://interconnectit.com/47/getting-your-dns-settings-right/</link>
		<comments>http://interconnectit.com/47/getting-your-dns-settings-right/#comments</comments>
		<pubDate>Fri, 04 Jan 2008 12:30:49 +0000</pubDate>
		<dc:creator>Interconnect IT</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[domain names]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://liverpoolwebdesigner.com/2008/01/04/getting-your-dns-settings-right/</guid>
		<description><![CDATA[One thing worth thinking about in 2008, is fixing the DNS entry to your website. Most here are probably set up just fine, but here&#8217;s one of the most common problems we see: Go to a website &#8211; eg, http://www.marketsafeuk.com and it should all work fine. But take out the www and go to http://marketsafeuk.com and it doesn&#8217;t.  You just&#8230; <a class="more" href="http://interconnectit.com/47/getting-your-dns-settings-right/">continue reading <span class="unicode">&#8674;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One thing worth thinking about in 2008, is fixing the DNS entry to your website. Most here are probably set up just fine, but here&#8217;s one of the most common problems we see:</p>
<p>Go to a website &#8211; eg, <a href="http://www.marketsafeuk.com/">http://www.marketsafeuk.com</a> and it should all work fine.</p>
<p>But take out the www and go to <a href="http://marketsafeuk.com/">http://marketsafeuk.com</a> and it doesn&#8217;t.  You just get a time out as the DNS fails to resolve the request.</p>
<p>This happens on a remarkable number of sites, even those belonging to some web designers. And it&#8217;s poor because a lot of users have got used to not typing the www subdomain to many addresses. They expect the null subdomain to point to the normal website. How many customers would Amazon miss out on if going to amazon.co.uk didn&#8217;t work? Lots&#8230;.</p>
<p>So &#8211; if your site experiences this problem go into your domain&#8217;s control panel and set up a new A record where the subdomain is left uncompleted. The ip address should be the same as your usual one. Most control panels should allow this.</p>
<p>Your webserver, in most cases, will be set up by default to serve a blank subdomain the same way as the www one. If not, you may need to talk to your hosts about resolving this.</p>
]]></content:encoded>
			<wfw:commentRss>http://interconnectit.com/47/getting-your-dns-settings-right/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

