<?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>Auroral</title>
	<atom:link href="http://auroral.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://auroral.co.uk</link>
	<description>Characteristic of the dawn &#34;a dim auroral glow&#34;</description>
	<lastBuildDate>Mon, 30 Jan 2012 22:32:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Get Rid Of Those WP Login Links</title>
		<link>http://auroral.co.uk/2012/01/30/get-rid-of-those-wp-login-links/</link>
		<comments>http://auroral.co.uk/2012/01/30/get-rid-of-those-wp-login-links/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 21:39:04 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://auroral.co.uk/?p=398</guid>
		<description><![CDATA[This plugin is for single site installs, it will change the link and title from the WordPress one to your own site.
Custom Login Page Link
This is the link and link title on the login page.
]]></description>
			<content:encoded><![CDATA[<p>This plugin is for single site installs, it will change the link and title from the WordPress one to your own site.</p>
<p><a href='http://auroral.co.uk/wp-content/uploads/2012/01/custom-loginlinksbegone.zip'>Custom Login Page Link</a></p>
<p>This is the link and link title on the login page.</p>
]]></content:encoded>
			<wfw:commentRss>http://auroral.co.uk/2012/01/30/get-rid-of-those-wp-login-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Remove WP Drop Down Links</title>
		<link>http://auroral.co.uk/2012/01/12/wordpress-remove-wp-drop-down-links/</link>
		<comments>http://auroral.co.uk/2012/01/12/wordpress-remove-wp-drop-down-links/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 05:05:23 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Admin Bar]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">http://auroral.co.uk/?p=391</guid>
		<description><![CDATA[I posted a small plugin over at WPMUDev for users, here it is again:
along with some code snippets on how to handle this:
http://premium.wpmudev.org/forums/topic/remove-wp-about-menu-from-toolbar#post-161711
There are a few options. First the manual edits:
Open the file:
/wp-includes/class-wp-admin-bar.php
And around line 456:

456
add_action&#40; 'admin_bar_menu', 'wp_admin_bar_wp_menu', 10 &#41;;

Comment it out or just remove the whole line. Now the WP links part is all [...]]]></description>
			<content:encoded><![CDATA[<p>I posted a small plugin over at WPMUDev for users, here it is again:</p>
<p>along with some code snippets on how to handle this:</p>
<p>http://premium.wpmudev.org/forums/topic/remove-wp-about-menu-from-toolbar#post-161711</p>
<p>There are a few options. First the manual edits:<br />
Open the file:<br />
/wp-includes/class-wp-admin-bar.php<br />
And around line 456:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>456
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">add_action<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'admin_bar_menu'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'wp_admin_bar_wp_menu'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">10</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Comment it out or just remove the whole line. Now the WP links part is all gone! <img src='http://auroral.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
But&#8230;.. But&#8230;&#8230;&#8230; If you wanted to edit those links to customise yourself, you could just go open up the file:<br />
/wp-includes/admin-bar.php<br />
You&#8217;ll see it all near the top, here is a short snippet:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> is_user_logged_in<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #666666; font-style: italic;">// Add &quot;About WordPress&quot; link	 $wp_admin_bar-&gt;add_menu( array('parent' =&gt; 'wp-logo', 'id' =&gt; 'about',	 'title'  =&gt; __('About WordPress'),	 'href'   =&gt; admin_url('about.php'),	 ) );</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>You will note much of the same on there.<br />
The logo is part of a sprite which can be found here:</p>
<p>/wp-includes/images/admin-bar-sprite.png</p>
<p>Both of these options mean updating the code every time you upgrade your WP install.<br />
And now the final option, which is the easiest, but its yet another plugin&#8230;&#8230;&#8230;</p>
<p><a href="http://auroral.co.uk/wp-content/uploads/2012/01/remove-wp-adminbar-links.php_.zip">Remove WordPress Admin Bar Links</a></p>
<p>Enjoy, its free!! <img src='http://auroral.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://auroral.co.uk/2012/01/12/wordpress-remove-wp-drop-down-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RIP Steve Jobs &#8211; Apple!</title>
		<link>http://auroral.co.uk/2011/10/06/rip-steve-jobs/</link>
		<comments>http://auroral.co.uk/2011/10/06/rip-steve-jobs/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 00:26:40 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[The World]]></category>

		<guid isPermaLink="false">http://auroral.co.uk/?p=384</guid>
		<description><![CDATA[I was just popping over to the Apple website to checkout details on the new iPhone 5, like a little child eagerly waiting for his new gadget (which I&#8217;ll be getting shortly) I&#8217;ve been reading all the information. On this occasion though I was very sad to see that Steve Jobs has sadly passed away. [...]]]></description>
			<content:encoded><![CDATA[<p>I was just popping over to the Apple website to checkout details on the new iPhone 5, like a little child eagerly waiting for his new gadget (which I&#8217;ll be getting shortly) I&#8217;ve been reading all the information. On this occasion though I was very sad to see that Steve Jobs has sadly passed away. :&#8217;-(</p>
<p>He was a true visionary, a real special person with a passion that filled his life. He will be missed by many. I feel for both his family and close friends, I hope they take comfort in the fact he is and always will be admired by millions.</p>
<p>RIP Steve Jobs, you will be missed.</p>
<div id="attachment_386" class="wp-caption aligncenter" style="width: 310px"><a href="http://auroral.co.uk/wp-content/uploads/2011/10/Screen-Shot-2011-10-06-at-01.23.24.png"><img class="size-medium wp-image-386" title="Steve Jobs 1955 - 2011 - From the Apple website" src="http://auroral.co.uk/wp-content/uploads/2011/10/Screen-Shot-2011-10-06-at-01.23.24-300x212.png" alt="Steve Jobs 1955 - 2011 - From the Apple website" width="300" height="212" /></a><p class="wp-caption-text">Steve Jobs 1955 - 2011 - From the Apple website</p></div>
<div id="attachment_385" class="wp-caption aligncenter" style="width: 310px"><a href="http://auroral.co.uk/wp-content/uploads/2011/10/Screen-Shot-2011-10-06-at-01.23.12.png"><img class="size-medium wp-image-385" title="Steve Jobs 1955 - 2011 - From the Apple website" src="http://auroral.co.uk/wp-content/uploads/2011/10/Screen-Shot-2011-10-06-at-01.23.12-300x114.png" alt="Steve Jobs 1955 - 2011 - From the Apple website" width="300" height="114" /></a><p class="wp-caption-text">Steve Jobs 1955 - 2011 - From the Apple website</p></div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://auroral.co.uk/2011/10/06/rip-steve-jobs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I Believe That First Bus Are Useless!</title>
		<link>http://auroral.co.uk/2011/10/02/i-believe-that-first-bus-are-useless/</link>
		<comments>http://auroral.co.uk/2011/10/02/i-believe-that-first-bus-are-useless/#comments</comments>
		<pubDate>Sun, 02 Oct 2011 20:20:26 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Rant & Rave]]></category>
		<category><![CDATA[Cancer]]></category>
		<category><![CDATA[First Bus]]></category>
		<category><![CDATA[First Bus Doncaster]]></category>
		<category><![CDATA[Frustration Of Contract]]></category>
		<category><![CDATA[Pete Mare]]></category>
		<category><![CDATA[TV Advert]]></category>

		<guid isPermaLink="false">http://auroral.co.uk/?p=381</guid>
		<description><![CDATA[First Bus and their real slogan:- Destroying Families since 2004.
Just recently First Bus, a transport company in the UK have launched a new and annoying TV advert with the song based loosely on &#8220;The Children Are Our Future&#8221;.  So not only do they aim to torture their staff and family but now they want [...]]]></description>
			<content:encoded><![CDATA[<p>First Bus and their real slogan:- Destroying Families since 2004.</p>
<p>Just recently First Bus, a transport company in the UK have launched a new and annoying TV advert with the song based loosely on &#8220;The Children Are Our Future&#8221;.  So not only do they aim to torture their staff and family but now they want to take a perfectly good song and ruin it whilst aligning it with their crap brand and poor business conduct.</p>
<p>So if you don&#8217;t know me to well you may well be wondering what my beef is here&#8230;.</p>
<p>In 2004 my father was alive but living with terminal lung cancer and I was a driver with First Bus, a company which at first I thought was respectable, how wrong I was!</p>
<p>One night I had an instance on the busses just outside our main office, a group of youths were trying to get aboard to attack a passenger. I called for police backup whilst the office management stood outside their door doing nothing to protect their staff. I was left to fend off these attackers with my passenger. One of the thugs shouted at me whilst on the phone to the police &#8220;End the call before I end your life&#8221;.</p>
<p>Needless to say, this mixed into the equation with my father being terminally took its toll on me and so I requested for leave from work. I asked for it to be unpaid leave so I could spend valuable time with my father.</p>
<p>First Bus at Doncaster, specifically Pete Mare (however the prick spells his name) didn&#8217;t want to let me have time off work to spend with my father whilst he had his final days on Earth. I begged for unpaid leave or to give me a  job once my father passed away, my father begged with them also. But they were heartless and pushed to sack me, they called it &#8220;Frustration Of Contract&#8221;.</p>
<p>Once my father passed away, I applied for a job with them again. I was invited in for an interview and some tests. I passed all their initial tests and the interview was great, but then the Rotherham training manager called me into his office and stated that they would not offer my a job and that First Bus Doncaster stated &#8220;Due to his past conduct, First as a company are not to employ him again&#8221;. </p>
<p>What past conduct, being harassed and threatened on a bus, offered no driver support, given no compasionate leave. Bullied into leaving the company.</p>
<p>I wasn&#8217;t the only one suffering at the hands of First Bus Doncaster management &#8211; So their slogan &#8211; Destroying Families since 2004.</p>
<p>I would never have wished anyone dead, but if Pete Mare were to suffer like my father and our family have then I would most likely raise a smile at that and take solace in the fact that Karma is a bitch. Harsh I know, but that is life.</p>
]]></content:encoded>
			<wfw:commentRss>http://auroral.co.uk/2011/10/02/i-believe-that-first-bus-are-useless/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Support For WordPress Admin Bar!</title>
		<link>http://auroral.co.uk/2011/08/23/add-support-for-wordpress-admin-bar/</link>
		<comments>http://auroral.co.uk/2011/08/23/add-support-for-wordpress-admin-bar/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 00:05:22 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Admin Bar]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wp_footer]]></category>
		<category><![CDATA[wp_head]]></category>

		<guid isPermaLink="false">http://auroral.co.uk/?p=373</guid>
		<description><![CDATA[If you are reading this then no doubt you are currently updating an old theme or coding a new design for WordPress and you are wondering where that WP Admin bar has got to&#8230;..
Well if you don&#8217;t see the WordPress Admin Bar on the front end then it is likely your theme is missing two [...]]]></description>
			<content:encoded><![CDATA[<p>If you are reading this then no doubt you are currently updating an old theme or coding a new design for WordPress and you are wondering where that WP Admin bar has got to&#8230;..</p>
<p>Well if you don&#8217;t see the WordPress Admin Bar on the front end then it is likely your theme is missing two functions:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_head<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_footer<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>The CSS for the admin bar is loaded through the wp_head() function and the navigation is pulled through the wp_footer() function.</p>
<p>wp_footer() should be added just before your HTML closing body tag  and is used by plugins usually for such things as add Java.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_footer<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;/body&gt;
&lt;/html&gt;</pre></div></div>

<p>wp_header() should be called just before the closing your HTML head code  and is used for things like CSS, Meta data and so on. If you use script in your head and have java there, that may need to be written after the wp_header() function is called.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_head<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;/head&gt;</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://auroral.co.uk/2011/08/23/add-support-for-wordpress-admin-bar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sigh Of Relief, Faith In Our Legal System &#8211; Hastings Direct Suck!!</title>
		<link>http://auroral.co.uk/2011/05/13/sigh-of-relief-faith-in-our-legal-system-hastings-direct-suck/</link>
		<comments>http://auroral.co.uk/2011/05/13/sigh-of-relief-faith-in-our-legal-system-hastings-direct-suck/#comments</comments>
		<pubDate>Fri, 13 May 2011 20:47:27 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Rant & Rave]]></category>
		<category><![CDATA[The World]]></category>
		<category><![CDATA[Driving]]></category>
		<category><![CDATA[Financial Ombudsmen]]></category>
		<category><![CDATA[Hastings Direct]]></category>
		<category><![CDATA[Insurance]]></category>

		<guid isPermaLink="false">http://auroral.co.uk/?p=368</guid>
		<description><![CDATA[I have faith once again!!
Last August (2010) I purchased a vehicle from Wrexham, we could not pick the car up straight away however I made inquiries with my insurance company to ensure I could drive the vehicle home to which they informed me I could. A week later we returned from vacation, my brother John [...]]]></description>
			<content:encoded><![CDATA[<p>I have faith once again!!</p>
<p>Last August (2010) I purchased a vehicle from Wrexham, we could not pick the car up straight away however I made inquiries with my insurance company to ensure I could drive the vehicle home to which they informed me I could. A week later we returned from vacation, my brother John drove us over to pick it up and within 20 minutes of picking the car up I was stopped&#8230;.. No insurance.</p>
<p>I posted a chronological list of events in an earlier blog should you be interested in reading it: <a href="http://auroral.co.uk/2010/12/16/reliable-car-insurance-avoid-hastings-direct-life-wreckers/">http://auroral.co.uk/2010/12/16/reliable-car-insurance-avoid-hastings-direct-life-wreckers/</a></p>
<p>Today was my third court hearing at the magistrates court in Northwich, Cheshire, some 2 hours away from my home. This time it was a special hearings case where they look at the information to hand, all my correspondence with Hastings Direct. All my interaction with the Financial Ombudsmen. I will be honest, I&#8217;m not a bad boy and this was a rather scary prospect in that I could loose money, get points, pay more for insurance and most importantly lose my clean driving license of over 10 years and all because I was misadvised by some idiot with a headset working in a call centre!</p>
<p>I got there, not sure what to expect. I was called in. They verified some details with me, received my new correspondence with the Financial Ombudsmen. The worships left the room to read all my correspondence and defence. Whilst out, the Clerk and prosecutor both said I should be fine and that after reading my case I should be out in 10 minutes or so.</p>
<p>The worships come in and even though the Clerk and prosecutor said I would be fine, I still found it nervy! They passed their verdict of &#8220;Not Guilty&#8221; stated I would have this whipped from my record, no points and no fine!</p>
<p>You can&#8217;t believe what a weight this is from my mind, I know it seems so trivial really in comparison to what is happening around the world but when you try to be all you can be and it seems you are being knocked down by a system which should serve and protect us, well its a little distressing.</p>
<p>I have to say that before my attendance today I really wasn&#8217;t sure which way this was going to unfold. I now have faith in our system once again! <img src='http://auroral.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Now&#8230;&#8230;&#8230; Last week I received a letter from the Financial Ombudsmen with an offer from Hastings Direct of a measly £100 compensation&#8230;. I don&#8217;t think I will be accepting now&#8230;&#8230; Life Wreckers they are!!</p>
]]></content:encoded>
			<wfw:commentRss>http://auroral.co.uk/2011/05/13/sigh-of-relief-faith-in-our-legal-system-hastings-direct-suck/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Derren Brown &#8211; Faith Healing and the Psychic backlash!</title>
		<link>http://auroral.co.uk/2011/05/07/derren-brown-faith-healing-and-the-psychic-backlash/</link>
		<comments>http://auroral.co.uk/2011/05/07/derren-brown-faith-healing-and-the-psychic-backlash/#comments</comments>
		<pubDate>Sat, 07 May 2011 09:01:32 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Articles I wrote for SJB]]></category>
		<category><![CDATA[Paranormal]]></category>
		<category><![CDATA[Angie And Rich]]></category>
		<category><![CDATA[Angie Kruger]]></category>
		<category><![CDATA[Clairvoyant]]></category>
		<category><![CDATA[Derren Brown]]></category>
		<category><![CDATA[Faith Healers]]></category>
		<category><![CDATA[Leaving Bethel]]></category>
		<category><![CDATA[Miracles for Sale]]></category>
		<category><![CDATA[Psychic]]></category>
		<category><![CDATA[Psychics]]></category>
		<category><![CDATA[Woody Woods]]></category>

		<guid isPermaLink="false">http://auroral.co.uk/?p=364</guid>
		<description><![CDATA[So Why Were Some Of The Psychics In Uproar, they were not the target of this show?]]></description>
			<content:encoded><![CDATA[<p>Derren Brown appears to have touched some raw nerves in his latest production titled &#8220;<em><strong>Miracles for Sale</strong>&#8220;</em> where he bravely tackles a tough and very lucrative world of blind belief in faith healing where desperate people are willing to pay any price tag to be healed or have a loved one healed. Derren pointed out some very valid and heart breaking points in that individuals have given up their medication when they believe, parents have stopped their children from receiving vital treatment because they believed and in the end a love one is lost because as humans they chose to put our faith in some Pastor, some divine entity whom will save our lives.</p>
<p>Losing a loved one is heart breaking, but then to add insult to injury when those suffering question the Pastor as to why the healing didn&#8217;t work despite paying thousands of pounds or dollars and believing 100% they are told it must be their fault or the suffering persons fault for not believing enough or for having sinned. If you lost a child to faith healing where medical science could have helped and possibly saved lives, how would you react?</p>
<p>Throughout the internet I&#8217;ve come across comments calling the believers idiots, I have even seen some stating they deserve the consequences.  I personally find such comments disgusting we have to keep in mind that to some people in desperate times will take desperate and drastic measures, we might not always agree, we might even think the notion of placing our faith in some money hungry con artists is ridiculous but the simple fact is that we are not all the same and when all else seems to be failing, faith can be blinding. We should not blame the believers, we should blame the brain washers</p>
<p>In this production Derren took a scuba diver and trained him up within 6 months to be able to convince the world he was a faith healer, they jetted off to Texas in America where they attempted convince believers and other Pastors that he was the real deal. During the production they exposed con artists and what can only be named as legalised theft.</p>
<h3><strong>So Why Were Some Of The Psychics In Uproar, they were not the target of this show?</strong></h3>
<p>Did they feel threatened? Did they notice some of the confidence tricks are similar to that use within their own industry? How different is Faith Healing to Spiritual Faith Healing, are they not one in the same?</p>
<p>What some of the Psychics said (quotes may contain spelling mistakes), Angie Kruger was amongst the most vocal in their dislike of Derrens show:</p>
<blockquote><p>Sigh &#8211; didn&#8217;t think much of the Derren Brown Fiasco.</p>
<p>He &amp; his team spent more time deceiving innocent people than the *Douches* they were targeting.</p>
<p>Derren needs to move on give his ego a rest the show waz pittiful</p>
<p>Sad, bitter, twisted little man who&#8217;s ashamed of his own sexuality.</p>
<p>Its the believers faults there idiots.</p>
<p>He delights in ridiculing medium and psychic ability.</p>
<p>I cant watch him after seeing him produce a coin for a lady with inscription relating to a deceased loved one . He really overstepped the mark on that one Poor,poor lady . If she believed his trickery &#8230; it may have been enough for her never to consider a true communication via a true and compassionate medium . Shameful&#8230; just unbelieveable.</p>
<p>Derrens a little man trying to belitle people to make him look big.</p>
<p>He always comes across as extremely pompous and condescending because he thinks he &#8216;knows it all&#8217; &#8211; which he clearly doesn&#8217;t.</p>
<p>To me it was yet again, another chance for Derren to wank his ego.</p></blockquote>
<p>Most of the quotes above did in fact emanate from one medium and her followers in particular but that same feeling does come from a good few in the spiritual community. As a result, one of the consultants for Derren&#8217;s show and co-owner of Leaving Bethel, Woody Woods has come forward in voicing his defence to some of the statements above.</p>
<blockquote><p>&#8220;We at Leaving Bethel are very driven to investigate and expose all who attempt to use &#8220;spirituality&#8221; to mislead and take money from others. The response made by these &#8220;psychics&#8221; only lead us to believe that they felt threatened by the show as maybe they too have something to hide as this programme was exposing the techniques used by the faith healing movement, a movement that is totally opposed to psychics. We would like to inform Angie and her fellow &#8220;psychics&#8221; that they have now been added to our list of belief systems to investingate and if relevant, expose in the future. We also want to acknowledge that real psychics do exist, people who do have the ability too see and hear beyond the veil. You know who you are and you have nothing to fear from us, but for those who are using false psychic, medium, clairevoyant abilites to make a fast buck&#8230;be afraid, be very afraid.</p></blockquote>
<p>Is this war on all charlatans?</p>
<p>Leaving Bethel went on to state they were in the process of assigning specialist researchers who would look into cases of fakery where the aim is to deceive and defraud others. Later in the week though I believe conversations opened up through the power of Facebook between Leaving Bethel and Angie where Woody stated his article was not a direct attack on Angie Kruger despite it naming her personally.</p>
<p>I have it on good authority that Woody Woods will also be a guest speaker on this weeks show of Haunted Cornwall where co-host and psychic Angie Kruger will also be present, this could make for an explosive debate. I was also informed that Derren Brown is not yet aware of this movement by Leaving Bethel, I&#8217;m sure these things won&#8217;t take long to get back through the grape vine.</p>
<p>If you wish to know more about Angie Kruger and her work, you can check out her website <a title="Angie Kruger And Her Spirit Guide Richard" href="http://www.angandrich.co.uk/">http://www.angandrich.co.uk/</a></p>
<p>To read the full article from Leaving Bethel <a title="Psychics kick out at Derren Browns Miracles For Sale" href="http://leavingbethel.webs.com/apps/blog/show/6915377-psychics-kick-out-at-derren-brown-s-miracles-for-sale">http://leavingbethel.webs.com/apps/blog/show/6915377-psychics-kick-out-at-derren-brown-s-miracles-for-sale</a></p>
<p>Haunted Cornwall airs 8pm &#8211; 10pm BST (For our international readers &#8211; The British Summer Time period begins on the last Sunday of March and ends on the last Sunday of October. The rest of the years is GMT)</p>
<p>Promotional video by Leaving Bethel:</p>
<p style="text-align: center;"><object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/Rnw81rVGMxU?fs=1&amp;hl=en_US" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="425" height="349" src="http://www.youtube.com/v/Rnw81rVGMxU?fs=1&amp;hl=en_US" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
<p>This article was written for S<a href="http://supernaturalworld.net">upernatural World</a></p>
]]></content:encoded>
			<wfw:commentRss>http://auroral.co.uk/2011/05/07/derren-brown-faith-healing-and-the-psychic-backlash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove The WordPress Default Admin Bar</title>
		<link>http://auroral.co.uk/2011/04/04/remove-the-wordpress-default-admin-bar/</link>
		<comments>http://auroral.co.uk/2011/04/04/remove-the-wordpress-default-admin-bar/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 16:54:19 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Admin Bar]]></category>
		<category><![CDATA[Default]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://auroral.co.uk/?p=361</guid>
		<description><![CDATA[Simple plugin to remove the default admin bar for WordPress. There are probably other similar plugins out there, but someone was asking so here it is.
Remove Default WordPress Bar
Unzip and upload the file &#8220;remove-wpbar.php&#8221; to your &#8220;mu-plugins&#8221; folder to have it activated for all websites. Or upload the file to your normal plugins folder and [...]]]></description>
			<content:encoded><![CDATA[<p>Simple plugin to remove the default admin bar for WordPress. There are probably other similar plugins out there, but someone was asking so here it is.</p>
<p><a href='http://auroral.co.uk/wp-content/uploads/2011/04/remove-wpbar.zip'>Remove Default WordPress Bar</a></p>
<p>Unzip and upload the file &#8220;remove-wpbar.php&#8221; to your &#8220;mu-plugins&#8221; folder to have it activated for all websites. Or upload the file to your normal plugins folder and &#8220;Network Activate. <img src='http://auroral.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://auroral.co.uk/2011/04/04/remove-the-wordpress-default-admin-bar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing Your WordPress Multisite Admin Username &#8211; Network Admin</title>
		<link>http://auroral.co.uk/2011/03/29/changing-your-wordpress-multisite-admin-username-network-admin/</link>
		<comments>http://auroral.co.uk/2011/03/29/changing-your-wordpress-multisite-admin-username-network-admin/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 00:10:10 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[3.1]]></category>
		<category><![CDATA[Admin]]></category>
		<category><![CDATA[BuddyPress]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Menu]]></category>
		<category><![CDATA[Multisite]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Network Admin]]></category>
		<category><![CDATA[PHPMyAdmin]]></category>
		<category><![CDATA[Username]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://auroral.co.uk/?p=352</guid>
		<description><![CDATA[No doubt you found and followed some tutorials to change your admin user name, you most likely found some old MU tutorial and then found that your new WordPress 3.1 Network Admin menu/area just disappeared.
 Well this quick set of pointers should help you out!  
Log into your PHPMyAdmin or what ever you are [...]]]></description>
			<content:encoded><![CDATA[<p>No doubt you found and followed some tutorials to change your admin user name, you most likely found some old MU tutorial and then found that your new WordPress 3.1 Network Admin menu/area just disappeared.</p>
<p> Well this quick set of pointers should help you out! <img src='http://auroral.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Log into your PHPMyAdmin or what ever you are using to edit your database.</p>
<p>1. Find the table &#8220;_users&#8221;.<br />
2. Edit the row where the &#8220;user_login&#8221; column is equal to &#8220;admin&#8221;. Change the admin part to what ever is your desired user name.<br />
3. Also edit the row where &#8220;user_nicename&#8221; column is equal to &#8220;admin&#8221; (same as above) Change this to your desired &#8220;nice&#8221; name (no spaces or such) &#8211; This is also used within BuddyPress for the profile link and @admin.<br />
4. BuddyPress users will want to change their profile where it echoes out &#8220;admin&#8221;, this is located in the table &#8220;_bp_xprofile_data&#8221;.</p>
<p>Now you will most doubt have done all that but now can&#8217;t find the &#8220;Network Admin&#8221; link and section, well you need to edit one more thing:</p>
<p>5. Open the table &#8220;_sitemeta&#8221; There is a row &#8220;site_admins&#8221; with data under the column &#8220;meta-data&#8221;, it will look like this:</p>
<p><code>a:1:{i:0;s:5:"admin";}</code></p>
<p>You will want to change this including the number 5 which is the character count of your username, so in my instance it will look like this:</p>
<p><code>a:1:{i:0;s:3:"tim";}</code></p>
<p>Save and test it out, that should fix the issue for you.</p>
<p><strong>Please note:</strong> There could well be other instances in the database on a multisite install, I haven&#8217;t thoroughly checked. I only worked through this to help another user find a solution, this worked for me and then worked for them. Always make a backup of your database first! <img src='http://auroral.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Hopefully this should help someone out there! <img src='http://auroral.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://auroral.co.uk/2011/03/29/changing-your-wordpress-multisite-admin-username-network-admin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>noreply@ wordpress@ Ripping Your Hair Out And Want To Change These?</title>
		<link>http://auroral.co.uk/2011/03/24/noreply-wordpress-ripping-your-hair-out-and-want-to-change-these/</link>
		<comments>http://auroral.co.uk/2011/03/24/noreply-wordpress-ripping-your-hair-out-and-want-to-change-these/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 02:22:06 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[BuddyPress]]></category>
		<category><![CDATA[Contact 7]]></category>
		<category><![CDATA[Contact Form 7]]></category>
		<category><![CDATA[Form]]></category>
		<category><![CDATA[MU]]></category>
		<category><![CDATA[NoReply@]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WPMU]]></category>
		<category><![CDATA[WPMUDEV]]></category>

		<guid isPermaLink="false">http://auroral.co.uk/?p=333</guid>
		<description><![CDATA[You might find these when using BuddPress, Contact Form 7, WPMUDEV Supporter Form and no doubt it annoys you!  
First of all if you are runing a vanilla install of WordPress you will have no doubt noticed that when system e-mails are sent out that the address is usually wordpress@yourdomain.com and of course you could most [...]]]></description>
			<content:encoded><![CDATA[<p>You might find these when using BuddPress, Contact Form 7, <a href="http://premium.wpmudev.org/?ref=Tim-2407">WPMUDEV Supporter</a> Form and no doubt it annoys you! <img src='http://auroral.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>First of all if you are runing a vanilla install of WordPress you will have no doubt noticed that when system e-mails are sent out that the address is usually wordpress@yourdomain.com and of course you could most likely find a plugin to combat this but is a another plugin bloating your install really what you need?</p>
<p>So, where can you change this in the core code?</p>
<p>/wp-include/pluggable.php</p>
<p>Around line 391:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>391
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$from_email</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'wordpress@'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$sitename</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Around line 1057:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1057
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$wp_email</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'wordpress@'</span> <span style="color: #339933;">.</span> <span style="color: #990000;">preg_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'#^www\.#'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> <span style="color: #990000;">strtolower</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'SERVER_NAME'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>So that is the default out of the way!</p>
<p>Now you are running BuddyPress and you notice that your &#8220;Contact Form 7&#8243; or Supporter form is sending out e-mails with a sent address from noreply@yourdomain.com, of course this is damn annoying, it makes it more time consuming when you make replies, often you send an e-mail to yours noreply address and then get angry clients asking why you haven&#8217;t contacted them back, or if you use a support desk so you can&#8217;t just reply to that ticket. Its most annoying when all you need to do is reply yes or no and especially so when using the supporter form for your clients.</p>
<p>So the problem! It is actually buddypress causing the issue here. At least in 1.2.8 (Not checked other versions) You see it ads filters to the default WP_Mail function forcing its own headers. What you need to do is remove those filters and everything will be back working as it should.</p>
<p>Contact Form 7, Add the following:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">remove_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'wp_mail_from'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'bp_core_email_from_address_filter'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
remove_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'wp_mail_from_name'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'bp_core_email_from_name_filter'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>In the compose_and_send_mail() function around line 693:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>693
694
695
696
697
698
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">	<span style="color: #000000; font-weight: bold;">function</span> compose_and_send_mail<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$mail_template</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
		remove_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'wp_mail_from'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'bp_core_email_from_address_filter'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		remove_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'wp_mail_from_name'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'bp_core_email_from_name_filter'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #000088;">$regex</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'/\[\s*([a-zA-Z_][0-9a-zA-Z:._-]*)\s*\]/'</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Now it will use what ever you stipulate in the admin area of Contact 7 which is usually the e-mail address for the person contacting you!</p>
<p>And the <a href="http://premium.wpmudev.org/?ref=Tim-2407">WPMUDEV Supporter plugin</a>, open the following:</p>
<p>/wp-content/mu-plugins/supporter-premium-support.php</p>
<p>Add it to the supporter_support_page() function which is approx. line 94 it should then look like this:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>94
95
96
97
98
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> supporter_support_page<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$current_user</span><span style="color: #339933;">;</span>
&nbsp;
	remove_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'wp_mail_from'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'bp_core_email_from_address_filter'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	remove_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'wp_mail_from_name'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'bp_core_email_from_name_filter'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>You could if you wished wrap it up in some conditional statements to check for BuddPress first, but for me it is always installed, at least for now! <img src='http://auroral.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>If you are not using BuddyPress or you still have this issue after removing the filters then chances are there is another plugin or even theme which is forcing its use of the wp_mail() function.</p>
<p><strong>Note:</strong> One thing to remember is that making changes directly to the main files of WP, a plugin or theme means that when you come to upgrade you will need to remember to make those changes again! I prefer this over bloating an install with plugin after plugin. <img src='http://auroral.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://auroral.co.uk/2011/03/24/noreply-wordpress-ripping-your-hair-out-and-want-to-change-these/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

