<?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>FiddyP</title>
	<atom:link href="http://fiddyp.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://fiddyp.co.uk</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Mon, 08 Feb 2010 21:29:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Taming the Upgrades plugin from http://premium.wpmudev.org</title>
		<link>http://fiddyp.co.uk/taming-the-upgrades-plugin/</link>
		<comments>http://fiddyp.co.uk/taming-the-upgrades-plugin/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 19:54:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog Tools]]></category>
		<category><![CDATA[Making / Made Money]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[credits]]></category>
		<category><![CDATA[premium]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[wpmu]]></category>

		<guid isPermaLink="false">http://fiddyp.co.uk/?p=1577</guid>
		<description><![CDATA[If you&#8217;re lucky enough to have a subscription to Premium WPMU Dev account then you&#8217;ll have access to great monetization plugins like the Upgrades or Supporter which take all the pain out of providing a &#8216;pay for&#8217; service that can handle payments through Paypal, Google or even Amazon gateways.
I downloaded and installed the upgrades plugin [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re lucky enough to have a subscription to <a href="http://premium.wpmudev.org/">Premium WPMU Dev</a> account then you&#8217;ll have access to great monetization plugins like the Upgrades or Supporter which take all the pain out of providing a &#8216;pay for&#8217; service that can handle payments through Paypal, Google or even Amazon gateways.</p>
<p>I downloaded and installed the upgrades plugin a while ago and I&#8217;ve used it to monetize certain parts of my ComLuv site. There&#8217;s the usual way of adding plugins to the Upgrades directory and configuring them to be used which I&#8217;ll go into in a future post but I wanted to use the system slightly differently, and that was to charge users for adding new URLs to an account or to add default links to their returned list of posts.</p>
<h2>The advantage of premium</h2>
<p>Some of the advantages to using wpmupremium plugins is the support you receive, knowledge that the plugin will be updated to keep it compatible with new changes and my favourite is, the quality of the code.</p>
<p>When you&#8217;re getting premium, you&#8217;re getting premium code which for me personally, has taught me a LOT about how wordpress works. Particularly custom hooks and actions and filters. That was always a mystery to me until I dissected the plugins I downloaded from their site so it was a breeze to modify the upgrades plugin to work for users who don&#8217;t have blogs and start using the internal functions in a daughter template to do what I wanted.</p>
<h3>Modifying the upgrades plugin</h3>
<p><img src="http://fiddyp.co.uk/wp-content/uploads/2010/02/buynewurlwithcredits-300x165.png" alt="" title="buynewurlwithcredits" width="300" height="165" class="aligncenter size-medium wp-image-1597" /><br />
I needed to allow the upgrades menu to show for regular users because not everyone who joins the Comluv site starts a blog. This was just a simple case of changing the user level so that everyone, not just blog owners can see the menu and buy credits.</p>
<p>There are two places to modify:<br />
<strong><br />
/mu-plugins/upgrades-framework.php<br />
line ~ 197-200 (upgrades plug pages framework function)<br />
change add menu and submenu calls to </strong></p>
<p><code>add_menu_page($upgrades_branding_plural, $upgrades_branding_plural, 0, 'upgrades.php');<br />
add_submenu_page('upgrades.php', __('Credits'), __('Credits'), 0, 'credits', 'upgrades_credits_output' );<br />
add_submenu_page('upgrades.php', __('History'), __('History'), 0, 'history', 'upgrades_log_output' );</code></p>
<p><strong>line ~ 1919 (upgrades_credits_output function)<br />
change user check to<br />
</strong><br />
<code>if(!current_user_can('level_0')) {</code></p>
<h2>Creating the daughter template</h2>
<p>Adding another page you can use as a template is pretty easy, you just need to create a new php file in your theme directory and make sure it has the correct remarks at the top to identify it as a template page.</p>
<p><code><br />
/*<br />
Template Name: ComLuv purchase url<br />
*/<br />
</code></p>
<p>Next just copy and paste the main calls from another template, you&#8217;ll be deleting most of it like the loop to display posts and replacing it with your own hard coded form and text. Be sure to keep the divs that surround the content intact.</p>
<p>I wrote a description of the item being sold and added a form.<br />
(DON&#8217;T copy and paste from this page, I had to remove the beginning &lt; characters from the code so it displays properly)<br />
<code><br />
form action='/member/additional-urls/' method="POST"><br />
		input name="addurl" type="text" size="30"/><br />
		input type="submit" name="submit1" value="Submit"/><br />
		<?php wp_nonce_field ( 'addurl1' ); ?><br />
		/form><br />
</code></p>
<p>I also added a finish_page() function which just closes the /div tags so I could easily break out of what I was displaying without rendering the rest of the custom code below it.</p>
<p>You set the action to the page slug you&#8217;re publishing the page as and put a nonce field in there so you can check it with the next bit of code to prevent a naughty user from trying to call the purchase directly.</p>
<h2>Handling the purchase</h2>
<p>Next, you need to handle the data that gets submitted by your form and do the magic with the users credits.</p>
<p><code>if(isset($_POST['submit1'])){<br />
	$nonce=$_REQUEST['_wpnonce'];<br />
	if(!wp_verify_nonce($nonce,'addurl1')){<br />
		echo 'Page request deformed, please go back and try again. (b1s1)';<br />
		finish_page();<br />
	}<br />
	if(!$_POST['addurl']){<br />
		echo 'Please go back and enter a value';<br />
		finish_page();<br />
	}<br />
	// check if user has enough credits<br />
	global $user_ID;<br />
	$credits = upgrades_user_credits_available($user_ID);<br />
	if($credits < 3){<br />
		echo 'h2>Error - Insufficient Credits/h2>';<br />
		echo 'p>You will need to purchase some credits to register another URL, you currently have strong>'.$credits.'/strong>';<br />
		echo 'p>a href="/wp-admin/upgrades.php?page=credits">Click here to visit the purchase page/a>';<br />
		finish_page();<br />
	}<br />
// if we're here then everything is ok to provide service and deduct credits<br />
$credits = upgrades_user_credits_available($user_ID);<br />
		$credits -= 3;<br />
		upgrades_user_credits_update($credits);<br />
		upgrades_log_add_msg($user_ID,'You paid 3 credits for an additional URl - '.$url);<br />
		do_add_url($url,$user_ID);<br />
		echo 'h2>Site added, 3 credits used on your account/h2>';<br />
		echo 'p>You have '.$credits.' credits remaining';<br />
		echo 'p>a href="/member/additional-urls/">Click here to refresh the page/a>';<br />
</code></p>
<p>The first bit gets the nonce you created and checks it and displays an error message if it doesn&#8217;t match<br />
Next, check the field you&#8217;re expecting and spit out an error if it is empty.<br />
Next, check the user has enough credits and spit out an error if they don&#8217;t.<br />
If everything is fine, continue.</p>
<p>use $credits = upgrades_user_credits_available($user_ID); to get the users current credits total<br />
use upgrades_user_credits_update($credits); to set the users credits total to $credits (after you deduct what your item/upgrade costs)<br />
use upgrades_log_add_msg($user_ID,&#8217;You paid 3 credits for an additional URl &#8211; &#8216;.$url); to add a message to the users Credits history page so they know they used some.</p>
<p>That&#8217;s it, easy peasy! Here&#8217;s an idea, use credits to sell digital downloads on another page, just check and deduct the users credits before allowing a dowload.</p>
<p>I&#8217;ll post a follow up to this soon on how to use the upgrades plugin to add a new package that enables the RSS widget for a blog (I&#8217;ll show you how to disable the rss widget too)</p>
<p>You can get over 100 plugins and themes of premium quality at <a href="http://premium.wpmudev.org">http://premium.wpmudev.org</a> and they all help to make your wpmu site better than the jones&#8217;s <img src='http://fiddyp.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://fiddyp.co.uk/taming-the-upgrades-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Text links work to make Fired Wok number 1 Oriental Food Delivery</title>
		<link>http://fiddyp.co.uk/text-links-work-to-make-fired-wok-number-1-oriental-food-delivery/</link>
		<comments>http://fiddyp.co.uk/text-links-work-to-make-fired-wok-number-1-oriental-food-delivery/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 13:35:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog News]]></category>
		<category><![CDATA[Making / Made Money]]></category>
		<category><![CDATA[ecommerce]]></category>

		<guid isPermaLink="false">http://fiddyp.co.uk/?p=1572</guid>
		<description><![CDATA[A customer came in to the takeaway we run and mentioned that he got to our website (Fired Wok Chinese Takeaway) only after he added the word &#8216;takeaway&#8217; to his search term.
Confusing because, I was quite pleased with how the SERPS are for Firedwok and &#8216;chinese takeaway lancaster&#8216; which results (at time of writing) to [...]]]></description>
			<content:encoded><![CDATA[<p>A customer came in to the takeaway we run and mentioned that he got to our website (<a href="http://firedwok.co.uk">Fired Wok Chinese Takeaway</a>) only after he added the word &#8216;takeaway&#8217; to his search term.</p>
<p>Confusing because, I was quite pleased with how the SERPS are for Firedwok and &#8216;<a href="http://www.google.co.uk/search?hl=en&#038;client=firefox-a&#038;rlz=1R1GGIC_en-GB___GB356&#038;hs=hAb&#038;ei=q3lIS8fKOouy0gSI1rTXAQ&#038;sa=X&#038;oi=spell&#038;resnum=0&#038;ct=result&#038;cd=1&#038;ved=0CAYQBSgA&#038;q=chinese+takeaway+lancaster&#038;spell=1">chinese takeaway lancaster</a>&#8216; which results (at time of writing) to this..</p>
<div id="attachment_1573" class="wp-caption aligncenter" style="width: 675px"><img src="http://fiddyp.co.uk/wp-content/uploads/2010/01/firedwoksearch.jpg" alt="" title="" width="665" height="595" class="size-full wp-image-1573" /><p class="wp-caption-text">Straight on the map and number 1 on results (with added tags)</p></div>
<p>It turns out that he was searching for &#8216;oriental food delivery lancaster&#8217; which made the site past page 5 on the results!</p>
<h2>Bring on the featured links!</h2>
<p>A few days or weeks ago, ComLuv got put up to PR6 on the homepage from Google. How nice! I mentioned this in the email newsletter and within a few hours, two links were sold on the sidebar for 30 days each. One with a subscription! woot!, might this be the first month Comluv pays for itself? lol</p>
<p>I thought I&#8217;d take advantage of this PR increase and put a text link for &#8216;oriental food delivery lancaster&#8217; on with the paid ones and left it a while. In the meantime, I put some more posts on the blog portion of the takeaway website and put in some &#8216;oriental food&#8217; references on the homepage.</p>
<h2>Got me some SERPs</h2>
<p>And now, a search for &#8216;oriental food delivery lancaster&#8217; results in a number 1 position (and number 2) </p>
<div id="attachment_1574" class="wp-caption aligncenter" style="width: 720px"><img src="http://fiddyp.co.uk/wp-content/uploads/2010/01/firedwokorientalsearch.jpg" alt="" title="firedwokorientalsearch" width="710" height="338" class="size-full wp-image-1574" /><p class="wp-caption-text">1 portion of SERPS please</p></div>
<p>Very happy with my text link purchase, and because I own the site it means it was free! haha <img src='http://fiddyp.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>I guess I can take it down now, it&#8217;s done it&#8217;s job and it can make some space for another paid ad.</p>
<h2>It&#8217;s not just me</h2>
<p>A paid customer bought a link for UK payday loans back when that search term had them after page 10 (I tested it when they first bought the link) and now that term results in them being on page 1 of google. </p>
<p>They even asked why I had no subscription option for the ads! I switched it on and straight away, I had 50$ per month subscriptions coming in. Very nice!</p>
<h2>Get YOU some links</h2>
<p>If I can sell a few more links on subscription, I&#8217;ll have enough to upgrade the server to more memory and a faster processor. It&#8217;s typical that the first time the site has made enough money to pay for it&#8217;s own server and bandwidth, it reaches capacity again and needs upgrading! lol. what a fun ride!</p>
<p>You can buy featured homepage links and network wide footer links on the <a href="http://comluv.com/tools/advertising/">ComLuv page here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fiddyp.co.uk/text-links-work-to-make-fired-wok-number-1-oriental-food-delivery/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Brrr! Amazing recent picture of the UK from space</title>
		<link>http://fiddyp.co.uk/brrr-amazing-recent-picture-of-the-uk-from-space/</link>
		<comments>http://fiddyp.co.uk/brrr-amazing-recent-picture-of-the-uk-from-space/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 00:40:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog News]]></category>
		<category><![CDATA[ice]]></category>
		<category><![CDATA[snow]]></category>
		<category><![CDATA[uk]]></category>

		<guid isPermaLink="false">http://fiddyp.co.uk/?p=1562</guid>
		<description><![CDATA[This picture taken yesterday by NASA

Click the image to download a high-res version.
]]></description>
			<content:encoded><![CDATA[<p>This picture taken yesterday by NASA<br />
<a href="http://rapidfire.sci.gsfc.nasa.gov/gallery/?2010007-0107/GreatBritain.A2010007.1150.1km.jpg"><img src="http://fiddyp.co.uk/wp-content/uploads/2010/01/UK-Mainland-covered-by-snow-07-Jan-2010.jpeg" alt="" title="UK-Mainland-covered-by-snow,-07-Jan-2010" width="510" height="660" class="aligncenter size-full wp-image-1570" /></a></p>
<p>Click the image to download a high-res version.</p>
]]></content:encoded>
			<wfw:commentRss>http://fiddyp.co.uk/brrr-amazing-recent-picture-of-the-uk-from-space/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Snow day! Schoolboy = YES, Business Owner = NOOoo</title>
		<link>http://fiddyp.co.uk/snow-day-schoolboy-yes-business-owner-noooo/</link>
		<comments>http://fiddyp.co.uk/snow-day-schoolboy-yes-business-owner-noooo/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 15:27:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog News]]></category>
		<category><![CDATA[delivery]]></category>
		<category><![CDATA[lancaster]]></category>
		<category><![CDATA[snow]]></category>

		<guid isPermaLink="false">http://fiddyp.co.uk/?p=1557</guid>
		<description><![CDATA[I used to love winter, I used to love it even more if it snowed. Snowy roads, especially in the UK, means massive disruption to public services and roads. It used to mean no school, later it meant no need to trudge to work. Now, as a business owner with a large percentage of business [...]]]></description>
			<content:encoded><![CDATA[<p>I used to love winter, I used to love it even more if it snowed. Snowy roads, especially in the UK, means massive disruption to public services and roads. It used to mean no school, later it meant no need to trudge to work. Now, as a business owner with a large percentage of business relying on deliveries, it means glum faces all around!</p>
<div id="attachment_1558" class="wp-caption aligncenter" style="width: 235px"><a href="http://fiddyp.co.uk/wp-content/uploads/2010/01/snowday.jpg"><img src="http://fiddyp.co.uk/wp-content/uploads/2010/01/snowday-225x300.jpg" alt="" title="snowday" width="225" height="300" class="size-medium wp-image-1558" /></a><p class="wp-caption-text">Ice skating anyone?</p></div>
<p>It&#8217;s not too bad, we still get the usual suspects who battle through any kind of weather to get the chips, fried rice and curry sauce in a box. Somehow, the grocery deliveries happened and only the carrotts were missing! They&#8217;ll battle through the narrow streets to us again just deliver a bag of carrotts. Try that in London..</p>
<p>Tomorrows forcast is for bright skies, I hope it clears the snow off the roads long enough to get some sweet &#038; sour chicken out to the masses! <img src='http://fiddyp.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  The weather doesn&#8217;t look too good for the South of the country though, there&#8217;s a 18 inch snowfall predicted down there. oo-er!</p>
<p>How has the weather been affecting your area? do you love the snow or hate it?</p>
]]></content:encoded>
			<wfw:commentRss>http://fiddyp.co.uk/snow-day-schoolboy-yes-business-owner-noooo/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Sick, lazy, no wait, definitely sick</title>
		<link>http://fiddyp.co.uk/sick-lazy-no-wait-definitely-sick/</link>
		<comments>http://fiddyp.co.uk/sick-lazy-no-wait-definitely-sick/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 13:46:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog News]]></category>
		<category><![CDATA[commentluv]]></category>
		<category><![CDATA[flu]]></category>
		<category><![CDATA[sick]]></category>

		<guid isPermaLink="false">http://fiddyp.co.uk/?p=1549</guid>
		<description><![CDATA[My first day off in 9 months and it turns into a sick day! OMG I am super flu&#8217;d up and my plans for sketching out the new CommentLuv have been skuppered  
I think I&#8217;ll have to try and do some stuff on my laptop that needs doing to the ComLuv site. Things like, [...]]]></description>
			<content:encoded><![CDATA[<p>My first day off in 9 months and it turns into a sick day! OMG I am super flu&#8217;d up and my plans for sketching out the new CommentLuv have been skuppered <img src='http://fiddyp.co.uk/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<div id="attachment_1550" class="wp-caption aligncenter" style="width: 310px"><img src="http://fiddyp.co.uk/wp-content/uploads/2009/12/fluvirus.jpg" alt="" title="Little Bugger" width="300" height="300" class="size-full wp-image-1550" /><p class="wp-caption-text">That's not a moon! thats the flu virus</p></div>
<p>I think I&#8217;ll have to try and do some stuff on my laptop that needs doing to the ComLuv site. Things like, a daily visit list of CommentLuv enabled sites based on the most comments received. There are other maintenance tasks I have to do but that&#8217;ll take my main pc and it&#8217;s bloody cold in my computer room!</p>
<div id="attachment_1551" class="wp-caption aligncenter" style="width: 310px"><img src="http://fiddyp.co.uk/wp-content/uploads/2009/12/frozenlaptop-300x162.jpg" alt="" title="Too cold to type" width="300" height="162" class="size-medium wp-image-1551" /><p class="wp-caption-text">Not quite like this but nearly!</p></div>
<p>Seriously! it&#8217;s right cold oop North. Couple that with the fact that the flat above the takeaway has single pane glass in the windows and the one in my computer room has a broken latch which prevents it from closing and you&#8217;ve got a perfect recipe for bloody freezing! </p>
<p>All my development work has grinded to a halt because of this cold weather and with it being Christmas and we&#8217;re one less chef in the kitchen, there is a huge amount of work to be done in the offline world of a Chinese takeaway. I felt quite stressed in the beginning of this period where I couldn&#8217;t get any coding done but rather than get emotionally damaged by the pressure of all this code and web stuff, I decided to just concentrate on what is paying the bills and supporting the family for a bit.</p>
<p>There&#8217;s no real problems with CommentLuv at the moment, it&#8217;s working on WP2.9 and the ComLuv site is surviving and only just now starting to make some pennies with adsense and kontera so hopefully, nothing major will happen between now and spring so I can start some serious coding again. Pah, who am I kidding? I wont be able to last until spring! lol, guess I&#8217;ll have to take another unpaid day away when I&#8217;m better just so I can exercise my brain.</p>
<p>Now back to my snot filled hankies. where the hell does all this snot come from? something must be losing out on liquids in my body so all this snot can be produced. bleurgh</p>
]]></content:encoded>
			<wfw:commentRss>http://fiddyp.co.uk/sick-lazy-no-wait-definitely-sick/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Wordpress MU 2.8 Beginners Guide Book Review</title>
		<link>http://fiddyp.co.uk/wordpress-mu-2-8-beginners-guide-book-review/</link>
		<comments>http://fiddyp.co.uk/wordpress-mu-2-8-beginners-guide-book-review/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 11:32:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[beginners guide]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[packt]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[wpmu]]></category>

		<guid isPermaLink="false">http://fiddyp.co.uk/?p=1541</guid>
		<description><![CDATA[PacktPublishing sent me a shiny new publication called Wordpress MU 2.8. It&#8217;s one of their &#8220;beginners guide&#8221; series which means it takes you step by step from noob to hero on the subject. I&#8217;ve read a few of their other books and they&#8217;ve always been a good read and source of new information.

Wordpress Mu or [...]]]></description>
			<content:encoded><![CDATA[<p>PacktPublishing sent me a shiny new publication called Wordpress MU 2.8. It&#8217;s one of their &#8220;beginners guide&#8221; series which means it takes you step by step from noob to hero on the subject. I&#8217;ve read a few of their other books and they&#8217;ve always been a good read and source of new information.</p>
<p><a href="http://www.packtpub.com/wordpress-mu-2-8-beginners-guide?utm_source=fiddyp.co.uk&#038;utm_medium=bookrev&#038;utm_content=blog&#038;utm_campaign=mdb_001762"><img src="http://fiddyp.co.uk/wp-content/uploads/2009/12/wpmubeginnerbook.png" alt="" title="wpmubeginnerbook" width="100" height="123" class="aligncenter size-full wp-image-1542" /></a></p>
<p>Wordpress Mu or WPMu is already familiar to me after creating ComLuv.com to run using it so I was looking forward to receiving this book to see if there were some things I had missed. Oh yeah, I missed a lot!</p>
<p>If you&#8217;re looking to build a Wordpress based site that also has the option of allowing your own readers to create their own blogs then you need to look at WPMu. Not only is it the same platform that wordpress.com uses for their millions of blogs, it&#8217;s also expandable to be a social network in it&#8217;s own right. It does this with the buddypress and bbpress plugins. This book shows you how to use them all.</p>
<h3>In the beginning</h3>
<p>Like all beginner books, the first part deals with the introduction and installation chapters. In other books, this is just a page or two but with PacktPub books, you get the full deal. Step by step with pictures and alternative methods. Even right down to setting up Apache to work with subdomains which is going to save you a lot of trouble hunting around forums for answers.</p>
<h3>Expansion</h3>
<p>After you learn how to set up your site and modify it&#8217;s appearance, you&#8217;ll want to know what plugins and features can be added. The middle section of the book takes you through different options like buddypress, bbpress (forums) and other useful additions that will make your site stand out from the rest. </p>
<p>As with other beginners guide books, the author works with a case study site and as you progress through the chapters adding more things, you will be able to follow on with your own local install and compare results. This makes it a lot more interactive to learn and with the pop quizzes and &#8220;what just happened&#8221; reviews, you&#8217;ll really prepare yourself for your project.</p>
<h3>More than words..</h3>
<p>As well as covering the technical details for installing, maintaining and optimizing your site, the author also goes into the real life way of creating and running a blog/social network hub. Things like monetizing your site or ways to increase traffic are given a whole chapter and will really help the new webmaster get to grips with their site.</p>
<h3>thinking Mu?</h3>
<p>If you&#8217;re just considering looking into WPMu or you run more than one wordpress blog and want to consolidate them all to one site then you should buy yourself this book. It&#8217;ll give you enough information so that you can try it out without worrying about having to bring in outside help. You can view the books contents page and read more about it here : <a href="http://www.packtpub.com/wordpress-mu-2-8-beginners-guide?utm_source=fiddyp.co.uk&#038;utm_medium=bookrev&#038;utm_content=blog&#038;utm_campaign=mdb_001762"><br />
<h2>Wordpress MU 2.8 Beginners Guide</h2>
<p></a></p>
]]></content:encoded>
			<wfw:commentRss>http://fiddyp.co.uk/wordpress-mu-2-8-beginners-guide-book-review/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>They go in 3&#8217;s too</title>
		<link>http://fiddyp.co.uk/they-go-in-3s-too/</link>
		<comments>http://fiddyp.co.uk/they-go-in-3s-too/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 19:44:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog News]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[7]]></category>
		<category><![CDATA[asrock]]></category>
		<category><![CDATA[freeze]]></category>
		<category><![CDATA[m3a790gxh]]></category>
		<category><![CDATA[ocz ram]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://fiddyp.co.uk/?p=1533</guid>
		<description><![CDATA[You know how the expression says that problems come in 3&#8217;s ? I get 3 lots of 3&#8217;s most of time but this week I think I have managed to get rid of 3 problems.
I was posting about my woes at Comluv and just a few days later I finally managed to track down the [...]]]></description>
			<content:encoded><![CDATA[<p>You know how the expression says that problems come in 3&#8217;s ? I get 3 lots of 3&#8217;s most of time but this week I think I have managed to get rid of 3 problems.</p>
<p>I was posting about my woes <a href="http://comluv.com/news/breakdown-central/">at Comluv</a> and just a few days later I finally managed to track down the random freezes on my AsRock M3A790GXH &#8211; 128M motherboard and OCZ DDR3 Gold Series RAM</p>
<h3>Random crashes on Vista/7 &#8211; AsRock M3A790GXH/128M with OCZ DDR3 Gold RAM &#8211; Solved</h3>
<div id="attachment_1534" class="wp-caption aligncenter" style="width: 310px"><a href="http://fiddyp.co.uk/wp-content/uploads/2009/11/ddr3ram.jpg"><img src="http://fiddyp.co.uk/wp-content/uploads/2009/11/ddr3ram-300x225.jpg" alt="Shiny, SHINY! RAM!" title="OCZ DDR3 Ram" width="300" height="225" class="size-medium wp-image-1534" /></a><p class="wp-caption-text">Shiny, SHINY! RAM!</p></div><br />
The crashes were driving me crazy, I could never repeat the action that caused the crash and there was never any entry in the event log except for after the reboot. I tried removing one stick and running it with that one to see if it was a faulty stick, it crashed on the first try so I thought that was it but after swapping it with the other stick, the pc crashed within a day. <img src='http://fiddyp.co.uk/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>It turns out that OCZ DDR3 RAM needs 1.9v instead of the regular 1.5v that it would get from the motherboard. A quick visit to the bios and I switched the DRAM voltage to 2.0v and the pc has been up and running for days without a problem. yey!</p>
<h3>Dedicated server non responsive after high traffic &#8211; solved</h3>
<p><div id="attachment_1535" class="wp-caption aligncenter" style="width: 310px"><a href="http://fiddyp.co.uk/wp-content/uploads/2009/11/Ukfast_logo_white_text_black_slug_whitebg_4pt_keyline.gif"><img src="http://fiddyp.co.uk/wp-content/uploads/2009/11/Ukfast_logo_white_text_black_slug_whitebg_4pt_keyline-300x90.gif" alt="They put the fast in, um, ukfast :)" title="UKFAST" width="300" height="90" class="size-medium wp-image-1535" /></a><p class="wp-caption-text">They put the fast in, um, ukfast <img src='http://fiddyp.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p></div><br />
Another problem was my server, it is fast and a nice bit of kit but it was getting overloaded at times with so many requests to the CommentLuv API. I had a word with <a href="http://ql2.me/1/ukfast">UKFast</a> explaining to them that I expected my server to be able to stay up if a lot of traffic came in. They did their utmost to help and sent me a very nicely priced invoice to beef up my server with an extra 1 GB of RAM.</p>
<p>It&#8217;s been up for 7 days and the CTM graphs are showing me that my CPU usage and system load are down a lot from what they&#8217;ve been.</p>
<p><div id="attachment_1536" class="wp-caption aligncenter" style="width: 310px"><a href="http://fiddyp.co.uk/wp-content/uploads/2009/11/cpuafterupgrade.JPG"><img src="http://fiddyp.co.uk/wp-content/uploads/2009/11/cpuafterupgrade-300x110.jpg" alt="Monthly view upgrade shows better performance" title="cpuafterupgrade" width="300" height="110" class="size-medium wp-image-1536" /></a><p class="wp-caption-text">Monthly view upgrade shows better performance</p></div>
<div id="attachment_1537" class="wp-caption aligncenter" style="width: 310px"><a href="http://fiddyp.co.uk/wp-content/uploads/2009/11/cpuafterupgradeyear.JPG"><img src="http://fiddyp.co.uk/wp-content/uploads/2009/11/cpuafterupgradeyear-300x110.jpg" alt="Looks more dramatic on the 1 year chart" title="cpuafterupgradeyear" width="300" height="110" class="size-medium wp-image-1537" /></a><p class="wp-caption-text">Looks more dramatic on the 1 year chart</p></div>
<p>My last issue was my laptop charger, it went poof! I did a search online for a universal charger and the best price I could see was over 60 quid! luckily, I was able to buy a Toshiba charger from ebay for 9.99 for next day delivery.</p>
<p>sorted! (for now)</p>
]]></content:encoded>
			<wfw:commentRss>http://fiddyp.co.uk/they-go-in-3s-too/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>The shame me into action post</title>
		<link>http://fiddyp.co.uk/the-shame-me-into-action-post/</link>
		<comments>http://fiddyp.co.uk/the-shame-me-into-action-post/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 21:36:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog News]]></category>
		<category><![CDATA[affiliate]]></category>
		<category><![CDATA[contest]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[paypal]]></category>
		<category><![CDATA[referral]]></category>

		<guid isPermaLink="false">http://fiddyp.co.uk/?p=1526</guid>
		<description><![CDATA[I&#8217;ve got so many bloody projects on the go that they&#8217;ve all stopped!
Here&#8217;s a list for future me to read to feel the future shame..
06 Nov *edit* made some progress!

Intense Debate Commentluv

I need to split up the css so it&#8217;s in a separate file
I need to add a check for existence of jquery at the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve got so many bloody projects on the go that they&#8217;ve all stopped!</p>
<p>Here&#8217;s a list for future me to read to feel the future shame..</p>
<p>06 Nov *edit* made some progress!</p>
<ol>
<li>Intense Debate Commentluv
<ul>
<li><del datetime="2009-11-06T23:21:09+00:00">I need to split up the css so it&#8217;s in a separate file</del></li>
<li>I need to add a check for existence of jquery at the start and load it if not already loaded</li>
<li><del datetime="2009-11-06T23:21:09+00:00">I need to pretty up the extra url field</del></li>
<li><del datetime="2009-11-06T23:21:09+00:00">I need to hide the existing url field on a logged out form and populate it with the value in the one I added with the script</del></li>
</ul>
</li>
<li>Premium Support page
<ul>
<li>Create the different charge bands</li>
<li>Create paypal buttons with IPN url</li>
<li>Create said IPN receiving script</li>
<li>Integrate it with the comluv affiliate plugin for paying referral site</li>
</ul>
</li>
<li>Premium Extras
<ul>
<li>Create different charge groups</li>
<li><del datetime="2009-11-06T23:22:55+00:00">Create paypal buttons</del></li>
<li><del datetime="2009-11-06T23:21:09+00:00">Create IPN receiving script</del></li>
<li><del datetime="2009-11-06T23:22:55+00:00">Integrate said script with affiliate payment</del></li>
</ul>
</li>
<li>Referral contest
<ul>
<li>Work out the prizes</li>
<li>Type up the description post</li>
<li>Set up a single area for entries</li>
</ul>
</li>
</ol>
<p>That&#8217;ll do for now, there&#8217;s more but I&#8217;m getting depressed</p>
]]></content:encoded>
			<wfw:commentRss>http://fiddyp.co.uk/the-shame-me-into-action-post/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>How to do a mass text search and replace with MySQL</title>
		<link>http://fiddyp.co.uk/how-to-do-a-mass-text-search-and-replace-with-mysql/</link>
		<comments>http://fiddyp.co.uk/how-to-do-a-mass-text-search-and-replace-with-mysql/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 10:28:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[replace]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[string]]></category>

		<guid isPermaLink="false">http://fiddyp.co.uk/?p=1521</guid>
		<description><![CDATA[I noticed that all my images on the posts here weren&#8217;t showing and it was because the url to their location was still pointing at the sub blog on The Comluv Network so I needed a way to edit the database to update the url to point to the files held here.
Easy with a REPLACE [...]]]></description>
			<content:encoded><![CDATA[<p>I noticed that all my images on the posts here weren&#8217;t showing and it was because the url to their location was still pointing at the sub blog on The Comluv Network so I needed a way to edit the database to update the url to point to the files held here.</p>
<p>Easy with a REPLACE function on the wp_posts table.</p>
<p>You just need 3 things for the replace command :
<ol>
<li>The row you&#8217;re altering</li>
<li>The string you&#8217;re searching for</li>
<li>The string you&#8217;re replacing with</li>
</ol>
<p><code>UPDATE `wp_posts` SET `post_content` = REPLACE( `post_content` , "fiddyp.comluv.com/files/", "fiddyp.co.uk/wp-content/uploads/" )</code></p>
<p>It did the whole table of posts in less than a second. Sweet, now all my images are back to normal on this site.</p>
]]></content:encoded>
			<wfw:commentRss>http://fiddyp.co.uk/how-to-do-a-mass-text-search-and-replace-with-mysql/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>My video interview at UKFast Offices</title>
		<link>http://fiddyp.co.uk/my-video-interview-at-ukfast-offices/</link>
		<comments>http://fiddyp.co.uk/my-video-interview-at-ukfast-offices/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 21:06:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog News]]></category>
		<category><![CDATA[video blogging]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[manchester]]></category>
		<category><![CDATA[ukfast]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://fiddyp.co.uk/?p=1518</guid>
		<description><![CDATA[I was invited down to Manchester by UKFast some weeks ago to talk about CommentLuv and answer a few questions about the site and why their server is so bloody awesome (it really is!).
Here&#8217;s the vid

Some of my soundbytes got included in another video too, must have said some good things  
]]></description>
			<content:encoded><![CDATA[<p>I was invited down to Manchester by <a href="http://ql2.me/1/ukfast">UKFast</a> some weeks ago to talk about CommentLuv and answer a few questions about the site and why their server is so bloody awesome (it really is!).</p>
<p>Here&#8217;s the vid</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/2Fr3hjyO27U&#038;rel=0&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;feature=player_profilepage&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/2Fr3hjyO27U&#038;rel=0&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;feature=player_profilepage&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="425" height="344"></embed></object></p>
<p>Some of my soundbytes got included in another video too, must have said some good things <img src='http://fiddyp.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://fiddyp.co.uk/my-video-interview-at-ukfast-offices/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
