<?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 &#187; Computers</title>
	<atom:link href="http://auroral.co.uk/category/computers/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.1</generator>
		<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>

<!-- Start WP Socializer - Social Buttons - Output -->
<div class="wp-socializer 32px">
<ul class="wp-socializer-opacity columns-no">
 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="mailto:support@hauntedengland.co.uk?subject=WordPress Remove WP Drop Down Links&amp;body=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 th - http://auroral.co.uk/2012/01/12/wordpress-remove-wp-drop-down-links/" title="Email this" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Email" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -297px; border:0;"/></a><span class="wp-socializer-label"><a href="mailto:support@hauntedengland.co.uk?subject=WordPress Remove WP Drop Down Links&amp;body=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 th - http://auroral.co.uk/2012/01/12/wordpress-remove-wp-drop-down-links/" title="Email this" target="_blank">Email</a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 
</ul> 
<div class="wp-socializer-clearer"></div></div>
<!-- End WP Socializer - Social Buttons - Output -->
]]></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>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>

<!-- Start WP Socializer - Social Buttons - Output -->
<div class="wp-socializer 32px">
<ul class="wp-socializer-opacity columns-no">
 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="mailto:support@hauntedengland.co.uk?subject=Changing Your WordPress Multisite Admin Username &#8211; Network Admin&amp;body=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  - http://auroral.co.uk/2011/03/29/changing-your-wordpress-multisite-admin-username-network-admin/" title="Email this" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Email" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -297px; border:0;"/></a><span class="wp-socializer-label"><a href="mailto:support@hauntedengland.co.uk?subject=Changing Your WordPress Multisite Admin Username &#8211; Network Admin&amp;body=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  - http://auroral.co.uk/2011/03/29/changing-your-wordpress-multisite-admin-username-network-admin/" title="Email this" target="_blank">Email</a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 
</ul> 
<div class="wp-socializer-clearer"></div></div>
<!-- End WP Socializer - Social Buttons - Output -->
]]></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>

<!-- Start WP Socializer - Social Buttons - Output -->
<div class="wp-socializer 32px">
<ul class="wp-socializer-opacity columns-no">
 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="mailto:support@hauntedengland.co.uk?subject=noreply@ wordpress@ Ripping Your Hair Out And Want To Change These?&amp;body=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 - http://auroral.co.uk/2011/03/24/noreply-wordpress-ripping-your-hair-out-and-want-to-change-these/" title="Email this" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Email" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -297px; border:0;"/></a><span class="wp-socializer-label"><a href="mailto:support@hauntedengland.co.uk?subject=noreply@ wordpress@ Ripping Your Hair Out And Want To Change These?&amp;body=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 - http://auroral.co.uk/2011/03/24/noreply-wordpress-ripping-your-hair-out-and-want-to-change-these/" title="Email this" target="_blank">Email</a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 
