<?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; Wordpress</title>
	<atom:link href="http://www.interconnectit.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.interconnectit.com</link>
	<description></description>
	<lastBuildDate>Sun, 18 Jul 2010 16:04:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WordPress 3.0 Multisite With Multiple Domains Setup</title>
		<link>http://www.interconnectit.com/840/wordpress-3-0-multisite-with-multiple-domains-setup/</link>
		<comments>http://www.interconnectit.com/840/wordpress-3-0-multisite-with-multiple-domains-setup/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 17:54:25 +0000</pubDate>
		<dc:creator>James Whitehead</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[3.0]]></category>
		<category><![CDATA[domains]]></category>
		<category><![CDATA[MU]]></category>
		<category><![CDATA[multisite]]></category>

		<guid isPermaLink="false">http://www.interconnectit.com/?p=840</guid>
		<description><![CDATA[<img class="alignleft size-thumbnail wp-image-666" title="interconnectit-we-do-stuff" src="http://www.interconnectit.com/wp-content/uploads/2009/08/interconnectit-we-do-stuff-150x150.png" alt="interconnectit-we-do-stuff" width="150" height="150" />WordPress 3.0 multisites lets you easily publish multiple sites, on multiple domains, within one installation.  Once done you will have a very flexible and powerful server.]]></description>
			<content:encoded><![CDATA[<p>WordPress 3.0 multisites lets you easily publish multiple sites, on multiple domains, within one installation.  This is a time-saving option for those of us who need to manage multiple separate domains running WordPress, but it does take a little knowledge and file access to set up, and at the moment isn&#8217;t for anyone who doesn&#8217;t consider themselves technically proficient.</p>
<p>You will need to be able to modify your vhosts file in order to do this, but once done you will have a very flexible and powerful server.</p>
<p>This article is written for 3.0 alpha, as of the current build on 19th March 2010.</p>
<h3>Multi sites mode</h3>
<ol>
<li>Install Wordpress 3.0 and install as a normal Wordpress.</li>
<li>Add define(&#8217;WP_ALLOW_MULTISITE&#8217;, true); near the top of wp-config.php</li>
<li>Log into the admin go to the tools/Nertwork menu.</li>
<li>If it asks you to deactivate all plug-ins do so otherwise go straight ahead and set up multi sites as sub-domains and fill in the other details as needed as needed.</li>
<li>Make a note of the changes needed to wp-config.php and .htaccess and make the changes.</li>
<li>You should now be in multi-site mode.</li>
</ol>
<h3>Adding a new domain</h3>
<ol>
<li>Now we’re in multisite mode login as admin go to super admin/sites</li>
<li>Add a new site &#8211; the address can be anything you like just make it unique and make it something you can remember so we can find it easier in the db.</li>
<li>Make sure your domain is pointing at the server if not do so and wait for it to propagate.</li>
<li>Add Vhost alias to the root domain. So if in the Vhost file you have ServerName mywordpres3root.com you would add ServerAlias mynewwordpress.com beneath it.  Alternatively, you can use a wildcard here, but in our implementations there are good reasons why we prefer to specify the host aliases.</li>
<li>Open up the db for editing and add a new row to wp_site table
<ol>
<li>site_id, domain and path.
<ol>
<li> i.      site_id, will be a new unique id, remember it</li>
<li> ii.      domain, should be set to the new domain name added above.</li>
<li> iii.      path should be /</li>
</ol>
</li>
</ol>
</li>
<li>Change the row in wp_blogs that matches your new site and make a note of the blog_id.
<ol>
<li>Change site_id to the new site_id created above.</li>
<li>Change domain to our new domain name.</li>
</ol>
</li>
<li>Open up wp_[blog_id]_options table.
<ol>
<li>Change siteurl to the new domain name.</li>
<li>Change home to match the new domain name.</li>
<li>Change the fileupload_url to match the new domain.</li>
</ol>
</li>
<li>Your new site should now be ready, you’ll need to go in and set all the options for the domain now. If you wanted a clone of the root sites options you could copy all the rows in wp_sitemeta with a site_id matching the site you wanted to clone and just change the site_id to the new site.</li>
</ol>
<p>The instructions above are obviously given without any guarantee &#8211; use at your own risk, especially if converting your site from single site to multisites.  If you have any feedback or better approaches then do let us know in the comments below.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">Wordpress 3.0 with multiple domains.<br />
Multi sites mode<br />
1.<br />
Install Wordpress 3.0 and install as a normal Wordpress.<br />
2.<br />
Add define(&#8217;WP_ALLOW_MULTISITE&#8217;, true); near the top of wp-config.php<br />
3.<br />
Log into the admin go to the tools/Nertwork menu.<br />
4.<br />
If it asks you to deactivate all plug-ins do so otherwise go straight ahead and set up<br />
multi sites as sub-domains and fill in the other details as needed as needed.<br />
5. Make a note of the changes needed to wp-config.php and .htaccess and make the<br />
changes.<br />
6. You should now be in multi-site mode.<br />
Adding a new domain<br />
1. Now we’re in multisite mode login as admin go to super admin/sites<br />
2. Add a new site the address can be anything you like just make it unique and make it<br />
something you can remember so we can find it easier in the db.<br />
3. Make sure your domain is pointing at the server if not do so and wait for it to<br />
replicate.<br />
4. Add Vhost alias to the root domain. So if in the Vhost file you have ServerName<br />
mywordpres3root.com you would add ServerAlias mynewwordpress.com beneath it.<br />
5. Open up the db for editing and add a new row to wp_site table<br />
a. site_id, domain and path.<br />
i. site_id, will be a new unique id, remember it<br />
ii.domain, should be set to the new domain name added above.<br />
iii.<br />
path should be /<br />
6. Change the row in wp_blogs that matches your new site and make a note of the<br />
blog_id.<br />
a. Change site_id to the new site_id created above.<br />
b. Change domain to our new domain name.<br />
7. Open up wp_[blog_id]_options table.<br />
a. Change siteurl to the new domain name.<br />
b. Change home to match the new domain name.<br />
c. Change the fileupload_url to match the new domain.<br />
8. Your new site should now be ready, you’ll need to go in and set all the options for<br />
the domain now. If you wanted a clone of the root sites options you’d could copy all<br />
the rows in wp_sitemeta with a site_id matching the site you wanted to clone and just<br />
change the site_id to the new site.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.interconnectit.com/840/wordpress-3-0-multisite-with-multiple-domains-setup/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>WordPress Distributions are the Future</title>
		<link>http://www.interconnectit.com/724/wordpress-distributions-are-the-future/</link>
		<comments>http://www.interconnectit.com/724/wordpress-distributions-are-the-future/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 15:15:52 +0000</pubDate>
		<dc:creator>David Coveney</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[distributions]]></category>
		<category><![CDATA[growth]]></category>
		<category><![CDATA[packages]]></category>

		<guid isPermaLink="false">http://www.interconnectit.com/?p=724</guid>
		<description><![CDATA[<a rel="attachment wp-att-726" href="http://www.interconnectit.com/?attachment_id=726"><img class="alignleft size-thumbnail wp-image-726" title="dandy-pink" src="http://www.interconnectit.com/wp-content/uploads/2009/11/dandy-pink-150x142.png" alt="dandy-pink" width="150" height="142" /></a>WordPress comes in only one flavour.  Why?  It has so many diverse uses, and there are so many plugins, that distributions could be the way forward.]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve been involved in WordPress over the past few years you&#8217;ll have seen it change from being an excellent but limited blogging platform into something on which you can build much more complex websites.  We ourselves have been involved in some pretty sophisticated uses of the system &#8211; for example, over at<a title="Telecoms news" href="http://www.telecoms.com"> Telecoms.com</a> which makes extensive use of various elements of WP functionality as well as having quite a lot of custom code bolted in.<span id="more-724"></span></p>
<p>WordPress is, frankly, very good &#8211; the focus on the user experience helps make it so, even if architecturally it has its limitations.  This has led to stellar success for the platform and is a credit to everyone involved.</p>
<div id="attachment_726" class="wp-caption alignright" style="width: 171px"><img class="size-full wp-image-726" title="dandy-pink" src="http://www.interconnectit.com/wp-content/uploads/2009/11/dandy-pink.png" alt="A WP distro could have a different logo..." width="161" height="142" /><p class="wp-caption-text">A WP distro could have a different logo...</p></div>
<p>However, over the past year or so there have been a number of controversies &#8211; there was the pulling of themes from the <a title="WordPress pull themes" href="http://justintadlock.com/archives/2008/12/11/automattic-putting-the-boot-to-premium-theme-developers">WordPress.org repository if there was even a hint of its author profiting from non GPL themes</a> &#8211; even if the profiting was just from an affiliate link.  Then there&#8217;s the <a title="WordPress blacklisting" href="http://wpmu.org/blacklisted-by-matt-wordpress/">airbrushing out of Edublogs&#8217; and WPMU.org&#8217;s links</a> from various official WordPress pages.</p>
<p>This has caused some friction in the WordPress based industry.  Folk just don&#8217;t know what&#8217;s happening.  In part that could be seen as being a problem caused by differences in business needs and approaches.  Ultimately, <a href="http://ma.tt">Matt Mullenweg</a> is the leader of both the <a title="WordPress.org" href="http://wordpress.org">open source WordPress application</a>, and the leader of <a href="http://automattic.com">Automattic</a>.  The latter is a commercial company, funded with a significant amount of venture capital.  It has to make money.  It also funds a lot of WP development, releases a lot of code, and evangelises the product.  But what we do all have to accept is that Automattic&#8217;s business needs are not necessarily the same as every other business in the WordPress market.</p>
<h3>Automattic are Good for Us</h3>
<p>Yes, they are.  All of us running businesses based around WP benefit from their input.  Automattic also benefits when we contribute themes, plugins and so on.</p>
<p>Thing is, it&#8217;s not their job to run our business for us.  The relationship between your WordPress business and Automattic is actually pretty loose.  They&#8217;re happy for you to run whatever business you like around the product &#8211; and if they like you, they may even promote you a little.  Their choice.  If they stop promoting you, then that&#8217;s actually just tough.  I whinged about this when it happened a year ago, but after quite a long e-mail exchange with Matt himself, and then even meeting him in person, I started to realise that I had no particular right to expect favours from him or his company.  If I wanted promotion from him, I had to make him happy.  We changed approach, he promoted us.  Simple.</p>
<h3>Add Value to Extract Value</h3>
<p>In developing an awesome theme or plugin, whether GPL or not, you add some value to the WordPress ecosystem.  Just a little, but it&#8217;s there.  But you&#8217;ve probably extracted at least as much already.  So don&#8217;t pat yourself on the back too hard.</p>
<p>What you need to do is to do things that Automattic won&#8217;t or can&#8217;t do.  And for that, I&#8217;m thinking distributions.  Bundled up, pre-configured editions of WordPress that have all the plugins and configurations that are required for specific purposes.</p>
<p>Some of what we&#8217;ve developed is very specific to the News &amp; Media industry.  If we release a suite of plugins to the <a href="http://wordpress.org/extend/">WordPress.org repository</a> and people download them individually they may not work in a way that would be expected.  Instructions could help, but in effect you&#8217;re asking a user to build up their own site.  People don&#8217;t want to do that.  It&#8217;s complicated and demands a good understanding of the system, the plugins, and the dependent themes.</p>
<h3>It&#8217;s About Making it Easy</h3>
<p>In Linux, there is still something of a perception that it&#8217;s a DIY system.  And really, that was the case in the early days &#8211; you took the Kernel, added whatever bits you needed, and you were off.  It was basic, a little clunky, but very flexible.  However, most people&#8217;s needs are generally fairly similar.  Corporates have one set of needs, people with old machines another, private users another again and so on.</p>
<p>What happened to address this, and where the real value in Linux came, was when other companies started to build businesses around specialist distributions.  RedHat has their distributions, which do well in the corporate and web serving sphere.  Ubuntu is doing fabulously well on the smaller user desktop.</p>
<p>These distributions make life easier for users and clients because they know their needs, and then it&#8217;s just a case of finding the nearest match.  Linux is not the answer to their problems &#8211; the bundled up solutions are the answer.  You can then issue packages of software designed for those distributions.</p>
<h3>It&#8217;s About Business</h3>
<p>Ultimately, we all need to succeed in order to invest in our businesses and feed ourselves.  We can enjoy coding for pleasure, but you can&#8217;t enjoy it if your house is unheated and your children going out in bare feet.  There&#8217;s a myth in some sectors of the GPL industry that it&#8217;s all about giving stuff away.  It&#8217;s not &#8211; a lot about the GPL is actually about helping fellow developers to run their businesses.  Coders have shared code freely for years &#8211; the GPL is just a formalisation of the developer&#8217;s mindset.</p>
<h3>How it Could Work With WordPress</h3>
<p>With WordPress, there isn&#8217;t much money to be made in plugins right now.  Themes have done a little bit better, but they&#8217;re a more consumer oriented product which suit certain purposes.  Sometimes the themes bundle plugins to help things along.  Sometimes they don&#8217;t.  But the business behind all of these is based purely on supporting the theme.  For everything else, the consumer is on their own.  Worse still, if they use a suite of plugins (premium or otherwise) they may have to deal with various entities in order to get support.  It&#8217;s a nightmare for a company where complexity in products is undesirable.</p>
<p>What many companies really just want is simplicity.  Money isn&#8217;t necessarily the problem.  They&#8217;re running businesses worth millions or even billions.  If a core component of that business (a website, an intranet, whatever) fails or leaves them stranded then they have big big problems.</p>
<h3>Create Confidence</h3>
<p>So what I believe will come is a marketplace where some companies will offer WordPress distributions suited to particular tasks.  Some will be for heavy marketing, others high-profile bloggers, and so on.  Each will have different minimum server specifications, come with support packages, and will provide a one-stop-shop.  Each plugin will have been tested in that combination, and they will all be supported by the distributor.</p>
<p>Plugin authors will benefit too &#8211; a company using a plugin as a core part of their business will gain from keeping that plugin developer happy.  Money will flow (trust me on this!) and when new requirements are identified they will pass this on to the plugin developer, along with the funds to pay for it.</p>
<p>Theme developers will be mixed &#8211; the best developers will simply create frameworks, with a base styling, for given purposes.  Designers will then be freed of almost all coding needs and will simply put together a nice child theme.  I anticipate that there will be three or four frameworks coming to the fore, with three or fore distributions offering different variations of framework &#8211; all carefully selected for the job.</p>
<h3>Costs</h3>
<p>These distributions and their support packs won&#8217;t be cheap (although for some the downloads could be free).  But they will be dependable.  You will find distributions of WordPress for high security blogs, brochure sites, news sites, membership sites and so on.  No more worrying about plugin interactions, and upgrades will be simpler because all plugins, frameworks and the distribution will upgrade all at the same time.  Your life will become easier.</p>
<h3>Impacts</h3>
<p>WordPress.org will continue to be the central point for the project, and it will be the reference point.  Distributions will most certainly contribute to the product to help keep their businesses going.  A fork is unlikely happen &#8211; not unless the differences in need between the source project and the distributions diverge dramatically.</p>
<p>Companies will be able to base their businesses on distributions which best suit their needs.  If you&#8217;re specialising in Intranets, then use the WP Intranet distro.  If you specialise in hardened sites for governments, use the WP Ultra-Secure distro.  This will help companies.</p>
<p>Similarly, if you&#8217;re a theme developer, you may wish to actively support distributions that are particularly suited to your style.  And you&#8217;ll know what plugins and widgets will be included by default, so you can included styling for those too.</p>
<p>And different distributions will have different cultures and attitudes.  Some will be more favourable to non-GPL publishers, and others much more hardline.  Some will create courses, certifications, books and support infrastructures while others will be more casual.</p>
<p>In the long run, WordPress has great potential as a publishing and communication tool &#8211; it does some things so right, so easily, that so long as this principle of simplicity is adhered to then there will be business opportunities surrounding it.  There&#8217;s no point getting into arguments with Automattic or Matt &#8211; just get on with it and find places to add value.  The risks may be higher, but that will mean the rewards will grow too.  Think about it.</p>
<h3>What Do You Think?</h3>
<p>Is this likely to be the way forward for WordPress based businesses?  Will it confuse users?  Could it make things better?  Comments, please!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.interconnectit.com/724/wordpress-distributions-are-the-future/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Migrating a WordPress/WPMU/BuddyPress Website</title>
		<link>http://www.interconnectit.com/719/migrating-a-wordpresswpmubuddypress-website/</link>
		<comments>http://www.interconnectit.com/719/migrating-a-wordpresswpmubuddypress-website/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 17:11:21 +0000</pubDate>
		<dc:creator>Interconnect IT</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[address change]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[MU]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://www.interconnectit.com/?p=719</guid>
		<description><![CDATA[


Migrating a WordPress site can be something of a scary challenge, but we do it a lot, and we&#8217;ve become used to it.  There are many good reasons to move a site &#8211; for example, you might set one up in a subfolder, and decide to move WP to the root.  Or perhaps [...]]]></description>
			<content:encoded><![CDATA[<p><!-- Start ScreenSteps Content --></p>
<div class="LessonContent">
<div class="LessonSummary">
<p>Migrating a WordPress site can be something of a scary challenge, but we do it a lot, and we&#8217;ve become used to it.  There are many good reasons to move a site &#8211; for example, you might set one up in a subfolder, and decide to move WP to the root.  Or perhaps you&#8217;ve built a site on localhost and now need to put it on a live server.</p>
<p>If you do it incorrectly, you stand to lose all your widget settings, some file links and so on.  This wasn&#8217;t a problem with &#8216;classic WP&#8217; years ago, but these days there are many many paths stored away in the database, in various forms, and catching them all can be somewhat tricky.</p>
<p>Here I show you the steps we take moving a localhost site to a live domain.  We&#8217;re using WPMU which is running the BuddyPress plugin suite.</p>
</p></div>
<div class="LessonStep top">
<h3 class="StepTitle">The Local Install</h3>
<div class="StepImage">
	<img src="http://www.interconnectit.com/wp-content/uploads/2010/04/media_1254926142419.png" width="540" height="234" alt="media_1254926142419.png" />
</div>
<div class="StepInstructions">
<p>Here&#8217;s our site on our localhost.  As you can see, it&#8217;s pretty basic, but everything&#8217;s there that needs to be there &#8211; we know all elements of the install works, and now we want to pop it onto a live server.  In this lesson, we&#8217;re going to use FileZilla and ftp the files across from our local install.</p>
</div></div>
<div class="LessonStep top">
<h3 class="StepTitle">Copying the Files</h3>
<div class="StepImage">
	<img src="http://www.interconnectit.com/wp-content/uploads/2010/04/media_1254926439240.png" width="540" height="415" alt="media_1254926439240.png" />
</div>
<div class="StepInstructions">
<p>On the left you can see we&#8217;ve navigated to our local filesystem for this install.  On the right, we&#8217;re connected to the server.  There are already files there, because we have an old install running.  You should delete all the files and replace them with the new ones in this case, but if you are replacing a site do make sure you have a copy of everything.  Merging sites is much harder than migrating &#8211; and way beyond the scope of this tutorial.</p>
<p>So &#8211; select and drag all the files from one side, to the other.</p>
</div></div>
<div class="LessonStep top">
<h3 class="StepTitle">Moving the Database</h3>
<div class="StepImage">
	<img src="http://www.interconnectit.com/wp-content/uploads/2010/04/media_1254927088021.png" width="540" height="451" alt="media_1254927088021.png" />
</div>
<div class="StepInstructions">
<p>Our preferred tool for administering databases is mySQL Administrator.  A free tool that really simplifies a lot of DB Admin tasks.  Use this to take a backup of your database.  You&#8217;ll need to create a new backup project.</p>
<p>1. Click Backup<br />
2. Create New Project<br />
3. Select the Schema you&#8217;ve been using<br />
4. Click to move it across, selecting ALL tables (unless you have multiple installs in one database, in which case, just the tables for the install you&#8217;re interested in)<br />
5. Give it a name<br />
6. Save Project<br />
7. Execute the Backup</p>
</div></div>
<div class="LessonStep top">
<h3 class="StepTitle">Backup Done</h3>
<div class="StepImage">
	<img src="http://www.interconnectit.com/wp-content/uploads/2010/04/media_1254927164402.png" width="540" height="177" alt="media_1254927164402.png" />
</div>
<div class="StepInstructions">
<p>You should now have a backup.</p>
<p>Because the server we&#8217;re using doesn&#8217;t allow connections on Port 3306, we&#8217;re going to use phpMyAdmin there.  This is no problem at all, but if you were using mySQL administrator you could use the restore tools there.  If you&#8217;re doing this kind of project you should really know how to use these tools anyway &#8211; I&#8217;m only explaining these steps for completeness sake and showing you a migration I&#8217;m doing myself that&#8217;s likely to be typical.</p>
</div></div>
<div class="LessonStep top">
<h3 class="StepTitle">Editing the SQL</h3>
<div class="StepImage">
	<img src="http://www.interconnectit.com/wp-content/uploads/2010/04/media_1254927350304.png" width="540" height="321" alt="media_1254927350304.png" />
</div>
<div class="StepInstructions">
<p>A database backup is done simply as a big set of SQL statements that you can run.  If you&#8217;re migrating to a different database you&#8217;ll need to edit the CREATE and USE statement to tell it which database to use.</p>
<p>Be very careful with this database dump by the way &#8211; database dumps are a very easy way for hackers to get into your system and find out lots of information you&#8217;d rather not give away.</p>
</div></div>
<div class="LessonStep top">
<h3 class="StepTitle">Importing The Database</h3>
<div class="StepImage">
	<img src="http://www.interconnectit.com/wp-content/uploads/2010/04/media_1254927962875.png" width="540" height="393" alt="media_1254927962875.png" />
</div>
<div class="StepInstructions">
<p>Now you need to Import the Database.  We&#8217;re using phpMyAdmin for this. If you have any tables there already, it&#8217;s probably best to drop them.  All of them.  Like I say, if you&#8217;re merging you&#8217;re going to need more help than this guide can provide.</p>
<p>1. Click on the Import tab<br />
2. Select your file (if it&#8217;s bigger than your sever&#8217;s upload limit then you&#8217;ll have to speak to your admin guys about how to do this.<br />
3. Press the Go button!</p>
<p>Once the import has run successfully you should see a message saying something like &quot;Import has been successfully finished, 95 queries executed.&quot; &#8211; and it can be an awful lot more than 95 queries!  It can also take quite some time.  If you need to handle large datasets it&#8217;s far easier to use the mySQL Administrator tools &#8211; phpMyAdmin can get clunky.</p>
</div></div>
<div class="LessonStep top">
<h3 class="StepTitle">Visit the Site</h3>
<div class="StepImage">
	<img src="http://www.interconnectit.com/wp-content/uploads/2010/04/media_1254928211787.png" width="540" height="292" alt="media_1254928211787.png" />
</div>
<div class="StepInstructions">
<p>If you try to visit the new uploaded site at the moment you&#8217;ll get a Fatal Error because all sorts of things are confused.</p>
<p>You need to change the wp-config.php file.</p>
</div></div>
<div class="LessonStep top">
<h3 class="StepTitle">Changing wp-config.php DB Settings</h3>
<div class="StepImage">
	<img src="http://www.interconnectit.com/wp-content/uploads/2010/04/media_1254928518189.png" width="540" height="321" alt="media_1254928518189.png" />
</div>
<div class="StepInstructions">
<p>Change 1, 2, and 3 to match your server&#8217;s database settings.</p>
<p>Change 4 to the appropriate path.  Most installs are in the root directory, so that would mean $base = &#8216;/&#8217;;</p>
<p>Change 5 to the domain name in use.</p>
<p>Change 6 from &#8216;/buddypress.11/&#8217; (or whatever your local path is) to the new path, like in 4, so in most cases that will be &#8216;/&#8217; also.</p>
</div></div>
<div class="LessonStep top">
<h3 class="StepTitle">Search &#038; Replace on the Database</h3>
<div class="StepImage">
	<img src="http://www.interconnectit.com/wp-content/uploads/2010/04/media_1272277924659.png" width="467" height="781" alt="media_1272277924659.png" />
</div>
<div class="StepInstructions">
<p>You now need to run a search and replace on the database &#8211; including all incidences of code within serialised PHP strings.  There is an excellent and free utility written by Interconnect IT, called the <a href="http://spectacu.la/search-and-replace-for-wordpress-databases/">Safe Search and Replace Tool.</a></p>
<p>I can&#8217;t emphasise enough that it&#8217;s important to handle serialised PHP correctly.  If you don&#8217;t, then settings will go missing, fields will get corrupted, and your site runs a severe chance of not working on the new location.  It&#8217;s a pain, but it&#8217;s important.</p>
<p>So, download the program, place it in your blog&#8217;s root folder and then run it by visiting the appropriate URL.</p>
<p>If you&#8217;re getting confused at this point, perhaps you shouldn&#8217;t run the program.  Just saying, because it can cause plenty of damage!</p>
</div></div>
<div class="LessonStep top">
<h3 class="StepTitle">Running the Script</h3>
<div class="StepImage">
	<img src="http://www.interconnectit.com/wp-content/uploads/2010/04/media_1254930511307.png" width="540" height="83" alt="media_1254930511307.png" />
</div>
<div class="StepInstructions">
<p>Simply visit http://www.example.com/searchreplacedb.php in your browser to fire off the script.  This will run.  If you experience a time-out, or too much output, you may need to go into the script and remove any echos that are slowing it down.  I&#8217;ll probably comment this out in due course anyway, but for diagnostics purposes I&#8217;ve left it.  Once run, you should see something like the above at the bottom.  Even a very large search and replace should only take a few seconds.</p>
</div></div>
<div class="LessonStep top">
<h3 class="StepTitle">Some Tweaks</h3>
<div class="StepInstructions">
<p>Check that you can navigate your site in its new location.</p>
<p>You may have to modify .htaccess to fix paths, and you may need to check your uploads folder for media.  But that&#8217;s it.  All should be good.</p>
</div></div>
<div class="LessonStep top">
<h3 class="StepTitle">Extra Steps for WordPress MU</h3>
<div class="StepImage">
	<img src="http://www.interconnectit.com/wp-content/uploads/2010/04/media_1254930620452.png" width="540" height="277" alt="media_1254930620452.png" />
</div>
<div class="StepInstructions">
<p>If you&#8217;re using WordPress Single User, then that&#8217;s it.  You&#8217;re all done!</p>
<p>But in this example, we&#8217;re running BuddyPress on WordPress MU, and that means one extra step.  In phpMyAdmin you need to open up (1) wp_blogs, (2) click the browse tab, and (3) click the edit tab for each row.  If you have a lot, you may wish to run another searchreplacedb.php against the database, looking for localhost.localdomain and buddypress.11 and swapping them appropriately.</p>
</div></div>
</div>
<p><!-- End ScreenSteps Content --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.interconnectit.com/719/migrating-a-wordpresswpmubuddypress-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A Common-Sense WordPress Security Primer</title>
		<link>http://www.interconnectit.com/679/a-common-sense-wordpress-security-primer/</link>
		<comments>http://www.interconnectit.com/679/a-common-sense-wordpress-security-primer/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 11:41:04 +0000</pubDate>
		<dc:creator>David Coveney</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[upgrades]]></category>

		<guid isPermaLink="false">http://www.interconnectit.com/?p=679</guid>
		<description><![CDATA[<img src="http://www.interconnectit.com/wp-content/uploads/2009/09/3209885128_cf86ff396d_o-150x150.jpg" alt="This is a real-life burglar... still easier to identify than a hacker, sadly.  Creative Commons Share-Alike Attribution Picture by Jofus." title="3209885128_cf86ff396d_o" width="150" height="150" class="alignleft size-thumbnail wp-image-680" />Another WordPress hack has caused a fuss in the blogosphere, with recommendations to upgrade immediately. But security is more than just updating regularly, and you may not be able to upgrade right away, so here's some suggestions.]]></description>
			<content:encoded><![CDATA[<div id="attachment_680" class="wp-caption alignright" style="width: 314px"><a href="http://www.interconnectit.com/wp-content/uploads/2009/09/3209885128_cf86ff396d_o.jpg" rel="shadowbox[post-679];player=img;"><img class="size-medium wp-image-680" title="3209885128_cf86ff396d_o" src="http://www.interconnectit.com/wp-content/uploads/2009/09/3209885128_cf86ff396d_o-304x202.jpg" alt="This is a real-life burglar... still easier to identify than a hacker, sadly.  Creative Commons Share-Alike Attribution Picture by Jofus." width="304" height="202" /></a><p class="wp-caption-text">This is a real-life burglar... still easier to identify than a hacker, sadly.  Creative Commons Share-Alike Attribution Picture by Jofus.</p></div>
<p>There&#8217;s been a big fuss lately over the <a title="Lorelle's breakdown on WP hack" href="http://lorelle.wordpress.com/2009/09/04/old-wordpress-versions-under-attack/">latest WordPress hacks</a> that have <a title="WordPress support forum about the hacks" href="http://wordpress.org/support/topic/307518?replies=57">targetted older versions of WordPress</a>.</p>
<p>And in my view, they show the less pretty side of WordPress and some people in the community&#8230; but not all of them.  The attitude has been a straight &#8220;upgrade your blog and you&#8217;ll be secure.&#8221;</p>
<p>Well, I have news for you.  They&#8217;re wrong.<span id="more-679"></span></p>
<h3>You&#8217;re Never Secure</h3>
<p>Even if you have the very latest version of everything there are, out there, what are known as <a title="Zero day exploits" href="http://en.wikipedia.org/wiki/Zero_day_attack">zero day exploits</a>.  These are vulnerabilities which are kept secret by the hackers who have found them.  They cease to be secret if they become widely used in a large scale attack.  Like the current one against WordPress.</p>
<p>Now, if there are vulnerabilities out there that nobody knows about then your high profile WordPress site or blog could be targetted in a way that you, I, or the (great and lovely) WordPress developers out there don&#8217;t know about.</p>
<h3>Not Everyone Can Upgrade Immediately</h3>
<p>Quite frankly, I find the glib assertion that staying up to date is all you need to be secure to be&#8230; terrifying.  It&#8217;s bad advice because it leaves people with the feeling that all they need to do is to stay up to date and all is well.  Not only that, but it sidesteps the whole issue that WordPress should really consider running security updates on older versions of WordPress &#8211; not all sites can quickly change from one version to another.  When WordPress 2.8 came out it broke multi-use widgets &#8211; you could recode them, but then settings could be lost.  There are sites out there that run hundreds of widgets, and re-configuring them will be a big job.  If a new vulnerability comes out in WordPress it may not even be relevant to some sites because they may be doing everything else correctly.</p>
<p>In fact, in a critical environment you absolutely <em><strong>do not</strong></em> update your software without running a full suite of tests to make sure the updates won&#8217;t bring down your site.  This is a major problem for sites which, in some cases, are turning over tens of thousands of pounds a month.  Yes, they can throw money at the problem, but it still takes time &#8211; and when there&#8217;s a vulnerability the one thing you don&#8217;t have is a lot of time.  So a site needs to rely on more than just WordPress for security.</p>
<h3>How Does That Work Then?</h3>
<p>One of the key things about security is to think about what happens when the first line of defence is breached.  In the real physical world, we tend to take multi-part approaches &#8211; often based on the risk.  My house has locks on the doors and windows &#8211; that&#8217;s the first level of security.  But hey, everyone has that, so to make double sure I have an alarm system so that if anyone gets in, an alarm goes off &#8211; alerting me if I&#8217;m here, or letting neighbours know.</p>
<p>My next level of protection is that of not having much you&#8217;d want to steal.  I even used to have a car like that &#8211; I didn&#8217;t lock it, even, in the hope that somebody would take it out of my life for ever.</p>
<p>But, back to the subject matter&#8230; WordPress security is, frankly, just like a front door lock and nothing else.  That&#8217;s OK, but you&#8217;re not really protecting yourself properly &#8211; if someone gets past WordPress then you may have some serious problems.</p>
<p>I&#8217;m not going to aim this guide at experts &#8211; I&#8217;m trying to pitch this to help people who aren&#8217;t experts to understand how their WordPress blog can be hacked, and how it can be secured even if a hacker gets through the first layer of protection.</p>
<p>Let&#8217;s go through them:</p>
<h3>1. Editing of Themes and Plugins Through the Admin Interface</h3>
<p>We&#8217;re going to do a test.  I want you to log in to your installation, and go to Appearance, then Editor.  Generally, you should see the stylesheet first, with comments at the top.  At the bottom of the box you should see this:</p>
<blockquote><p><em>You need to make this file writable before you can save your changes. See <a href="http://codex.wordpress.org/Changing_File_Permissions">the Codex</a> for more information.</em></p></blockquote>
<p>If you don&#8217;t, and if you can indeed edit this file, then you have a major security flaw right from the start.  A <a title="XSS" href="http://en.wikipedia.org/wiki/Cross-site_scripting">cross site scripting error (XSS)</a> could easily start to make changes to your theme and plugin files.  Once your theme and plugins can be modified, the hacker has complete, 100% control of your server and its database.</p>
<h3>2. Poor Passwords</h3>
<p>This is really before you even think about WordPress security.  Simply put, do not use a word that can be found on your blog, or in a dictionary.  Learn to use <a title="Password Maker" href="http://passwordmaker.org/">PasswordMaker</a> and its Firefox plugin or similar.  It will make security on various sites much stronger, much more quickly.  If you or any of your users are using dictionary words, then the chances of getting in are far higher.</p>
<h3>3. Poor mySQL Server Security</h3>
<p>Your mySQL database should be reasonably secure.  But many times I&#8217;ve found that you can connect to a database remotely.  For this, try using something like <a title="mySQL Administrator and GUI tools" href="http://dev.mysql.com/downloads/gui-tools/5.0.html">mySQL Administrato</a>r and connect to your database using the same logonid and password that WordPress uses.  If you can easily reach your DB from any internet connection then again, you have a potential security hole.  All access of this type should either be IP limited, or over an SSH tunnel.  Setting this up is beyond the scope of this feature but your hosts could help, or we can.</p>
<h3>4. Use of FTP Isn&#8217;t Terrible, But&#8230;</h3>
<p>Now, I make no secret that using FTP isn&#8217;t generally that bad, but if you have a site that&#8217;s likely to be targetted then you shouldn&#8217;t have any form of FTP access.  You should be using SSH and SCP.  At the very least, use SFTP if you can sort out certificates &#8211; they don&#8217;t have to be paid for, expensive certificates, but can be generated.  Again, getting this working is beyond the scope of this, but hosts and good WordPress consultants can help you with making this happen.</p>
<h3>5. Allowing User Registration</h3>
<p>Sometimes you need or want this &#8211; in which case, make damn sure you can keep bang up to date on your WP installs.  But if there isn&#8217;t a strong business case for having user registration (and I personally don&#8217;t believe there is in 95% of cases) then don&#8217;t bother.  If you do have it switched on you&#8217;ll notice lots of registrations from around the world.</p>
<h3>6. XMLRCP Support</h3>
<p>A high proportion of attacks on WordPress have come through or made use of the XMLRPC protocol &#8211; this is used by many exploits as it helps to automate the process of posting content to a website.  Mostly the protocol is used for pingbacks and remote publishing to a site.  If you don&#8217;t need or want those two features then you can safely remove the file xmlrpc.php from your WordPress&#8217;s root folder.  Pingbacks are less useful than they used to be, so it&#8217;s not an eccentric thing to get rid of.</p>
<h3>7. Firewalls</h3>
<p>Putting your server behind an appropriate firewall can help with certain types of attack.  This is something to talk about with your hosts.  And they do cost money.  A lot of things I&#8217;m talking about can be done more cheaply, but for a high profile site a firewall is an absolute must.</p>
<h3>8. Server Permissions</h3>
<p>Apache and the user used to upload files to the server should be kept in separate groups.  This really helps to protect against attacks that get through various layers of protection.  Something could attack your Apache web server and still fail to make updates because it doesn&#8217;t have rights.</p>
<h3>9. All the Other Code</h3>
<p>One thing many folk forget about with WP installations is that it depends on a huge range of code and modules.  Are you running an up to date release of PHP?  How about mySQL?  GDLib?  Apache?  There&#8217;s a lot of components to a website &#8211; although WP makes it look simple you&#8217;re actually dealing with a very sophisticated machine.  If you&#8217;re running outdated versions of server software there may be significant non-WP vulnerabilities.  Check with your hosts if possible.</p>
<h3>10. Shared Hosting</h3>
<p>Some shared hosting plans are, I can confirm without hesitation, absolutely dreadfully configured.  You may have 800 websites on one cheap old server &#8211; none particularly active and none set up or configured by experts.  If one gets hacked, the whole machine becomes vulnerable, and every other site can be hacked.  Often when this happens the host will blame you in various ways.  Sometimes the host may simply find it&#8217;s all too much trouble and disappear, along with your website.</p>
<p>Don&#8217;t let that happen to you.</p>
<h3>11. Always Log Out When Finished</h3>
<p>If you log out when you finish your work in the back end of your site, you&#8217;ll be much less likely to fall victim to a cross site scripting vulnerability.  So make a habit of it.  Alternatively, have a browser that you only use for WordPress.  Some people may choose to use Firefox for general browsing, and Google Chrome for WordPress work.</p>
<h3>12. Consider Using Real Hosting</h3>
<p>I mean, don&#8217;t go for the cheap, commodity hosting that costs £7.95 a month.  Is your online business really that weak that spending on something more serious and carefully managed is a problem?  You have a number of choices.  You could go for a Virtual Private Server or even Dedicated Server from someone like <a href="http://www.names.co.uk/">Namesco</a> in the UK, or if your business is really serious talk to the excellent chaps (and our partners when we build big sites) at <a title="Kumina - awesome Unix solutions guys." href="http://www.kumina.nl/en-gb/home.html">Kumina</a> in the Netherlands.  There are US equivalents, but I don&#8217;t know them, sorry.  By spending more you will generally enjoy a more proactive approach to your site&#8217;s security at a server level.  Same goes for spending money on WordPress consultants like, erm, us, to take the worry out of it.  Worth thinking about.</p>
<h3>13. Use Google Alerts as a Final Alarm</h3>
<p>Google Alerts are incredibly useful for many reasons.  One of the uses I make of it is to have searches set up for my primary sites for words such as &#8217;sex&#8217;, &#8216;phentermine&#8217;, &#8216;viagra&#8217;, &#8216;casino&#8217; and so on.  Then, if anyone gets in and leaves dodgy links on the site then there&#8217;s a bigger chance of finding out about it.  If it happens, you&#8217;re kind of late, but at least you&#8217;re aware of it quickly and have a chance to fix the problem before there&#8217;s ranking damage to your site.</p>
<p><em>Read on for some links to practical tips for securing your WordPress install&#8230;</em><!--more--></p>
<p>There&#8217;s several handy resources out there for you if you want to understand more practical information on improving your site&#8217;s security:</p>
<p><a title="WP Codex WordPress Hardening" href="http://codex.wordpress.org/Hardening_WordPress">Hardening WordPress in the codex</a> &#8211; <em>a useful guide, from the people who brought you WordPress.</em></p>
<p><a title="Using htaccess to harden WordPress" href="http://www.reaper-x.com/2007/09/01/hardening-wordpress-with-mod-rewrite-and-htaccess/">Hardening WordPress with mod rewrite and htaccess</a> &#8211; <em>an alternative and useful approach that&#8217;s not for everybody, but works for many.</em></p>
<p><a title="Noupe's guide to WordPress security" href="http://www.noupe.com/how-tos/wordpress-security-tips-and-hacks.html">Noupe&#8217;s guide to WordPress security</a> &#8211; <em>always useful site has some good ideas.</em></p>
<p><a title="Scoble and WordPress" href="http://scobleizer.com/2009/09/05/i-dont-feel-safe-with-wordpress-hackers-broke-in-and-took-things/">Richard Scoble on why he doesn&#8217;t feel safe with WordPress now</a>.</p>
<p><a title="WPTavern security discussion" href="http://www.wptavern.com/forum/general-wordpress/835-wordpress-security-about-more-than-wordpress.html">Discussion about this post over at WPTavern</a>.</p>
<p><a title="Matt on WP Security" href="http://wordpress.org/development/2009/09/keep-wordpress-secure/">A post by Matt Mullenweg about this hack on the WordPress Development Blog</a> &#8211; <em>I think the advice could be a little more rounded and pragmatic, personally.  Not everyone can be 100% up to date.  Upgrades need testing, and folk go offline for weeks at a time&#8230;</em></p>
<p>I don&#8217;t necessarily recommend all of the linked tips in securing a site, and some are really for experts to deal with, but this is a starting point to understanding.  However, in almost all guides I think they assume that you can&#8217;t do much about the security of your web server.  That&#8217;s really down to your hosts having a genuine understanding of web security.  Good hosts do, and you can tweak things on bad hosts, but if the host isn&#8217;t great you have to look after yourself as much you can &#8211; and that, really, means that if you&#8217;re managing your own site you have to become a security expert.</p>
<blockquote><p>Ultimately, if you&#8217;re not comfortable in dealing with security issues, let someone else who is skilled and knowledgeable do it for you.  If you&#8217;re running a basic blog and don&#8217;t really need a custom or distinctive visual design, get an account at <a title="Free hosted wordpress blogs" href="http://wordpress.com">WordPress.com</a>.  If you need something more but without the fine control given by custom shops you can have a <a title="WordPress VIP hosting" href="http://en.wordpress.com/vip-hosting/">WordPress VIP</a> account, and if you want real control you can use a company like us who deal with WordPress on a daily basis and who will do the worrying for you.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.interconnectit.com/679/a-common-sense-wordpress-security-primer/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>WordPress in News &amp; Media Presentation</title>
		<link>http://www.interconnectit.com/657/wordpress-in-news-media-presentation/</link>
		<comments>http://www.interconnectit.com/657/wordpress-in-news-media-presentation/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 12:16:12 +0000</pubDate>
		<dc:creator>Interconnect IT</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[implementations]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[MU]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.interconnectit.com/?p=657</guid>
		<description><![CDATA[<img src="http://www.interconnectit.com/wp-content/uploads/2009/07/wordcampuk-logo-150x150.jpg" alt="wordcampuk-logo" title="wordcampuk-logo" width="150" height="150" class="alignleft size-thumbnail wp-image-640" />This is the presentation we've given on WordPress in News and Media at WordCamp UK 2009.  It covers the issues faced, barriers, and uses in this sector.]]></description>
			<content:encoded><![CDATA[<p>This is the presentation given by David Coveney at WordCamp UK 2009 in Cardiff.  It covers the advantages, problems and implementations of WordPress as used by the News &#038; Media sectors.</p>
<p>If you need to view the slide notes (primarily for me, to be honest, but you may see some points that got cut during the presentation) you&#8217;ll have to visit the Slideshare site.</p>
<div style="width:680px;text-align:left" id="__ss_1743282"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/interconnectit/wordpress-for-news-and-media-word-camp-uk-2009" title="WordPress For News And Media   Word Camp Uk 2009">WordPress For News And Media   Word Camp Uk 2009</a><object style="margin:0px" width="680" height="587"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=wordpressfornewsandmedia-wordcampuk2009-090720054100-phpapp02&#038;stripped_title=wordpress-for-news-and-media-word-camp-uk-2009" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=wordpressfornewsandmedia-wordcampuk2009-090720054100-phpapp02&#038;stripped_title=wordpress-for-news-and-media-word-camp-uk-2009" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="680" height="587"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/interconnectit">Interconnect IT</a>.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.interconnectit.com/657/wordpress-in-news-media-presentation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We&#8217;re Presenting at WordCamp UK 2009</title>
		<link>http://www.interconnectit.com/639/were-presenting-at-wordcamp-uk-2009/</link>
		<comments>http://www.interconnectit.com/639/were-presenting-at-wordcamp-uk-2009/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 12:17:03 +0000</pubDate>
		<dc:creator>Interconnect IT</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[enterprise]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[WordCampUK]]></category>

		<guid isPermaLink="false">http://www.interconnectit.com/?p=639</guid>
		<description><![CDATA[<img src="http://www.interconnectit.com/wp-content/uploads/2009/07/wordcampuk-logo-150x150.jpg" alt="wordcampuk-logo" title="wordcampuk-logo" width="150" height="150" class="alignleft size-thumbnail wp-image-640" />Last year we decided to keep quiet at <a title="WordCamp UK 2009" href="http://uk.wordcamp.org/">WordCamp UK</a> - simply because we didn't have that much to talk about that we felt could be exciting.  But a year has changed a lot for us and WP...]]></description>
			<content:encoded><![CDATA[<div id="attachment_640" class="wp-caption alignright" style="width: 314px"><a href="http://www.interconnectit.com/wp-content/uploads/2009/07/wordcampuk-logo.jpg" rel="shadowbox[post-639];player=img;"><img class="size-medium wp-image-640" title="wordcampuk-logo" src="http://www.interconnectit.com/wp-content/uploads/2009/07/wordcampuk-logo-304x214.jpg" alt="Be there to get the latest news and network with the leading lights of WordPress in the UK" width="304" height="214" /></a><p class="wp-caption-text">Be there to get the latest news and network with the leading lights of WordPress in the UK</p></div>
<p>Last year we decided to keep quiet at <a title="WordCamp UK 2009" href="http://uk.wordcamp.org/">WordCamp UK</a>, on the whole, beyond a spot of sponsorship &#8211; simply because we didn&#8217;t have that much to talk about that we felt could be exciting.  But a year has changed a lot &#8211; WordPress is becoming popular for large scale blogging platforms such as <a title="Telegraph" href="http://blogs.telegraph.co.uk">The Telegraph Blogs</a>, and for use as a news platform such as at <a title="Telecoms.com" href="http://www.telecoms.com">Telecoms.com</a>.<span id="more-639"></span></p>
<p>Large companies are, inherently, going to be a little more conservative in their approach to new technology &#8211; but once they see others making a move a cascade effect tends to kick in.  This, we believe, is what is starting to happen with WordPress.</p>
<p>So, because of what is happening, we&#8217;re giving <a title="WordCamp UK 2009 running order" href="http://wiki.wordcampuk.tonyscott.org.uk/2009_running_order">two presentations at WordCamp UK</a> this year&#8230;</p>
<h3>WordPress in the Enterprise</h3>
<p>This presentation will cover how WordPress is starting to be seen in the enterprise space, its potential, the pitfalls, and the opportunities available to WordPress developers and designers.  The presentation itself should last around 30-40 minutes, with a further 15 minutes of open discussion and Q&amp;A before clearing the stage in preparation of the next talk.</p>
<h3>WordPress in News &amp; Media</h3>
<p>WordPress is starting to show signs of adoption within the news industry not just as a blogging platform, but as a full featured news platform.  We will cover the strengths and weaknesses, problems found, what WP lacks out of the box, and demonstrate some of the ways in which a comprehensive news site can be built using our Caribou Theme that we built for Spectacu.la.  We will also be demonstrating the back-end we built for Telecoms.com which allow them to run a far more flexible WP news site than ever anticipated.</p>
<h3>Other Reasons to Go to WordCamp UK 2009</h3>
<ol>
<li>It&#8217;s in Cardiff, capital of Wales.</li>
<li><a title="Matt Mullenweg" href="http://ma.tt">Matt Mullenweg</a> is attending &#8211; he&#8217;s effectively the lead of the <a title="WordPress" href="http://wordpress.org">WordPress</a> project and is highly influential in the community.</li>
<li>Other notables such as <a title="Tony Scott" href="http://tonyscott.org.uk/">Tony Scott</a>, <a title="Peter Westwood" href="http://peter.westwood.name/">Peter Westwood</a>, <a title="Simon Wheatley" href="http://www.simonwheatley.co.uk/">Simon Wheatley</a>, <a title="Simon Dickson" href="http://puffbox.com/">Simon Dickson</a> and <a title="Mike Little" href="http://zed1.com/">Mike Little</a> (who sometimes does some work for us) are presenting &#8211; and they always have something interesting to say.</li>
<li>You&#8217;ll be mixing with some of the coolest and nicest people in the software community.</li>
<li>The afterparty is always good fun!</li>
</ol>
<p>We really look forward to seeing everyone at the WordCamp.  Myself and James Whitehead (our technical lead) will be attending.  If you have anything you&#8217;d like to see covered at the event, just comment here.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.interconnectit.com/639/were-presenting-at-wordcamp-uk-2009/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Telegraph Relaunches Blogs on WordPress</title>
		<link>http://www.interconnectit.com/610/telegraph-relaunches-blogs-on-wordpress/</link>
		<comments>http://www.interconnectit.com/610/telegraph-relaunches-blogs-on-wordpress/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 08:12:12 +0000</pubDate>
		<dc:creator>Interconnect IT</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[journalists]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Telegraph]]></category>
		<category><![CDATA[WordPress MU]]></category>

		<guid isPermaLink="false">http://www.interconnectit.com/?p=610</guid>
		<description><![CDATA[<img src="http://www.interconnectit.com/wp-content/uploads/2009/06/telegraph_blogs-150x150.jpg" alt="telegraph_blogs" title="telegraph_blogs" width="150" height="150" class="alignleft size-thumbnail wp-image-611" />On the night of June 23rd, Telegraph Media flicked the switch on a new project they've been working on this Spring - the Telegraph Blogs, relaunched on <a title="WordPress MU" href="http://mu.wordpress.org/">WordPress MU</a>.]]></description>
			<content:encoded><![CDATA[<p>On the night of June 23rd, Telegraph Media flicked the switch on a new project they&#8217;ve been working on this Spring &#8211; the <a title="Telegraph Blogs" href="http://www.telegraph.co.uk/comment/blogs/">Telegraph Blogs</a>, relaunched on <a title="WordPress MU" href="http://mu.wordpress.org/">WordPress MU</a>.</p>
<p>And, proudly, we&#8217;d like to say we had a little bit to do with the project.  Not a lot, mind &#8211; we provided some consultancy, some code snippets, advice and developer support now and then.  It&#8217;s the kind of project we&#8217;d have loved to have taken on in full, but the in-house team at the Telegraph were perfectly capable of doing the work and we always say that if you have the in-house skills then you shouldn&#8217;t spend a small fortune on external consultants and developers.<span id="more-610"></span></p>
<div id="attachment_611" class="wp-caption alignright" style="width: 314px"><img class="size-medium wp-image-611" title="telegraph_blogs" src="http://www.interconnectit.com/wp-content/uploads/2009/06/telegraph_blogs-304x973.jpg" alt="telegraph_blogs" width="304" height="973" /><p class="wp-caption-text">The Telegraph&#39;s blogs, running on WordPress MU</p></div>
<p>The site is a fairly typical MU implementation, but with a few interesting tweaks in the way they&#8217;ve configured.  Instead of giving each journalist their own blog, they&#8217;ve understood that some simply won&#8217;t be that active.  Instead, authors tend towards having a category of their own to work with.  So if you go to <a title="Shane Richmond" href="http://blogs.telegraph.co.uk/technology/author/shanerichmond/">Shane Richmond&#8217;s blog</a>, for instance, you&#8217;re actually seeing the Author Archive view that WordPress provides, within the general Technology Blog.</p>
<p>In fact, the flexibility of WordPress, the way you can output content differently according to category or author, all helped to contribute towards creating a platform that Telegraph Media feel they can grow with.</p>
<h3>Challenges</h3>
<p>One of the key things to think about with media blogs like this is that traffic can be astonishing.  A lot of questions were asked early on about scalability and performance in WordPress.  Because it&#8217;s a purely dynamic system, running more like an application than a group of static files, different approaches have to be taken with caching and performance.  The database server is one key area that always needs consideration &#8211; especially when you have to consider 200 concurrent users.</p>
<p>One interesting lesson learned is that with WordPress you have to be exceptionally careful about go-live processes.  Our standard process is to run two installs &#8211; one for pre-production and one for live.  There is never a beta running that suddenly finds itself running on a different domain name.</p>
<p>At the Telegraph we know that the way they did it was to run a beta on a subdomain prior to running a search and replace script (not sure if it was one of our own <a title="PHP Database Search and Replace" href="http://www.davesgonemental.com/mysql-database-search-replace-with-serialized-php/">developer&#8217;s PHP database search</a> and replace scripts that we use for migrations) and then point the domains right over to it.  That resulted in poor performance initially, even though load testing had confirmed everything to be OK.  Consequently the go-live was held back for a few days, but once WordPress had settled down performance picked up markedly.  The issue appears to be to do with cached variables not resetting on the move.  We&#8217;ll document our low-hassle approach to migrating WordPress installs shortly on this site.</p>
<h3>The Future</h3>
<p>Well, we can&#8217;t talk for what will happen at Telegraph Media in the future, but what we do see is increased interest in WordPress as a blogging tool for newspapers.  But beyond that it&#8217;s even more interesting &#8211; some groups like Informa Telecoms &amp; Media are starting to use WordPress as complete news platforms.  For Informa we built the <a title="Telecoms.com" href="http://telecoms.com">Telecoms.com</a> site almost entirely from WordPress &#8211; this not only led to increased journalistic productivity, but increased traffic and reader engagement.  Seeing the comments section slowly spring to life as readers started to understand its potential has been a real joy to see.</p>
<p>We imagine that it will be magazines and local newspapers that make the first moves to WordPress as a news platform, but when will the first national do it?  We&#8217;d like to be there for them if they make the leap!  WordPress is fully capable thanks, in no part, to some of the excellent work in turning WP into what is essentially framework by <a title="Donncha O'Caoimh" href="http://ocaoimh.ie/">Donncha O&#8217;Caoimh</a>, a WordPress core developer, and others on the <a title="WordPress" href="http://wordpress.org">WordPress.org</a> team.</p>
<p>If the interest in The Telegraph&#8217;s move by such important figures as <a title="Kevin Anderson reports on the Telegraph's use of WordPress" href="http://www.guardian.co.uk/media/pda/2009/jun/24/blogging-telegraphmediagroup">Kevin Anderson at the Guardian</a>, <a title="Puffbox" href="http://puffbox.com/2009/06/25/telegraph-moves-its-blogs-to-wordpress/">Simon Dickson (a WordPress friendly rival who specialises in e-Government sites)</a>, and others is anything to go by then WordPress is booming in the news sector.  Good!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.interconnectit.com/610/telegraph-relaunches-blogs-on-wordpress/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Site Launched: Liverpool Motor Club</title>
		<link>http://www.interconnectit.com/157/site-launched-liverpool-motor-club/</link>
		<comments>http://www.interconnectit.com/157/site-launched-liverpool-motor-club/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 18:26:31 +0000</pubDate>
		<dc:creator>Interconnect IT</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[liverpool motor club]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://liverpoolwebdesigner.com/?p=157</guid>
		<description><![CDATA[<img src="http://www.interconnectit.com/wp-content/uploads/2009/03/liverpoolmotorclub-150x150.jpg" alt="liverpoolmotorclub" title="liverpoolmotorclub" width="150" height="150" class="alignleft size-thumbnail wp-image-158" />As a big fan of motorsport, the director of Interconnect IT, David Coveney couldn't resist helping his club out with a quick but attractive WordPress solution.]]></description>
			<content:encoded><![CDATA[<p><a title="David Coveney" href="http://www.davesgonemental.com">David Coveney</a> of <a title="Interconnect IT" href="http://www.interconnectit.com">WordPress Developers Interconnect IT</a> is a big fan of motorsport and a member of <a title="Liverpool Motor Club" href="http://www.liverpoolmotorclub.com/about/contact-us/">Liverpool Motor Club</a>.  Although not directly involved in the website, he helps out where possible.  Previously we supplied a blog based theme and this had proven to be a huge success for the website.  Lately, however, more was wanted &#8211; the ability to target visitors with a home page along with a fresher, more businesslike appearance.<span id="more-157"></span></p>
<p>Because of a small budget, we decided to use a lightly customised version of iThemes iCar theme which fit the purpose just right.  A few plugins and modifications later, and the site was quickly up and running.  We created some suitable graphics, selected some photographs, and with just a day or so&#8217;s work turned around the site from basic blog, to professional online presence.</p>
<div id="attachment_158" class="wp-caption aligncenter" style="width: 586px"><a title="Liverpool Motor Club" href="http://www.liverpoolmotorclub.com/"><img class="size-large wp-image-158" title="liverpoolmotorclub" src="http://liverpoolwebdesigner.com/wp-content/uploads/2009/03/liverpoolmotorclub-576x498.jpg" alt="liverpoolmotorclub" width="576" height="498" /></a><p class="wp-caption-text">Quickly produced, yet effective.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.interconnectit.com/157/site-launched-liverpool-motor-club/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Database Corruption and its Effects</title>
		<link>http://www.interconnectit.com/117/wordpress-database-corruption-and-its-effects/</link>
		<comments>http://www.interconnectit.com/117/wordpress-database-corruption-and-its-effects/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 13:12:50 +0000</pubDate>
		<dc:creator>David Coveney</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[databases]]></category>
		<category><![CDATA[mySQL]]></category>
		<category><![CDATA[server crash]]></category>
		<category><![CDATA[taxonomy]]></category>

		<guid isPermaLink="false">http://liverpoolwebdesigner.wordpress.com/?p=117</guid>
		<description><![CDATA[We had an interesting failure recently.  The server for one of our larger clients, who have their own high-spec dedicated server arranged, went down.  We got the alert by text, and swung into action.
Well, more accurately we had called the hosting providers and told them to fix it.
They gave no solid reason or [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_118" class="wp-caption alignleft" style="width: 310px"><a href="http://liverpoolwebdesigner.files.wordpress.com/2008/09/fireintheserver.jpg" rel="shadowbox[post-117];player=img;"><img class="size-medium wp-image-118" title="fireintheserver" src="http://liverpoolwebdesigner.files.wordpress.com/2008/09/fireintheserver.jpg?w=300" alt="You know that over-clocking experiment?" width="300" height="199" /></a><p class="wp-caption-text">You know that over-clocking experiment?</p></div>
<p>We had an interesting failure recently.  The server for one of our larger clients, who have their own high-spec dedicated server arranged, went down.  We got the alert by text, and swung into action.</p>
<p>Well, more accurately we had called the hosting providers and told them to fix it.</p>
<p>They gave no solid reason or explanation as to why the server had died, but within in an hour things were normal enough.</p>
<p><em>Or so we thought&#8230;</em></p>
<p><span id="more-117"></span></p>
<p>In fact, things in the background weren&#8217;t looking so great.  The hosting provision is rather off-hand.  Off the &#8220;here&#8217;s a box, now off you go lads!&#8221; variety.  It came with just an OS and an SSH connection.  Nothing, and I mean <strong>nothing</strong> was installed.  No fancy control panels here.  No web server even.  Or ftp.  You were expected to do it yourself.  Right down to compiling code.</p>
<p>So really, when they brought the database back up I should have known better.  They ran no checks.  They simply loaded the service and closed the ticket.</p>
<p>Unfortunately a few days later we started getting support calls from the users:</p>
<blockquote><p>We can&#8217;t see our categories or tags.</p></blockquote>
<blockquote><p>Publishing in advance never works.</p></blockquote>
<p>And then more alarmingly:</p>
<blockquote><p>One of the blogs has disappeared!</p></blockquote>
<p>The latter was a worry.  It was one of the most important blogs on this MU install.  It needed to be restored.</p>
<p>What I found was alarming &#8211; any attempt to look at wp_x_options for that blog in the admin panel caused an error.  PHP was throwing up errors everywhere.  But when I queried the table it looked fine.</p>
<p>In the end it was connecting with mySQL Administrator, a wonderful tool, and trying to do a backup before starting anything technical that revealed the true extent of the troubles.  And there it was &#8211; it couldn&#8217;t backup one table because it was completely corrupt.  Do a repair on it and &#8216;Hey presto!&#8217; fixed.</p>
<p>But that wasn&#8217;t the end of it.  The other problems still existed.  I thought that this rebuild would have been fine, but no.  The Administrator app didn&#8217;t find anything obvious, and when I looked in the taxonomy tables to see what was wrong all seemed fine &#8211; <em>if you did a select on just one table.</em></p>
<p>But if you ran a join, things fell apart and you received zero rows.  This time I decided to run an extended check on the whole database and found that of the 116 tables, five had indexes with link problems.  Now, if you don&#8217;t know, an index in a database is essentially a linked list &#8211; this is a fast way of allowing data to be added without having to shuffle things around too much.  Break a link and that index falls apart &#8211; especially on joins that need to find everything on a table.</p>
<p>So a repair against all affected tables and we were done.</p>
<p>If you get this kind of weird behaviour, especially after a crash, it can be well worth looking through the tables for problems like this.  Do make sure you know what you&#8217;re doing, however &#8211; mySQL Administrator is a powerful, quick and dangerous tool!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.interconnectit.com/117/wordpress-database-corruption-and-its-effects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Something&#8217;s Coming</title>
		<link>http://www.interconnectit.com/98/somethings-coming/</link>
		<comments>http://www.interconnectit.com/98/somethings-coming/#comments</comments>
		<pubDate>Wed, 30 Apr 2008 17:02:45 +0000</pubDate>
		<dc:creator>David Coveney</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://liverpoolwebdesigner.wordpress.com/?p=98</guid>
		<description><![CDATA[Very quietly we&#8217;ve been building something quite special for WordPress.  Let&#8217;s just say that we&#8217;re not the first with the concept, nor, I&#8217;m sure, the last.  But it&#8217;s going to be about the most professional set-up.  And we&#8217;ve done almost all of it with WordPress based technology.
What is it, exactly?
Well, just at [...]]]></description>
			<content:encoded><![CDATA[<p>Very quietly we&#8217;ve been building something quite special for WordPress.  Let&#8217;s just say that we&#8217;re not the first with the concept, nor, I&#8217;m sure, the last.  But it&#8217;s going to be about the most professional set-up.  And we&#8217;ve done almost all of it with WordPress based technology.</p>
<p>What is it, exactly?</p>
<p>Well, just at this moment, we&#8217;re not saying.  There&#8217;s been hints out there, and it&#8217;s not a huge secret, but we&#8217;re not ready to make any big announcements just yet.  Look out for clues in our forum posts around the place, and in some of our work.</p>
<p>Really I had to post simply to explain why we&#8217;ve posted nothing on the blog for over a month.  There&#8217;s been that internal project, but also some very interesting projects for clients.  All of which has conspired to keep us with our noses on the grindstone.  Soon we&#8217;ll look up and return to normal.  Maybe.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.interconnectit.com/98/somethings-coming/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