</ul> 
<div class="wp-socializer-clearer"></div></div>
<!-- End WP Socializer - Social Buttons - Output -->
]]></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>
		<item>
		<title>Dude where&#8217;s my laptop?! Ohh the Police stole it!! &#8211; Complaint to IPCC</title>
		<link>http://auroral.co.uk/2010/08/19/dude-wheres-my-laptop-ohh-the-police-stole-it-complaint-to-ipcc/</link>
		<comments>http://auroral.co.uk/2010/08/19/dude-wheres-my-laptop-ohh-the-police-stole-it-complaint-to-ipcc/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 17:41:40 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Rant & Rave]]></category>
		<category><![CDATA[IPCC]]></category>
		<category><![CDATA[police]]></category>

		<guid isPermaLink="false">http://auroral.co.uk/?p=186</guid>
		<description><![CDATA[In this society we are suppose to be protected by the police and be made to feel safe, however sometimes this just isn&#8217;t the case as I&#8217;ve come to learn. Continuously I feel let down and perhaps even victimized by them, if I&#8217;m treated like a criminal should I start and act like one? This is the question that [...]]]></description>
			<content:encoded><![CDATA[<p>In this society we are suppose to be protected by the police and be made to feel safe, however sometimes this just isn&#8217;t the case as I&#8217;ve come to learn. Continuously I feel let down and perhaps even victimized by them, if I&#8217;m treated like a criminal should I start and act like one? This is the question that crosses my mind. Why try and be a good person and help others out when it simply boils down to the fact that we&#8217;re little people and to a jobs-worth they are happy to walk all over us.</p>
<p>In 2005 I reported some content I&#8217;d come across on the internet, it both disturbed and disgusted me so I reported it to the police. I was later visited by two police officers who confiscated my laptop and took me to the police station to interview me under caution.</p>
<p>Hold on here!!! I&#8217;m trying to help them rid this world of smutty illegal and sickening content and I&#8217;m being criminalized for it!!! I really just couldn&#8217;t believe what was happening, I was trying to do the right thing and as a result I get cautioned and I lose my laptop.</p>
<p>I was told they would check my laptop out and then once cleared I would get it back, well its now 2010, 5 years later and still no laptop. The laptop is currently worth nothing as its so old and as such I&#8217;ve lost money as it was worth about £1,500 back then I believe.</p>
<p>I complained in around 2007 or 2008 and was told that someone would get back to me but it might take some time.</p>
<p>In between these times I simply forgot about it and carried on with life whilst my laptop continued to depreciate in value.</p>
<p>so now, 5 years later and still nothing. How is this acceptable by any standard?</p>
<p>Isn&#8217;t theft depriving someone of their rightful property?</p>
<p>This is the first of two complaints this week to the IPCC.</p>
<p>Is this a lesson to all, don&#8217;t trust the police? They say report things in confidence, I no longer have any confidence in their abilities.</p>

<!-- Start WP Socializer - Social Buttons - Output -->
<div class="wp-socializer 32px">
<ul class="wp-socializer-opacity columns-no">
 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="mailto:support@hauntedengland.co.uk?subject=Dude where&#8217;s my laptop?! Ohh the Police stole it!! &#8211; Complaint to IPCC&amp;body=In this society we are suppose to be protected by the police and be made to feel safe, however sometimes this just isn't the case as I've come to learn. Continuously I feel let down and perhaps even victimized by them, if I'm treated like a crimi - http://auroral.co.uk/2010/08/19/dude-wheres-my-laptop-ohh-the-police-stole-it-complaint-to-ipcc/" title="Email this" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Email" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -297px; border:0;"/></a><span class="wp-socializer-label"><a href="mailto:support@hauntedengland.co.uk?subject=Dude where&#8217;s my laptop?! Ohh the Police stole it!! &#8211; Complaint to IPCC&amp;body=In this society we are suppose to be protected by the police and be made to feel safe, however sometimes this just isn't the case as I've come to learn. Continuously I feel let down and perhaps even victimized by them, if I'm treated like a crimi - http://auroral.co.uk/2010/08/19/dude-wheres-my-laptop-ohh-the-police-stole-it-complaint-to-ipcc/" title="Email this" target="_blank">Email</a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 
</ul> 
<div class="wp-socializer-clearer"></div></div>
<!-- End WP Socializer - Social Buttons - Output -->
]]></content:encoded>
			<wfw:commentRss>http://auroral.co.uk/2010/08/19/dude-wheres-my-laptop-ohh-the-police-stole-it-complaint-to-ipcc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joy!!! &#8211; Google phases out support for IE6</title>
		<link>http://auroral.co.uk/2010/01/30/joy-google-phases-out-support-for-ie6/</link>
		<comments>http://auroral.co.uk/2010/01/30/joy-google-phases-out-support-for-ie6/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 15:24:23 +0000</pubDate>
		<dc:creator>helen</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[IE6]]></category>
		<category><![CDATA[Internet Explorer]]></category>

		<guid isPermaLink="false">http://auroral.co.uk/2010/01/30/joy-google-phases-out-support-for-ie6/</guid>
		<description><![CDATA[According to the BBC website, Google have started to phase out support for Microslow Internet Explorer 6 despite Microslow supporting it until 2014.
Here&#8217;s a snippet from the BBC:

Google has begun to phase out support for Internet Explorer 6, the browser identified as the weak link in a cyber attack on the search engine.
The firm said [...]]]></description>
			<content:encoded><![CDATA[<p>According to the BBC website, Google have started to phase out support for Microslow Internet Explorer 6 despite Microslow supporting it until 2014.</p>
<p>Here&#8217;s a snippet from the BBC:</p>
<blockquote>
<p class="first"><strong>Google has begun to phase out support for Internet Explorer 6, the browser identified as the weak link in a cyber attack on the search engine.</strong></p>
<p>The firm said from 1 March some of its services, such as Google Docs, would not work &#8220;properly&#8221; with the browser.</p>
<p>It recommended individuals and firms upgrade &#8220;as soon as possible&#8221;.</p>
<p>Google threatened to withdraw from the Chinese market following the &#8220;sophisticated and targeted&#8221; attacks, which it said originated in China.</p>
<p><!-- E SF -->Hackers used a flaw in Microsoft&#8217;s Internet Explorer (IE) browser to target the Gmail accounts of Chinese human rights activists.</p></blockquote>
<p>Full article can be found here: <a href="http://news.bbc.co.uk/1/hi/technology/8488751.stm" title="BBC Original Article - Google Phases Out Support For IE6">http://news.bbc.co.uk/1/hi/technology/8488751.stm</a></p>
<p>Now what about Windbloze Internet Explorer 7, because 8 is out now and I don&#8217;t believe it&#8217;s long until IE9 is out.</p>
<p>Some IE history for those interested: <a href="http://en.wikipedia.org/wiki/Internet_Explorer" title="Internet Explorer History On Wikipedia">http://en.wikipedia.org/wiki/Internet_Explorer</a></p>
<p>And for the designers:<a href="http://www.ie6nomore.com/" title="IE No More"> http://www.ie6nomore.com/ </a></p>

<!-- Start WP Socializer - Social Buttons - Output -->
<div class="wp-socializer 32px">
<ul class="wp-socializer-opacity columns-no">
 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="mailto:support@hauntedengland.co.uk?subject=Joy!!! &#8211; Google phases out support for IE6&amp;body=According to the BBC website, Google have started to phase out support for Microslow Internet Explorer 6 despite Microslow supporting it until 2014.

Here's a snippet from the BBC:

Google has begun to phase out support for Internet Explorer 6, t - http://auroral.co.uk/2010/01/30/joy-google-phases-out-support-for-ie6/" title="Email this" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Email" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -297px; border:0;"/></a><span class="wp-socializer-label"><a href="mailto:support@hauntedengland.co.uk?subject=Joy!!! &#8211; Google phases out support for IE6&amp;body=According to the BBC website, Google have started to phase out support for Microslow Internet Explorer 6 despite Microslow supporting it until 2014.

Here's a snippet from the BBC:

Google has begun to phase out support for Internet Explorer 6, t - http://auroral.co.uk/2010/01/30/joy-google-phases-out-support-for-ie6/" title="Email this" target="_blank">Email</a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 
</ul> 
<div class="wp-socializer-clearer"></div></div>
<!-- End WP Socializer - Social Buttons - Output -->
]]></content:encoded>
			<wfw:commentRss>http://auroral.co.uk/2010/01/30/joy-google-phases-out-support-for-ie6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing cPanel Catch All E-mail</title>
		<link>http://auroral.co.uk/2009/09/07/removing-cpanel-catch-all-e-mail/</link>
		<comments>http://auroral.co.uk/2009/09/07/removing-cpanel-catch-all-e-mail/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 16:21:46 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[E-mail]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[catch all]]></category>
		<category><![CDATA[cPanel]]></category>

		<guid isPermaLink="false">http://auroral.co.uk/2009/09/07/removing-cpanel-catch-all-e-mail/</guid>
		<description><![CDATA[So your using cPanel and you&#8217;ve got a ton of spam sitting in it using up valuable server resources, you&#8217;ve Googled the problem and found out how to disable the catch all address but still it&#8217;s showing that the mail exists and is wasting space.
For those looking to turn off the catch all address first, [...]]]></description>
			<content:encoded><![CDATA[<p>So your using cPanel and you&#8217;ve got a ton of spam sitting in it using up valuable server resources, you&#8217;ve Googled the problem and found out how to disable the catch all address but still it&#8217;s showing that the mail exists and is wasting space.</p>
<p>For those looking to turn off the catch all address first, this is how you do it in cPanel:</p>
<p>First log in, then click on the &#8216;Default Address&#8217; icon:</p>
<p><a href="http://auroral.co.uk/2009/09/07/removing-cpanel-catch-all-e-mail/cpanel-mail-options/" rel="attachment wp-att-131" title="cPanel mail options"><img src="http://auroral.co.uk/wp-content/uploads/2009/09/picture-1.png" alt="cPanel mail options" width="441" height="163" /></a></p>
<p>You will then be presented with a list of option, you need to change the radio from &#8216;Forward to email address&#8217; to &#8216;Discard with error to senter (at SMTP time)&#8217;:</p>
<p><a href="http://auroral.co.uk/2009/09/07/removing-cpanel-catch-all-e-mail/default-address-maintenance/" rel="attachment wp-att-132" title="Default Address Maintenance"><img src="http://auroral.co.uk/wp-content/uploads/2009/09/picture-3.png" alt="Default Address Maintenance" width="436" height="328" /></a></p>
<p>This will then reply to all e-mails sent to addresses which have not been set up (all catch all addresses *@domain.com), the message sent can be specificied on that page but if not it will simply send &#8216;No such person at this address&#8217;.</p>
<p>As you can see, you can also discard the message totally (no reply to sender) but keep in mind if someone sends a genuine email they will not be aware they mistyped your e-mail address and thus assume .  The other option is to pipe all e-mails, this is commonly used in scripts like help desks (PHP, Pearl).</p>
<p><strong>Disabling  catch all by default for new cPanel accounts in WHM:</strong></p>
<p>If you are running WHM on your server and want to have catch all disabled by default then it&#8217;s simply, log into WHM and go to &#8216;Tweak Settings&#8217;:</p>
<p><img src="http://auroral.co.uk/wp-content/uploads/2009/09/picture-4.png" alt="WHM Server Configuration" /></p>
<p>Then scroll down to &#8216;Mail&#8217; and change the setting from &#8216;Local&#8217; to &#8216;Fail&#8217;:</p>
<p><a href="http://auroral.co.uk/2009/09/07/removing-cpanel-catch-all-e-mail/whm-server-tweak-settings-mail/" rel="attachment wp-att-134" title="WHM Server - Tweak Settings - Mail"><img src="http://auroral.co.uk/wp-content/uploads/2009/09/picture-5.png" alt="WHM Server - Tweak Settings - Mail" width="462" height="70" /></a></p>
<p>Save the settings and then all new accounts will have catch all disabled.</p>
<p><strong>Removing existing emails. </strong></p>
<p>So now you won&#8217;t receive any more, you still need to get rid of the existing mail which could be taking up copious ammounts of space, for this you may require assistance from your web host depending on how they have everything set up because you will need to delete some files outside of your web root.</p>
<p>If it&#8217;s your server the path should be &#8216;/home/user/mail/&#8217; if it&#8217;s not and you just have a cPanel account then you should just see &#8216;/mail/&#8217;.</p>
<p><a href="http://auroral.co.uk/2009/09/07/removing-cpanel-catch-all-e-mail/ftp-look-at-cpanel-directory-structure/" rel="attachment wp-att-135" title="FTP look at cPanel directory structure"><img src="http://auroral.co.uk/wp-content/uploads/2009/09/picture-6.png" alt="FTP look at cPanel directory structure" width="494" height="119" /></a></p>
<p>Within the mail directory you will see three folders, cur, new and tmp:</p>
<p><a href="http://auroral.co.uk/2009/09/07/removing-cpanel-catch-all-e-mail/ftp-look-at-cpanel-directory-structure-of-mail-folder/" rel="attachment wp-att-136" title="FTP look at cPanel directory structure of mail folder"><img src="http://auroral.co.uk/wp-content/uploads/2009/09/picture-7.png" alt="FTP look at cPanel directory structure of mail folder" width="499" height="66" /></a></p>
<p>You need to delete the &#8216;cur&#8217; directory and then recreate it (basically, your deleting the contents of the folder), you then still have a cur folder with absolutely no contents.</p>
<p>That&#8217;s it, that&#8217;s everything!</p>
<p><strong>Note:</strong> In cPanel you might still see the usage for the catch all account still takes room, well that&#8217;s not strictly true, the server simply needs to update which it will do but be rest assured the space is not actually being taken up.</p>
<p><a href="http://auroral.co.uk/2009/09/07/removing-cpanel-catch-all-e-mail/cpanel-catch-all-usage/" rel="attachment wp-att-137" title="cPanel catch all usage"><img src="http://auroral.co.uk/wp-content/uploads/2009/09/picture-8.jpg" alt="cPanel catch all usage" width="505" height="131" /></a></p>
<p>As you can see in the image, there is a note stating that space usage is recalculated every few hours.</p>
<p>You can force an update, but I wouldn&#8217;t bother, just let cPanel do it, it&#8217;s safer. <img src='http://auroral.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>

<!-- Start WP Socializer - Social Buttons - Output -->
<div class="wp-socializer 32px">
<ul class="wp-socializer-opacity columns-no">
 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="mailto:support@hauntedengland.co.uk?subject=Removing cPanel Catch All E-mail&amp;body=So your using cPanel and you've got a ton of spam sitting in it using up valuable server resources, you've Googled the problem and found out how to disable the catch all address but still it's showing that the mail exists and is wasting space.

For - http://auroral.co.uk/2009/09/07/removing-cpanel-catch-all-e-mail/" title="Email this" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Email" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -297px; border:0;"/></a><span class="wp-socializer-label"><a href="mailto:support@hauntedengland.co.uk?subject=Removing cPanel Catch All E-mail&amp;body=So your using cPanel and you've got a ton of spam sitting in it using up valuable server resources, you've Googled the problem and found out how to disable the catch all address but still it's showing that the mail exists and is wasting space.

For - http://auroral.co.uk/2009/09/07/removing-cpanel-catch-all-e-mail/" title="Email this" target="_blank">Email</a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 
</ul> 
<div class="wp-socializer-clearer"></div></div>
<!-- End WP Socializer - Social Buttons - Output -->
]]></content:encoded>
			<wfw:commentRss>http://auroral.co.uk/2009/09/07/removing-cpanel-catch-all-e-mail/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Are Microsoft Taking over Apple?</title>
		<link>http://auroral.co.uk/2009/08/06/are-microsoft-taking-over-apple/</link>
		<comments>http://auroral.co.uk/2009/08/06/are-microsoft-taking-over-apple/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 19:26:15 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[E-commerce]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Rant & Rave]]></category>

		<guid isPermaLink="false">http://auroral.co.uk/2009/08/06/are-microsoft-taking-over-apple/</guid>
		<description><![CDATA[Anyone ever dealt with Microsoft over the phone?
I had to a few times when activating a windows version, well either their taking over Apple or they&#8217;ve been training Apple.
I&#8217;ve been looking at buying an Apple Macbook Pro for a while and they&#8217;ve just released a new model number however spec for spec it seems the [...]]]></description>
			<content:encoded><![CDATA[<p>Anyone ever dealt with Microsoft over the phone?</p>
<p>I had to a few times when activating a windows version, well either their taking over Apple or they&#8217;ve been training Apple.</p>
<p>I&#8217;ve been looking at buying an Apple Macbook Pro for a while and they&#8217;ve just released a new model number however spec for spec it seems the same, so I wanted to know from apple why I should buy a new one from them over a new but slightly older model number from Misco. There is a difference of between £300 and £400.</p>
<p>I wanted to know if the battery was better, or the hardware was optimised, or any other improvements, I tried re-wording the question a few time, but ended up banging my head agaist the wall through out this.</p>
<p id="resp-both">
<ul id="generalData">
<li id="chatAgntName">You are chatting with Donna G, an Apple Expert</li>
</ul>
<p id="theTranscriptDiv">
<ul id="theTranscript">
<li class="agnt">Hi, my name is Donna G. Welcome to Apple!</li>
<li class="agnt"><span>Donna G: </span>Hello</li>
<li class="agnt"><span>Donna G: </span>How may I help you today?</li>
<li class="cust"><span>You: </span>Whats the real difference between the old A1297 and the new MC226B/A?</li>
<li class="agnt"><span>Donna G: </span>I&#8217;m sorry what are those products please, sometimes the numbers that you have do not work with our system.</li>
<li class="cust"><span>You: </span>Apple Macbook pros</li>
<li class="cust"><span>You: </span>one is a slightly older model, but spec for spec they don&#8217;t seem so different</li>
<li class="agnt"><span>Donna G: </span>Are you purchasing a MacBook Pro today?</li>
<li class="cust"><span>You: </span>just wonder why spending more on the new model should be warrented</li>
<li class="cust"><span>You: </span>and yes I will be purchasing from some where</li>
<li class="agnt"><span>Donna G: </span>You can customize your new Mac including upgrading the memory and the hard drive.</li>
<li class="agnt"><span>Donna G: </span>Let me check the refurbished MacBook Pro for you.</li>
<li class="cust"><span>You: </span>Right, I know this.</li>
<li class="cust"><span>You: </span>but some companies still have the lasty model before the new release a couple of months ago</li>
<li class="agnt"><span>Donna G: </span>One moment please</li>
<li class="cust"><span>You: </span>they are both new</li>
<li class="agnt"><span>Donna G: </span>Apple Certified Refurbished products are pre-owned Apple products that undergo a stringent refurbishment process prior to being offered for sale.</li>
<li class="agnt"><span>Donna G: </span>They&#8217;re covered by Apple&#8217;s standard one-year limited warranty.  You can even purchase AppleCare to extend your coverage.</li>
<li class="agnt"><span>Donna G: </span>They perform and look like new Apple products and include all manuals and accessories.</li>
<li class="agnt"><span>Donna G: </span>Because the refurbished items are boxed and ready to ship, we are unable to customise them.</li>
<li class="agnt"><span>Donna G: </span>So, if you find a current generation MacBook Pro in our refurbished section, it will be at a better price and I would recommend if you want to purchase it, do not delay because they do tend to disappear very quickly.</li>
<li class="agnt"><span>Donna G: </span>I can stay online with you while you complete your order in case you have any other questions about products or the order process.</li>
<li class="agnt"><span>Donna G: </span>I haven&#8217;t heard from you for a few moments.  Would you like to continue chatting?</li>
<li class="cust"><span>You: </span>Right&#8230;&#8230;&#8230; That wasn&#8217;t my question. I&#8217;ve seen a new Apple Macbook pro from Misco. It&#8217;s new but is the old model. I&#8217;m also looking at the new model released only the other month, again new. the specs are pretty much the same. Is there an advantage to spending more one the new model?</li>
<li class="agnt"><span>Donna G: </span>Only here in the Apple Online Store do you get guaranteed on our refurbished items.</li>
<li class="agnt"><span>Donna G: </span>You receive the same hardware coverage you do with our new items.</li>
<li class="agnt"><span>Donna G: </span>And you can purchase the AppleCare Protection Plan for the refurbished items.</li>
<li class="agnt"><span>Donna G: </span>We cannot speak for other websites, only for our own.</li>
<li class="agnt"><span>Donna G: </span>May I help with any other product or order questions before you proceed?</li>
<li class="cust"><span>You: </span>Are you reading what I&#8217;m asking or giving me an answer to what you think I should be asking. it&#8217;s a simple question: Spec for Spec your new model is pretty much the same as the one it replaced just a few months ago. Are there any major differences apart from price?</li>
<li class="agnt"><span>Donna G: </span>I am sorry, I thought you stated the other site, was an older refurbished model, did I misunderstand that?</li>
<li class="cust"><span>You: </span>yes</li>
<li class="cust"><span>You: </span>They are both brand new</li>
<li class="cust"><span>You: </span>as I stated</li>
<li class="agnt"><span>Donna G: </span>So the other site has a new MacBook Pro and you would like to know why you would purchase from us than them?</li>
<li class="agnt"><span>Donna G: </span>That would be up to you.</li>
<li class="agnt"><span>Donna G: </span>May I help with any other product or order questions before you proceed?</li>
<li class="cust"><span>You: </span>they are both boxed and sealed</li>
<li class="cust"><span>You: </span>no</li>
<li class="agnt"><span>Donna G: </span>Then you can make your decision depending on the pricing.</li>
<li class="agnt"><span>Donna G: </span>We would be happy to assist you with your order from the Apple Online Store, and assist you with your perfect solution.</li>
<li class="agnt"><span>Donna G: </span>Or, you can order from the other site.</li>
<li class="cust"><span>You: </span>I&#8217;m asking is there a major difference between your old model and the one that replaced it</li>
<li class="agnt"><span>Donna G: </span>Either way if it is a new product, you can still purchase the AppleCare Protection Plan for it.</li>
<li class="agnt"><span>Donna G: </span>The new MacBook Pros come in 3 sizes 13&#8243;, 15&#8243;, 17&#8243;</li>
<li class="agnt"><span>Donna G: </span>They can all be upgraded to 8gb of memory.</li>
<li class="agnt"><span>Donna G: </span>They have dedicated NVIDIA Graphic Cards.</li>
<li class="agnt"><span>Donna G: </span>I cannot compare to your other site, because we do not have access to research the other site for you.</li>
<li class="agnt"><span>Donna G: </span>May I help with any other product or order questions before you proceed?</li>
<li class="cust"><span>You: </span>You make these computers right? so I&#8217;m simply asking how does your replacement models better the one before it, which it replaces?</li>
<li class="agnt"><span>Donna G: </span>We also have the purchase a printer with your new Mac and receive a rebate.</li>
<li class="agnt"><span>Donna G: </span>I&#8217;m sorry I believe I addressed that above.</li>
<li class="agnt"><span>Donna G: </span>The new models come in 3 sizes 13&#8243;, 15&#8243;. 17&#8243;</li>
<li class="agnt"><span>Donna G: </span>You can upgrade the memory to 8gb</li>
<li class="agnt"><span>Donna G: </span>And they come with the NVIDIA dedicated graphics card.</li>
<li class="agnt"><span>Donna G: </span>I apologise if that did not appear on your screen.</li>
<li class="agnt"><span>Donna G: </span>Would you like to purchase your Mac from the Apple Online Store today?</li>
<li class="cust"><span>You: </span>ok how, is the new 17&#8243; better than the old one 17&#8243;?</li>
<li class="agnt"><span>Donna G: </span>I&#8217;m sorry I do not have the specs to give you a side by side comparison in this Apple Shopping Chat.</li>
<li class="agnt"><span>Donna G: </span>Our purpose is to assist our Customers with their Apple Online Store purchases.</li>
<li class="agnt"><span>Donna G: </span>I&#8217;d be happy to give you the specs of the new MacBook Pro</li>
<li class="agnt"><span>Donna G: </span>Size and weight
<p style="margin-top: 0pt">Height:</p>
<p style="margin-top: 0pt">0.98 inch (2.50 cm)</p>
<p style="margin-top: 0pt">Width:</p>
<p style="margin-top: 0pt">15.47 inches (39.3 cm)</p>
<p style="margin-top: 0pt">Depth:</p>
<p style="margin-top: 0pt">10.51 inches (26.7 cm)</p>
<p style="margin-top: 0pt">Weight:</p>
<p style="margin-top: 0pt">6.6 pounds (2.99 kg)1</p>
</li>
<li class="agnt"><span>Donna G: </span>Connections and expansion
<p style="margin-top: 0pt">View larger</p>
<p style="margin-top: 0pt">MagSafe power port</p>
<p style="margin-top: 0pt">Gigabit Ethernet port</p>
<p style="margin-top: 0pt">One FireWire 800 port (up to 800 Mbps)</p>
<p style="margin-top: 0pt">Three USB 2.0 ports (up to 480 Mbps)</p>
<p style="margin-top: 0pt">Mini DisplayPort</p>
<p style="margin-top: 0pt">Audio line in</p>
<p style="margin-top: 0pt">Audio line out</p>
<p style="margin-top: 0pt">ExpressCard/34 slot</p>
<p style="margin-top: 0pt">Kensington lock slot</p>
</li>
<li class="cust"><span>You: </span>What I&#8217;m trying to find out is, is the battery better, is it more reliable, is it quicker spec for spec. This will help me decide wether to buy the new 17&#8243; from you or the slightly older yet still new from another company</li>
<li class="agnt"><span>Donna G: </span>Communications
<p style="margin-top: 0pt">Built-in AirPort Extreme Wi-Fi wireless networking2 (based on IEEE 802.11n draft specification); IEEE 802.11a/b/g compatible</p>
<p style="margin-top: 0pt">Built-in Bluetooth 2.1 + EDR (Enhanced Data Rate)</p>
<p style="margin-top: 0pt">Built-in 10/100/1000BASE-T Gigabit Ethernet (RJ-45 connector)</p>
</li>
<li class="agnt"><span>Donna G: </span>Audio
<p style="margin-top: 0pt">Built-in stereo speakers</p>
<p style="margin-top: 0pt">Built-in omnidirectional microphone (located under left speaker grille)</p>
<p style="margin-top: 0pt">Combined optical digital audio input/audio line in (minijack)</p>
<p style="margin-top: 0pt">Combined optical digital audio output/audio line out (minijack)</p>
</li>
<li class="agnt"><span>Donna G: </span>Input
<p style="margin-top: 0pt">View larger</p>
<p style="margin-top: 0pt">Built-in full-size backlit keyboard with 78 (U.S.) or 79 (ISO) keys, including 12 function keys and 4 arrow keys (inverted “T” arrangement)</p>
<p style="margin-top: 0pt">Multi-Touch trackpad for precise cursor control; supports two-finger scrolling, pinch, rotate, swipe, three-finger swipe, four-finger swipe, tap, double-tap, and drag capabilities</p>
</li>
<li class="agnt"><span>Donna G: </span>Pure digital video output
<p style="margin-top: 0pt">DVI output using Mini DisplayPort to DVI Adapter (optional)</p>
<p style="margin-top: 0pt">VGA output using Mini DisplayPort to VGA Adapter (optional)</p>
<p style="margin-top: 0pt">Dual-link DVI output using Mini DisplayPort to Dual-Link DVI Adapter supports 30-inch Apple Cinema HD Display (optional)</p>
</li>
<li class="agnt"><span>Donna G: </span>Graphics and video support
<p style="margin-top: 0pt">NVIDIA GeForce 9400M graphics processor with 256MB of DDR3 SDRAM shared with main memory3</p>
<p style="margin-top: 0pt">NVIDIA GeForce 9600M GT graphics processor with 512MB of GDDR3 memory</p>
<p style="margin-top: 0pt">Dual display and video mirroring: Simultaneously supports full native resolution on the built-in display and up to 2560 by 1600 pixels on an external display, both at millions of colors</p>
<p style="margin-top: 0pt">Built-in iSight camera</p>
<p style="margin-top: 0pt">Mini DisplayPort</p>
</li>
<li class="agnt"><span>Donna G: </span>Display
<p style="margin-top: 0pt">View larger</p>
<p style="margin-top: 0pt">17-inch (diagonal) high-resolution LED-backlit glossy widescreen display with support for millions of colors</p>
<p style="margin-top: 0pt">Supported resolutions: 1920 by 1200 (native), 1680 by 1050, 1280 by 800, 1152 by 720, 1024 by 640, and 800 by 500 pixels at 16:10 aspect ratio; 1280 by 1024 pixels at 5:4 aspect ratio; 1280 by 1024 pixels at 5:4 aspect ratio stretched; 1600 by 1200, 1024 by 768, 800 by 600, and 640 by 480 pixels at 4:3 aspect ratio; 1600 by 1200, 1024 by 768, 800 by 600, and 640 by 480 pixels at 4:3 aspect ratio stretched; 720 by 480 pixels at 3:2 aspect ratio; 720 by 480 pixels at 3:2 aspect ratio stretched</p>
</li>
<li class="agnt"><span>Donna G: </span>Processor and memory
<p style="margin-top: 0pt">2.8GHz or 3.06GHz Intel Core 2 Duo processor with 6MB on-chip shared L2 cache running 1:1 with processor speed</p>
<p style="margin-top: 0pt">1066MHz frontside bus</p>
<p style="margin-top: 0pt">4GB (two 2GB SO-DIMMs) of 1066MHz DDR3 memory; two SO-DIMM slots support up to 8GB</p>
</li>
<li class="agnt"><span>Donna G: </span>Storage
<p style="margin-top: 0pt">500GB 5400-rpm Serial ATA hard drive; optional 500GB 7200-rpm hard drive, or 128GB or 256GB solid-state drive4</p>
<p style="margin-top: 0pt">8x slot-loading SuperDrive (DVD±R DL/DVD±RW/CD-RW)</p>
<p style="margin-top: 0pt">Maximum write: 8x DVD-R, DVD+R; 4x DVD-R DL (double layer), DVD+R DL (double layer), DVD-RW, DVD+RW; 24x CD-R; 10x CD-RW</p>
<p style="margin-top: 0pt">Maximum read: 8x DVD-R, DVD+R, DVD-ROM; 6x DVD-ROM (double layer DVD-9), DVD-R DL (double layer), DVD+R DL (double layer), DVD-RW, DVD+RW; 24x CD</p>
</li>
<li class="agnt"><span>Donna G: </span>Battery and power: 8 hour charge
<p style="margin-top: 0pt">Built-in 95-watt-hour lithium-polymer battery</p>
<p style="margin-top: 0pt">85W MagSafe Power Adapter with cable management system</p>
<p style="margin-top: 0pt">MagSafe power port</p>
</li>
<li class="agnt"><span>Donna G: </span><a href="http://www.apple.com/macbookpro/specs-17inch.html#vr" target="_blank">Please click here to take your MacBook Pro 17&#8243; for a &#8220;spin&#8221;</a></li>
<li class="agnt"><span>Donna G: </span>The above are all of the stats on the new MacBook Pro 17&#8243;</li>
<li class="cust"><span>You: </span>What I&#8217;m trying to find out is, is the battery better, is it more reliable, is it quicker spec for spec. This will help me decide wether to buy the new version of Macbook pro 17&#8243; from you or the slightly older version yet still new from another company.</li>
<li class="agnt"><span>Donna G: </span>I&#8217;m sorry, I do not have access to the model of MacBook Pro that you are referring to, to give you a side by side listing.</li>
<li class="agnt"><span>Donna G: </span>It is the longest lasting MacBook battery.</li>
<li class="agnt"><span>Donna G: </span>The longest-lasting Mac notebook battery ever.</li>
<li class="agnt"><span>Donna G: </span>Precision aluminum. The new gold standard.</li>
<li class="agnt"><span>Donna G: </span>Graphics in full force.</li>
<li class="agnt"><span>Donna G: </span>Display:  It offers a 60 percent greater color gamut than previous generations for richer, more vibrant colors.</li>
<li class="agnt"><span>Donna G: </span>Even the keyboard is advanced.
<p style="margin-top: 0pt">The rigid aluminum keyboard webbing has been cut precisely to hold the keys. And the keys are curved to perfectly fit fingers. The result? Pure typing bliss. The keyboard is also illuminated, so when you’re in low-light settings, such as airplanes or conference rooms, you can always see what you’re typing.</p>
</li>
<li class="cust"><span>You: </span>Right, I&#8217;d have thought Apple would have been able to tell me how they improved their computer in the new model, I guess you people don&#8217;t know how you&#8217;ve improved your own hardware.</li>
<li class="agnt"><span>Donna G: </span>The first thing you might notice — or not notice — is the button. The entire trackpad is the button, so you can click anywhere.</li>
<li class="cust"><span>You: </span>Thanks any way</li>
<li class="agnt"><span>Donna G: </span>Burn DVDs superfast.</li>
<li class="cust"><span>You: </span>I&#8217;ll try and find some users to ask, perhaps they will know your hardware better.</li>
<li class="cust"><span>You: </span>bye&#8230;&#8230;..</li>
<li class="agnt"><span>Donna G: </span>I just gave you the updated features.</li>
<li class="agnt"><span>Donna G: </span>Did you not view them?</li>
<li class="agnt"><span>Donna G: </span>Perhaps you will be able to understand our Telesales Agents better.</li>
<li class="agnt"><span>Donna G: </span>One moment for that phone number&#8230;</li>
<li class="agnt"><span>Donna G: </span>The number for the Telesales department is 0800 048 0408.</li>
<li class="agnt"><span>Donna G: </span>Thank you for visiting the Apple Store.  We appreciate your business.  If you would like more help, please chat with us again.</li>
<li class="sys">Your chat session has ended, if you require further assistance, please wait a few moments and try chatting with us again.</li>
</ul>

<!-- Start WP Socializer - Social Buttons - Output -->
<div class="wp-socializer 32px">
<ul class="wp-socializer-opacity columns-no">
 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="mailto:support@hauntedengland.co.uk?subject=Are Microsoft Taking over Apple?&amp;body=Anyone ever dealt with Microsoft over the phone?

I had to a few times when activating a windows version, well either their taking over Apple or they've been training Apple.

I've been looking at buying an Apple Macbook Pro for a while and they'v - http://auroral.co.uk/2009/08/06/are-microsoft-taking-over-apple/" title="Email this" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Email" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -297px; border:0;"/></a><span class="wp-socializer-label"><a href="mailto:support@hauntedengland.co.uk?subject=Are Microsoft Taking over Apple?&amp;body=Anyone ever dealt with Microsoft over the phone?

I had to a few times when activating a windows version, well either their taking over Apple or they've been training Apple.

I've been looking at buying an Apple Macbook Pro for a while and they'v - http://auroral.co.uk/2009/08/06/are-microsoft-taking-over-apple/" title="Email this" target="_blank">Email</a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 
</ul> 
<div class="wp-socializer-clearer"></div></div>
<!-- End WP Socializer - Social Buttons - Output -->
]]></content:encoded>
			<wfw:commentRss>http://auroral.co.uk/2009/08/06/are-microsoft-taking-over-apple/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Of The Most Used Applications And Then Some</title>
		<link>http://auroral.co.uk/2008/11/21/5-of-the-most-used-applications-and-then-some/</link>
		<comments>http://auroral.co.uk/2008/11/21/5-of-the-most-used-applications-and-then-some/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 07:23:17 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[E-mail]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Applications]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[Open Office]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[PHPDesigner]]></category>
		<category><![CDATA[PuTTY]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[Thunderbird]]></category>
		<category><![CDATA[WinMerge]]></category>
		<category><![CDATA[WinSCP]]></category>

		<guid isPermaLink="false">http://auroral.co.uk/2008/11/21/5-of-the-most-used-applications-and-then-some/</guid>
		<description><![CDATA[OK so they might not be your 5 most used but they are mine and if you potter around the web working on various projects or it&#8217;s something your starting to get into, then no doubt you will have your preferred applications and most likely you&#8217;ll use these for a long time come, but the [...]]]></description>
			<content:encoded><![CDATA[<p>OK so they might not be your 5 most used but they are mine and if you potter around the web working on various projects or it&#8217;s something your starting to get into, then no doubt you will have your preferred applications and most likely you&#8217;ll use these for a long time come, but the following should at least be considered.</p>
<p>I have a mixture of systems here running on Windows XP, Ubuntu &amp; CentOS however XP is my main platform not because it&#8217;s good, because it isn&#8217;t, but because some of the programs I use (funny enough not in this list <img src='http://auroral.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> ) only work on it, for example my network hard drives, although there is a Linux work through, it means spending time getting it running, backing up the drives because they&#8217;re file systems will need changing and the hassle is just not worth it at the moment and yes I&#8217;m aware I could install a partitioned version of XP on a Linux machine.</p>
<p>So for this reason, some of these applications may only be Windows based and if your on a windows machine then it&#8217;s sure worth giving them a try.</p>
<p>My most used daily applications are as follows:</p>
<blockquote><p> 1. <a href="http://www.mozilla.com/firefox" title="Mozilla FireFox">Firefox</a> &#8211; I&#8217;ve always been a fan of Mozilla and as far as browsers go this is my all time favourite, I have to admit I wasn&#8217;t to keen on the latest major release at first, but now I&#8217;ve got use to it, I love it.</p>
<blockquote><p>Because I&#8217;m involved in various web projects I find some of the plugins available for <a href="http://www.mozilla.com/firefox" title="Firefox">FireFox</a> amazing, one of my most used plugins would be <a href="http://getfirebug.com" title="Firebug">Firebug</a> &#8211; In short this will help you find faults with websites.</p></blockquote>
<p>2.  <a href="http://www.mozilla.com/thunderbird/" title="Thunderbird">Thunderbird</a> &#8211; Yes it&#8217;s another Mozilla product, this time a mail application which has the capability of both POP and IMAP which is important for me.</p>
<blockquote><p>There is no special reason I use this other than it&#8217;s simple, it&#8217;s free, the spell checker works (added dictionary for English &#8211; British) and it&#8217;s not Microsoft, plus in my opinion it&#8217;s the best available.</p></blockquote>
<p>3. <a href="http://winscp.net" title="WinSCP - Free SFTP, FTP and SCP client for Windows">WinSCP</a> -I&#8217;ve used the rest and I truely believe this is the best and what&#8217;s more is that this is also open source and free. As far as FTP clients for windows go in my honest opinion this out performs others, I&#8217;ve never had one issue with this client yet and I&#8217;ve used it for years.</p>
<blockquote><p>In addition to it being free, I also find it very stable and love the fact that it&#8217;s only a one button click away from loading up PuTTY. It&#8217;s secure and runs over SFTP providing your server enables SSH connections that are not &#8220;jailed&#8221; depending on your hosts settings. But not to worry if you can&#8217;t use SFTP then you can still use FTP.</p></blockquote>
<p>4. <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/" title="Telnet and SSH">PuTTY</a> &#8211; If your needing a CLI then this is the application for the job, I find it simple to use with the features I need.</p>
<blockquote><p>What makes this extra special for me is that it&#8217;s like the strong arm of WinSCP, like I said when using WinSCP it&#8217;s only a click away.</p></blockquote>
<p>5. <a href="http://www.openoffice.org/" title="The free and open productivity suite">OpenOffice Writter</a> &#8211; Open Office is your answer to Microsoft Office, I don&#8217;t use many of the other tools in it but you might, it comes packed with Writer, base, cal, draw, impress, math, but it&#8217;s mainly writer I use.</p>
<blockquote><p>Basically Open Office will do everything from spread sheets, word documents to presentations and more. I was introduced to this by a good friend of mine whom I work with on another open source project and since then I&#8217;ve never looked back. Basically fulfils most of my writing needs.</p></blockquote>
</blockquote>
<p><strong>And then Some&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;..</strong></p>
<p>I also use many other applications which are maybe noteworthy for people to try:</p>
<p><u><strong>Browsers</strong>:</u></p>
<p><a href="http://www.opera.com" title="Opera gives you the full Web experience everywhere.">Opera</a></p>
<p>Internet Explorer 7 (IE8 looks promising)</p>
<p><a href="http://www.apple.com/safari/" title="Experience the web, Apple style, with Safari">Safari</a> &#8211; From Apple</p>
<p>I use various browsers when testing websites out to see how well they render, I also have similar browsers installed on my Linux machines.</p>
<p><u><strong>Other:</strong></u></p>
<p><a href="http://winmerge.org" title="visual text file differencing and merging tool">WinMerge</a> &#8211; Very handy when you need to compare two documents for changes and when you might need to merge them. Also handy for when your working with web projects and you need to quickly compare code which someone else has written.</p>
<p><a href="http://www.mpsoftware.dk/phpdesigner.php" title="PHPDesigner, Your alternative to Macromedia Dreamweaver">PHPDesigner</a> -  I&#8217;ve not yet purchased this piece of software but I have tried the trial and a friends*cough* copy. I much prefer using PHPDesigner over any other software including Dreamweaver. Don&#8217;t be confused by it&#8217;s name though because it&#8217;s also good for HTML, CSS, JS, XML and many more.</p>
<p>It also integrates nicely with the PHP manuals. It&#8217;s not free but it is worth it.</p>
<p class="r"><strong>And for the finale&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;</strong></p>
<p class="r">Ok it&#8217;s not a musical end but still this is a pretty impressive and small application which I was introduced to by my good friend <a href="http://jmorris.name" title="James Morries AKA Mr Caffine">James Morris</a>:</p>
<p class="r"><a href="http://www.mlin.net/StartupCPL.shtml" title="Start up Control Panel">Startup Control Panel</a> &#8211; I couldn&#8217;t really do it any justice in my explanation so here is theirs:</p>
<p class="r"><a href="http://www.mlin.net/StartupCPL.shtml" title="Startup Control Panel">Startup Control Panel</a> is a nifty control panel applet that allows you to easily configure which programs run when your computer starts. It&#8217;s very small and won&#8217;t burden your system. A valuable tool for system administrators!</p>
<p class="r">My computer can now breath again when it boots up. <img src='http://auroral.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p class="r">With the exception of PHPDesigner, every other application linked to in this blog is FREE, some are open source, some licensed under GPL or similar but most of all did I mention, their FREE. <img src='http://auroral.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>

<!-- Start WP Socializer - Social Buttons - Output -->
<div class="wp-socializer 32px">
<ul class="wp-socializer-opacity columns-no">
 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="mailto:support@hauntedengland.co.uk?subject=5 Of The Most Used Applications And Then Some&amp;body=OK so they might not be your 5 most used but they are mine and if you potter around the web working on various projects or it's something your starting to get into, then no doubt you will have your preferred applications and most likely you'll use th - http://auroral.co.uk/2008/11/21/5-of-the-most-used-applications-and-then-some/" title="Email this" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Email" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -297px; border:0;"/></a><span class="wp-socializer-label"><a href="mailto:support@hauntedengland.co.uk?subject=5 Of The Most Used Applications And Then Some&amp;body=OK so they might not be your 5 most used but they are mine and if you potter around the web working on various projects or it's something your starting to get into, then no doubt you will have your preferred applications and most likely you'll use th - http://auroral.co.uk/2008/11/21/5-of-the-most-used-applications-and-then-some/" title="Email this" target="_blank">Email</a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 
</ul> 
<div class="wp-socializer-clearer"></div></div>
<!-- End WP Socializer - Social Buttons - Output -->
]]></content:encoded>
			<wfw:commentRss>http://auroral.co.uk/2008/11/21/5-of-the-most-used-applications-and-then-some/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Google Chrome &#8211; Is it just another browser?</title>
		<link>http://auroral.co.uk/2008/09/02/google-chrome-is-it-just-another-browser/</link>
		<comments>http://auroral.co.uk/2008/09/02/google-chrome-is-it-just-another-browser/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 15:26:06 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://auroral.co.uk/2008/09/02/google-chrome-is-it-just-another-browser/</guid>
		<description><![CDATA[Google Chrome promises to be the next evolution of web browsers for the internet, they claim to run multi processor tab browsing with a good balance of &#8220;simplicity meets complexity&#8221;, in other words they want some cool features in there but they don&#8217;t want to bulk it out and slow it down.
Google loves to try [...]]]></description>
			<content:encoded><![CDATA[<p>Google Chrome promises to be the next evolution of web browsers for the internet, they claim to run multi processor tab browsing with a good balance of &#8220;simplicity meets complexity&#8221;, in other words they want some cool features in there but they don&#8217;t want to bulk it out and slow it down.</p>
<p>Google loves to try and lead the way, but they actually piss me off sometimes, recently they reduced the PR of a popular site we run to 0 and won&#8217;t tell us why it was dropped so dramatically making it impossible to correct any issues to reinstate the high page rank.</p>
<p>Anyway that&#8217;s sour grapes.</p>
<p>If Google can deliver what they promise it will mean an end to webpages crashing whilst running some java script and forcing you to restart your whole browser because nothing works. Well the pages might still crash but the browser shouldn&#8217;t.</p>
<p>If you interested in learning more about Googles new browser you can visit their comic book presentation:</p>
<p><a href="http://www.google.com/googlebooks/chrome/" title="Google Chrome Browser">http://www.google.com/googlebooks/chrome/ </a></p>
<p>Googe Chrome is open source so anyone can develop for it, and for themselves which is very cool.</p>
<p>Will it just be yet another browser on the market?</p>
<p>I&#8217;m not sure, I suppose we&#8217;ll just have to wait and see how it preforms and what it actually does feature wise.</p>
<p><font color="#ff0000"><strong>NOTE:</strong> This beta version has two serious bugs which could leave your computer vulnerable! </font></p>

<!-- Start WP Socializer - Social Buttons - Output -->
<div class="wp-socializer 32px">
<ul class="wp-socializer-opacity columns-no">
 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="mailto:support@hauntedengland.co.uk?subject=Google Chrome &#8211; Is it just another browser?&amp;body=Google Chrome promises to be the next evolution of web browsers for the internet, they claim to run multi processor tab browsing with a good balance of "simplicity meets complexity", in other words they want some cool features in there but they don't - http://auroral.co.uk/2008/09/02/google-chrome-is-it-just-another-browser/" title="Email this" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Email" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -297px; border:0;"/></a><span class="wp-socializer-label"><a href="mailto:support@hauntedengland.co.uk?subject=Google Chrome &#8211; Is it just another browser?&amp;body=Google Chrome promises to be the next evolution of web browsers for the internet, they claim to run multi processor tab browsing with a good balance of "simplicity meets complexity", in other words they want some cool features in there but they don't - http://auroral.co.uk/2008/09/02/google-chrome-is-it-just-another-browser/" title="Email this" target="_blank">Email</a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 
</ul> 
<div class="wp-socializer-clearer"></div></div>
<!-- End WP Socializer - Social Buttons - Output -->
]]></content:encoded>
			<wfw:commentRss>http://auroral.co.uk/2008/09/02/google-chrome-is-it-just-another-browser/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Blowing a PSU</title>
		<link>http://auroral.co.uk/2008/08/28/blowing-a-psu/</link>
		<comments>http://auroral.co.uk/2008/08/28/blowing-a-psu/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 10:52:05 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[PSU]]></category>
		<category><![CDATA[Quemu]]></category>
		<category><![CDATA[Virtual Box]]></category>
		<category><![CDATA[Wine]]></category>

		<guid isPermaLink="false">http://auroral.co.uk/2008/08/28/blowing-a-psu/</guid>
		<description><![CDATA[For months now my main computer which is Microslow Winbloze XP would be mysteriously rebooted whilst I was away from it, I just put it down to some Windows updates which forced a reboot. Occasionally it would also just cut out but we do seem to get short lasting power cuts fairly often
Last week or [...]]]></description>
			<content:encoded><![CDATA[<p>For months now my main computer which is Microslow Winbloze XP would be mysteriously rebooted whilst I was away from it, I just put it down to some Windows updates which forced a reboot. Occasionally it would also just cut out but we do seem to get short lasting power cuts fairly often</p>
<p>Last week or maybe the week before (my mind forgets me sometimes), my computer just wouldn&#8217;t boot, or it would start and then just cut the power so I opened her up to operate. I then realised the computer had not been cleaned inside for about 2 years which was preventing the CPU fan from turning, yuk it was disgusting but this was surely the reason for it cutting off to save the CPU and mother board right&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.</p>
<p>I cleaned her out and it booted first time, all was well my baby was fixed again or so I thought. About two days later it does the same again and again, this was a sure sign my PSU (Power Supply Unit) was on it&#8217;s last legs, I&#8217;d not opened that up to clean the days before but now  I opened it up in hope of saving it with some radical cleansing but alas it did no good.</p>
<p>I kept forcing it to boot whilst I made back ups, pushing it to it&#8217;s limits but now my PSU rest in peace has gone to computer heaven, I just hope in my haste I didn&#8217;t crash the Hard Drives to, althought my PSU could do with the company, it&#8217;s just not the HD&#8217;s time, there twins and still young.</p>
<p>A friend whom works for a computer company was sending me a new PSU out, however he got a little busy and now I won&#8217;t get it until the weekend, but for the last week or two I&#8217;ve taken a self taught crash course in Linux which is on my other machines. As I think I mentioned in another blog on here, I&#8217;d used Linux before in fact the websites of SJB are on Linux servers (now Centos) but I&#8217;d only ever learned to do something as and when I needed it or I asked the server admins to take care of it, can&#8217;t do that here though so I learned the hard way and it&#8217;s been rather fun albeit time consuming.</p>
<p>If you considering dropping Microslow Windbloze and have no experience of Linux then try Ubuntu, it has to be the most user friendly I&#8217;ve tried. They also allow you download an ISO which when you stick on a CD and then pop into a windows machine allows you to run Ubuntu without installing it, so you can try it before installing it which is really cool.</p>
<p>Hopefully I&#8217;ll be back on-line properly soon. I know I&#8217;ll be moving my main system from Windows to Ubuntu soon so that will be more fun.</p>
<p>If you rely on Microsoft for some programs then you needn&#8217;t worry, there are two programs one emulates a Windows environment and the other allows you to install a windows partition and run it from Ubuntu like it&#8217;s just another program which is amazing.</p>
<p>1). Wine &#8211; <a href="http://www.winehq.org" title="http://www.winehq.org">http://www.winehq.org</a> &#8211; <a href="http://en.wikipedia.org/wiki/Wine_(software)" title="http://en.wikipedia.org/wiki/Wine_(software)">http://en.wikipedia.org/wiki/Wine_(software)</a></p>
<p>2). Qemu &#8211; <a href="http://bellard.org/qemu" title="Qemu">http://bellard.org/qemu</a> &#8211; <a href="http://en.wikipedia.org/wiki/QEMU" title="http://en.wikipedia.org/wiki/QEMU">http://en.wikipedia.org/wiki/QEMU</a></p>
<p>3). Virtual Box &#8211; <a href="http://www.virtualbox.org" title="Virtual Box For Linux">http://www.virtualbox.org</a></p>
<p>Anyway, yeah I was saying&#8230;.. I should have my new PSU soon, lol.</p>

<!-- Start WP Socializer - Social Buttons - Output -->
<div class="wp-socializer 32px">
<ul class="wp-socializer-opacity columns-no">
 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="mailto:support@hauntedengland.co.uk?subject=Blowing a PSU&amp;body=For months now my main computer which is Microslow Winbloze XP would be mysteriously rebooted whilst I was away from it, I just put it down to some Windows updates which forced a reboot. Occasionally it would also just cut out but we do seem to get s - http://auroral.co.uk/2008/08/28/blowing-a-psu/" title="Email this" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="Email" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -297px; border:0;"/></a><span class="wp-socializer-label"><a href="mailto:support@hauntedengland.co.uk?subject=Blowing a PSU&amp;body=For months now my main computer which is Microslow Winbloze XP would be mysteriously rebooted whilst I was away from it, I just put it down to some Windows updates which forced a reboot. Occasionally it would also just cut out but we do seem to get s - http://auroral.co.uk/2008/08/28/blowing-a-psu/" title="Email this" target="_blank">Email</a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 

 <li><a href="" title="" target="_blank"><img src="http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-mask-32px.gif" alt="" style="width:32px; height:32px; background: transparent url(http://auroral.co.uk/wp-content/plugins/wp-socializer/public/social-icons/wp-socializer-sprite-32px.png) no-repeat; background-position:0px -px; border:0;"/></a><span class="wp-socializer-label"><a href="" title="" target="_blank"></a></span></li> 
</ul> 
<div class="wp-socializer-clearer"></div></div>
<!-- End WP Socializer - Social Buttons - Output -->
]]></content:encoded>
			<wfw:commentRss>http://auroral.co.uk/2008/08/28/blowing-a-psu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

