<?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>RX Host</title>
	<atom:link href="http://www.rxhost.co.uk/v1/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rxhost.co.uk/v1</link>
	<description>Websites + Hosting + Domains + Super Support</description>
	<lastBuildDate>Sun, 11 Mar 2012 03:23:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Mass assigning images to products in Open Cart</title>
		<link>http://www.rxhost.co.uk/v1/mass-assigning-images-to-products-in-open-cart/</link>
		<comments>http://www.rxhost.co.uk/v1/mass-assigning-images-to-products-in-open-cart/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 14:43:17 +0000</pubDate>
		<dc:creator>Chirag</dc:creator>
				<category><![CDATA[E-Commerce]]></category>
		<category><![CDATA[Open Cart Tutorials]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[mass assign]]></category>
		<category><![CDATA[mutliple images]]></category>
		<category><![CDATA[open cart]]></category>
		<category><![CDATA[same image on multiple products]]></category>
		<category><![CDATA[SQL for Open Cart multiple images]]></category>
		<category><![CDATA[tips and tricks]]></category>

		<guid isPermaLink="false">http://www.rxhost.co.uk/v1/?p=717</guid>
		<description><![CDATA[Whilst working on an e-commerce project for a client we found that we had to add the same 3 images to over 200 products. Now, compared the Zen Cart, the Open Cart admin dashboard is relatively easy on the eyes and intuitive, but it would still take a fair amount of time to manually assign the same 3 images to each product. I wrote some SQL statements to take care of the job in less than 5 minutes (although I did spend a long time trying to do the job in one statement, but was unable). So if you want [...]
Related posts:<ol>
<li><a href='http://www.rxhost.co.uk/v1/how-to-add-multiple-images-to-your-zen-cart-product-listings-video-tutorial/' rel='bookmark' title='How to add multiple images to your Zen Cart Product Listings (video tutorial)'>How to add multiple images to your Zen Cart Product Listings (video tutorial)</a></li>
<li><a href='http://www.rxhost.co.uk/v1/zen-cart-hosting-uk/' rel='bookmark' title='UK Zen Cart Hosting'>UK Zen Cart Hosting</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Whilst working on an e-commerce project for a client we found that we had to add the same 3 images to over 200 products.</p>
<p>Now, compared the Zen Cart, the Open Cart admin dashboard is relatively easy on the eyes and intuitive, but it would still take a fair amount of time to manually assign the same 3 images to each product.</p>
<p>I wrote some SQL statements to take care of the job in less than 5 minutes (although I did spend a long time trying to do the job in one statement, but was unable).</p>
<p>So if you want to assign for example image1.jpg, image2.jpg and image3.jpg to all of your products in Open Cart as addition images here&#8217;s what you have to do.</p>
<p>1. Upload the pictures to your server</p>
<p>2. Open PHPmyadmin (via cPanel)</p>
<p>3. Open your MySQL table and select the SQL tab at the top of the screen</p>
<p>4. Run the following commands:</p>
<p>a) Copy all the product ids to the product_image table.</p>
<p><code>INSERT INTO product_image (product_id)<br />
SELECT product_id FROM product</code></p>
<p>b) Now replace the null image value with the image and sort code of your choice:</p>
<p><code>UPDATE product_image<br />
SET image='data/image1.jpg', sort_order=0<br />
WHERE image IS NULL</code></p>
<p>c) Now we need to add all the product IDs to the product image table again</p>
<p><code>INSERT INTO product_image (product_id)<br />
SELECT product_id FROM product</code></p>
<p>d) Now use the same code from step b, but replace the values e.g.</p>
<p><code>UPDATE product_image<br />
SET image='data/image2.jpg', sort_order=1<br />
WHERE image IS NULL</code></p>
<p>e) Repeat steps c and d until you&#8217;re done.</p>
<p>I&#8217;m sure this isn&#8217;t the most elegant solution, so if you have a better method please do leave a comment below!</p>
<p>Related posts:<ol>
<li><a href='http://www.rxhost.co.uk/v1/how-to-add-multiple-images-to-your-zen-cart-product-listings-video-tutorial/' rel='bookmark' title='How to add multiple images to your Zen Cart Product Listings (video tutorial)'>How to add multiple images to your Zen Cart Product Listings (video tutorial)</a></li>
<li><a href='http://www.rxhost.co.uk/v1/zen-cart-hosting-uk/' rel='bookmark' title='UK Zen Cart Hosting'>UK Zen Cart Hosting</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.rxhost.co.uk/v1/mass-assigning-images-to-products-in-open-cart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Choosing a Merchant Account for e-commerce</title>
		<link>http://www.rxhost.co.uk/v1/merchant-accounts-ecommerce-cardsave/</link>
		<comments>http://www.rxhost.co.uk/v1/merchant-accounts-ecommerce-cardsave/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 17:39:58 +0000</pubDate>
		<dc:creator>Chirag</dc:creator>
				<category><![CDATA[E-Commerce]]></category>
		<category><![CDATA[Merchant Accounts UK]]></category>
		<category><![CDATA[ecommerce card processing]]></category>
		<category><![CDATA[ecommerce merchant account]]></category>
		<category><![CDATA[internet merchant account]]></category>
		<category><![CDATA[merchant account]]></category>
		<category><![CDATA[merchant account uk]]></category>
		<category><![CDATA[online card processing]]></category>

		<guid isPermaLink="false">http://www.rxhost.co.uk/v1/?p=701</guid>
		<description><![CDATA[Choosing the right Merchant Account can make a big difference to your expenses when running an e-commerce store. Depending on the volume you do, PayPal and Google Checkout might work out quite expensive. With a good merchant account you usually have to pay a monthly fee, but this often gives you a few hundred that are free of any other cost! For example, your average sale is £100 and with PayPal you spend 3.4% (£3.40p) + 20p = £3.60p to process the transaction. Make 10 sales in a day and you&#8217;ve spent around £30 just on processing fees! Most merchant [...]
Related posts:<ol>
<li><a href='http://www.rxhost.co.uk/v1/do-you-need-e-commerce-web-hosting-with-paypal/' rel='bookmark' title='Do you need e-commerce web hosting with paypal?'>Do you need e-commerce web hosting with paypal?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Choosing the right Merchant Account can make a big difference to your expenses when running an e-commerce store. Depending on the volume you do, PayPal and Google Checkout might work out quite expensive.</p>
<p>With a good merchant account you usually have to pay a monthly fee, but this often gives you a few hundred that are free of any other cost! For example, your average sale is £100 and with PayPal you spend 3.4% (£3.40p) + 20p  = £3.60p to process the transaction. </p>
<p>Make 10 sales in a day and you&#8217;ve spent around £30 just on processing fees! Most merchant accounts start at around £20 &#8211; £30 per month give you at least 100 free transactions. Meaning you could save yourself a lot of money in the long run.</p>
<p>We&#8217;ve written an in depth <a href="http://www.rxhost.co.uk/v1/merchant-account-uk/" title="Merchant Account (UK) Comparison" target="_blank">UK Merchant Account Comparison</a> that provides an in-depth explanation.</p>
<p>Related posts:<ol>
<li><a href='http://www.rxhost.co.uk/v1/do-you-need-e-commerce-web-hosting-with-paypal/' rel='bookmark' title='Do you need e-commerce web hosting with paypal?'>Do you need e-commerce web hosting with paypal?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.rxhost.co.uk/v1/merchant-accounts-ecommerce-cardsave/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.3 released &#8211; how to upgrade</title>
		<link>http://www.rxhost.co.uk/v1/wordpress-3-3-released-how-to-upgrade/</link>
		<comments>http://www.rxhost.co.uk/v1/wordpress-3-3-released-how-to-upgrade/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 01:08:00 +0000</pubDate>
		<dc:creator>Chirag</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[WordPress Hosting]]></category>
		<category><![CDATA[WordPress upgrade]]></category>

		<guid isPermaLink="false">http://www.rxhost.co.uk/v1/?p=697</guid>
		<description><![CDATA[News from WordPress HQ today came early in the morning. The latest version of WordPress (3.3) is available to download now, just in time for the festive season. This update boasts a number of slick new features &#8211; we&#8217;ll add video tutorials soon. Instead of going over all the new features again, the purpose of this post is to encourage you to update your installation. You should be able to upgrade in just a few clicks from your WordPress Dashboard (admin area). If you&#8217;re one of our customers and are having trouble upgrading, please create a support ticket. Oh, and [...]
Related posts:<ol>
<li><a href='http://www.rxhost.co.uk/v1/uk-wordpress-hosting/' rel='bookmark' title='UK WordPress Hosting'>UK WordPress Hosting</a></li>
<li><a href='http://www.rxhost.co.uk/v1/wordpress-xml-rpc-settings/' rel='bookmark' title='WordPress and XML RPC &#8211; Settings'>WordPress and XML RPC &#8211; Settings</a></li>
<li><a href='http://www.rxhost.co.uk/v1/enhance-your-wordpress-security/' rel='bookmark' title='Enhance your WordPress Security'>Enhance your WordPress Security</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>News from WordPress HQ today came early in the morning. The latest version of WordPress (3.3) is available to download now, just in time for the festive season.</p>
<p>This update boasts a number of slick new features &#8211; we&#8217;ll add video tutorials soon. </p>
<p>Instead of going over all the <a href="http://wordpress.org/news/2011/12/sonny/">new features</a> again, the purpose of this post is to encourage you to update your installation.</p>
<p>You should be able to upgrade in just a few clicks from your WordPress Dashboard (admin area).</p>
<p>If you&#8217;re one of our customers and are having trouble upgrading, please create a <a href="http://bit.ly/rxsupport">support ticket</a>. </p>
<p>Oh, and before you upgrade please make sure you backup your WordPress and database!</p>
<p>Don&#8217;t forget, we love WordPress and equally love providing <a href="http://www.rxhost.co.uk/v1/uk-wordpress-hosting">WordPress Hosting</a>. Whether you&#8217;ve got a site or looking to start one, we&#8217;d love to talk to you about our <a href="http://www.rxhost.co.uk/v1/uk-web-hosting">UK based web hosting.</a></p>
<p>Related posts:<ol>
<li><a href='http://www.rxhost.co.uk/v1/uk-wordpress-hosting/' rel='bookmark' title='UK WordPress Hosting'>UK WordPress Hosting</a></li>
<li><a href='http://www.rxhost.co.uk/v1/wordpress-xml-rpc-settings/' rel='bookmark' title='WordPress and XML RPC &#8211; Settings'>WordPress and XML RPC &#8211; Settings</a></li>
<li><a href='http://www.rxhost.co.uk/v1/enhance-your-wordpress-security/' rel='bookmark' title='Enhance your WordPress Security'>Enhance your WordPress Security</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.rxhost.co.uk/v1/wordpress-3-3-released-how-to-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Taking your WordPress site mobile, for free!</title>
		<link>http://www.rxhost.co.uk/v1/taking-your-wordpress-site-mobile-for-free/</link>
		<comments>http://www.rxhost.co.uk/v1/taking-your-wordpress-site-mobile-for-free/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 19:08:39 +0000</pubDate>
		<dc:creator>Chirag</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[android wordpress theme]]></category>
		<category><![CDATA[free mobile wordpress theme]]></category>
		<category><![CDATA[iPad WordPress theme]]></category>
		<category><![CDATA[iPhone WordPress theme]]></category>
		<category><![CDATA[jquery mobile WordPress theme]]></category>
		<category><![CDATA[mobile wordpress plugin]]></category>
		<category><![CDATA[mobile wordpress theme]]></category>
		<category><![CDATA[UK Web hosting]]></category>
		<category><![CDATA[UK WordPress Hosting]]></category>
		<category><![CDATA[WordPress Hosting]]></category>
		<category><![CDATA[WordPress Hosting UK]]></category>
		<category><![CDATA[wordpress theme wp]]></category>

		<guid isPermaLink="false">http://www.rxhost.co.uk/v1/?p=690</guid>
		<description><![CDATA[Using WordPress to power your website and/or blog is a wise move in our books. A lot of our customers spend a lot of time making sure their website is constantly up to date, and their blog packed full of useful information for their visitors. Themes are tweaked to perfection and images resized for optimal display. But what happens when your visitors go mobile? Is your site ready for the ever increasing amount of surfing that&#8217;s taking place on mobile devices? At RX Host, we&#8217;re guilty, of not having an optimised for mobile version of our site at all. That [...]
Related posts:<ol>
<li><a href='http://www.rxhost.co.uk/v1/how-do-i-set-up-a-wordpress-blog/' rel='bookmark' title='How do I set up a WordPress blog?'>How do I set up a WordPress blog?</a></li>
<li><a href='http://www.rxhost.co.uk/v1/uk-wordpress-hosting/' rel='bookmark' title='UK WordPress Hosting'>UK WordPress Hosting</a></li>
<li><a href='http://www.rxhost.co.uk/v1/enhance-your-wordpress-security/' rel='bookmark' title='Enhance your WordPress Security'>Enhance your WordPress Security</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Using WordPress to power your website and/or blog is a wise move in our books. A lot of our customers spend a lot of time making sure their website is constantly up to date, and their blog packed full of useful information for their visitors.</p>
<p>Themes are tweaked to perfection and images resized for optimal display. But what happens when your visitors go mobile?</p>
<p>Is your site ready for the ever increasing amount of surfing that&#8217;s taking place on mobile devices? At RX Host, we&#8217;re guilty, of not having an optimised for mobile version of our site at all. That doesn&#8217;t mean you should follow suit.</p>
<p>Take a look at your analytics (contact us if you&#8217;re not sure what analytics are!) and you&#8217;ll more than likely see an increasing number of visits from mobile devices. The bounce rate and other stats will give you an indication as to how (un)friendly your site is on mobile devices too.</p>
<p>So what can we do to get your content to the new generation of mobile web surfers? Install a plugin of course! Both plugins below are free <img src='http://www.rxhost.co.uk/v1/wp-includes/images/smilies/icon_smile.gif' alt="icon smile Taking your WordPress site mobile, for free!" class='wp-smiley' title="Taking your WordPress site mobile, for free!" /> </p>
<h3><a title="WP Touch" href="http://www.bravenewcode.com/store/plugins/wptouch-pro/" target="_blank">WP TOUCH</a></h3>
<p>WP Touch is really common on WordPress blogs and you&#8217;ll find it on a wide range of sites. More likely to be on blog centric sites than others, but if your content is mainly on your blog, then it&#8217;s a great plugin to use. Just make sure that if you&#8217;re a business and people use their mobile devices to access your site, that your contact details, including phone number is clearly visible, even on your mobile theme!</p>
<p>You can customise WP touch from your admin area and the theme even allows visitors to switch between &#8220;mobile&#8221; and &#8220;desktop&#8221; views whilst they&#8217;re on the go. The best of both worlds!<br />
<a href="http://www.rxhost.co.uk/v1/wp-content/uploads/2011/11/mobius-iphone.png"><img class="size-medium wp-image-691 alignright" title="WordPress Mobile Theme Mobius" src="http://www.rxhost.co.uk/v1/wp-content/uploads/2011/11/mobius-iphone-159x300.png" alt="mobius iphone 159x300 Taking your WordPress site mobile, for free!" width="159" height="300" /></a><br />
WP Touch is free, but there is a paid option too. The link above gives more info.</p>
<h3><a title="Mobius for WordPress Mobile Theme" href="http://www.mobilizetoday.com/wordpress-themes/mobius/" target="_blank">MOBIUS</a></h3>
<p>Mobius resembles a normal WordPress theme in scaled down format. It comes with a few different styles, and hopefully one will suit your sites mobile needs.</p>
<p>Don&#8217;t forget, to use some plugins, you&#8217;ll need to get some <a title="UK WordPress Hosting" href="http://www.rxhost.co.uk/v1/uk-wordpress-hosting/">WordPress Hosting</a> and self host your site. We love hosting <a title="WordPress Homepage" href="http://wordpress.org" target="_blank">WordPress</a> sites and would be more than happy to give help and advice about WordPress and <a title="Web Hosting" href="http://www.rxhost.co.uk/v1/uk-web-hosting/">web hosting</a> in general.</p>
<p>Related posts:<ol>
<li><a href='http://www.rxhost.co.uk/v1/how-do-i-set-up-a-wordpress-blog/' rel='bookmark' title='How do I set up a WordPress blog?'>How do I set up a WordPress blog?</a></li>
<li><a href='http://www.rxhost.co.uk/v1/uk-wordpress-hosting/' rel='bookmark' title='UK WordPress Hosting'>UK WordPress Hosting</a></li>
<li><a href='http://www.rxhost.co.uk/v1/enhance-your-wordpress-security/' rel='bookmark' title='Enhance your WordPress Security'>Enhance your WordPress Security</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.rxhost.co.uk/v1/taking-your-wordpress-site-mobile-for-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress and XML RPC &#8211; Settings</title>
		<link>http://www.rxhost.co.uk/v1/wordpress-xml-rpc-settings/</link>
		<comments>http://www.rxhost.co.uk/v1/wordpress-xml-rpc-settings/#comments</comments>
		<pubDate>Sat, 15 Oct 2011 18:17:44 +0000</pubDate>
		<dc:creator>Chirag</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Blogs/WordPress]]></category>
		<category><![CDATA[UK WordPress Hosting]]></category>
		<category><![CDATA[WordPress Hosting]]></category>
		<category><![CDATA[wordpress tutorial]]></category>
		<category><![CDATA[xml rpc]]></category>

		<guid isPermaLink="false">http://www.rxhost.co.uk/v1/?p=684</guid>
		<description><![CDATA[To use WordPress when you&#8217;re not at your desk, you&#8217;ll probably want to use the WordPress App on your smartphone. To make sure you&#8217;re able to log in and manage your WordPress site from your mobile device, you need to make sure XML RPC is enabled. How to enable XML RPC on WordPress To turn on XML RPC, you need to: 1 &#8211; Log in to your WordPress Dashboard 2 &#8211; Select settings from the menu on the left 3 &#8211; Select &#8220;Writing&#8221; (it&#8217;s an option in the Settings menu). 4 &#8211; Under the heading &#8220;Remote Publishing&#8221; check the box [...]
Related posts:<ol>
<li><a href='http://www.rxhost.co.uk/v1/transfer-wordpress-10-easy-steps/' rel='bookmark' title='Transfer WordPress in 10 Easy Steps'>Transfer WordPress in 10 Easy Steps</a></li>
<li><a href='http://www.rxhost.co.uk/v1/uk-wordpress-hosting/' rel='bookmark' title='UK WordPress Hosting'>UK WordPress Hosting</a></li>
<li><a href='http://www.rxhost.co.uk/v1/enhance-your-wordpress-security/' rel='bookmark' title='Enhance your WordPress Security'>Enhance your WordPress Security</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>To use WordPress when you&#8217;re not at your desk, you&#8217;ll probably want to use the WordPress App on your smartphone. To make sure you&#8217;re able to log in and manage your WordPress site from your mobile device, you need to make sure XML RPC is enabled.</p>
<h2>How to enable XML RPC on WordPress</h2>
<p>To turn on XML RPC, you need to:</p>
<p>1 &#8211; Log in to your WordPress Dashboard</p>
<p>2 &#8211; Select settings from the menu on the left</p>
<p>3 &#8211; Select &#8220;Writing&#8221; (it&#8217;s an option in the Settings menu).</p>
<p>4 &#8211; Under the heading &#8220;Remote Publishing&#8221; check the box that says &#8220;Enable the WordPress, Movable Type, MetaWeblog and Blogger XML-RPC publishing protocols.&#8221;</p>
<p>4 &#8211; That&#8217;s it!</p>
<p>4b &#8211; Well, you may be asked for a link to XML RPC on your wordpress. This usually means you just add xmlrpc.php to the end of your WordPress url.</p>
<p>For example, if your WordPress is located at www.mydomain.com, you&#8217;d want to link to www.mydomain.com/xmlrpc.php</p>
<p>Et voila! Job done!</p>
<p>If the text doesn&#8217;t make sense, here&#8217;s a <a title="XML RPC on WordPress" href="http://www.youtube.com/watch?v=9tvxVimhxAY">video</a>:</p>
<p>&nbsp;</p>
<p><iframe src="http://www.youtube.com/embed/9tvxVimhxAY" frameborder="0" width="560" height="315"></iframe></p>
<p>Don&#8217;t forget if you need <a title="Managed WordPress Hosting" href="http://www.rxhost.co.uk/v1/services/easy-wordpress-hosting-install/">WordPress Hosting,</a> we can also help. We work with WordPress on a daily basis and ensure that we provide a reliable and quick service for users running WordPress on our servers. If you prefer to manage everything yourself we also have some great UK <a title="Web Hosting" href="http://www.rxhost.co.uk/v1/uk-web-hosting/">Web Hosting</a> Plans available.</p>
<p>Related posts:<ol>
<li><a href='http://www.rxhost.co.uk/v1/transfer-wordpress-10-easy-steps/' rel='bookmark' title='Transfer WordPress in 10 Easy Steps'>Transfer WordPress in 10 Easy Steps</a></li>
<li><a href='http://www.rxhost.co.uk/v1/uk-wordpress-hosting/' rel='bookmark' title='UK WordPress Hosting'>UK WordPress Hosting</a></li>
<li><a href='http://www.rxhost.co.uk/v1/enhance-your-wordpress-security/' rel='bookmark' title='Enhance your WordPress Security'>Enhance your WordPress Security</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.rxhost.co.uk/v1/wordpress-xml-rpc-settings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is Google Chrome Killing Your MacBook&#8217;s Battery?</title>
		<link>http://www.rxhost.co.uk/v1/is-google-chrome-killing-your-macbooks-battery/</link>
		<comments>http://www.rxhost.co.uk/v1/is-google-chrome-killing-your-macbooks-battery/#comments</comments>
		<pubDate>Sat, 15 Oct 2011 17:45:26 +0000</pubDate>
		<dc:creator>Chirag</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Google Chrome]]></category>

		<guid isPermaLink="false">http://www.rxhost.co.uk/v1/?p=679</guid>
		<description><![CDATA[As I mentioned in my previous post, I made the switch to a MacBook Pro for work purposes. After having a chat with some friends and doing some checking around on the web for confirmation, it seems as if using Google Chrome was killing the battery on my Mac. I wasn&#8217;t expecting the advertised 7 hours, but at least around 4-5 hours of web browsing time. So, you can imagine my disappointment at getting only 2 -3 hours when using chrome. It seems that for most typed of animation Chrome switches to using the MacBook&#8217;s dedicated graphics card, which in [...]
Related posts:<ol>
<li><a href='http://www.rxhost.co.uk/v1/solved-flash-and-firefox-on-mac-not-working-properly/' rel='bookmark' title='[Solved] Flash and Firefox on Mac not working properly'>[Solved] Flash and Firefox on Mac not working properly</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>As I mentioned in my <a title="Firefox and Flash Not Displaying on Mac" href="http://www.rxhost.co.uk/v1/solved-flash-and-firefox-on-mac-not-working-properly/">previous post</a>, I made the switch to a MacBook Pro for work purposes.</p>
<p>After having a chat with some friends and doing some checking around on the web for confirmation, it seems as if using Google Chrome was killing the battery on my Mac. I wasn&#8217;t expecting the advertised 7 hours, but at least around 4-5 hours of web browsing time. So, you can imagine my disappointment at getting only 2 -3 hours when using chrome.</p>
<p>It seems that for most typed of animation Chrome switches to using the MacBook&#8217;s dedicated graphics card, which in most cases was overkill and drained the battery unnecessarily. The Google Support forums didn&#8217;t offer much help in terms of an actual fix, however, they did lead me to a neat little app called <a title="Graphics Card Status App for Mac" href="http://codykrieger.com/gfxCardStatus">gfxCardStatus</a>.</p>
<p>The app lets you see which graphics processor you&#8217;re currently using (Integrated or Dedicated) and allows you to specify which one you&#8217;d like to use. You can even have it auto switch based on power supply. For example, use the integrated when on battery, and save power, and change to dynamic switching when you&#8217;re plugged in and power isn&#8217;t an issue.</p>
<p>If you have any experience with Chrome not playing nice with your battery or have a better solution, please leave a note in the comments. Thanks!</p>
<p>&nbsp;</p>
<p>Related posts:<ol>
<li><a href='http://www.rxhost.co.uk/v1/solved-flash-and-firefox-on-mac-not-working-properly/' rel='bookmark' title='[Solved] Flash and Firefox on Mac not working properly'>[Solved] Flash and Firefox on Mac not working properly</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.rxhost.co.uk/v1/is-google-chrome-killing-your-macbooks-battery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Solved] Flash and Firefox on Mac not working properly</title>
		<link>http://www.rxhost.co.uk/v1/solved-flash-and-firefox-on-mac-not-working-properly/</link>
		<comments>http://www.rxhost.co.uk/v1/solved-flash-and-firefox-on-mac-not-working-properly/#comments</comments>
		<pubDate>Sat, 15 Oct 2011 17:34:13 +0000</pubDate>
		<dc:creator>Chirag</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[mac os x lion]]></category>

		<guid isPermaLink="false">http://www.rxhost.co.uk/v1/?p=674</guid>
		<description><![CDATA[I recently made the switch from using a Windows and Linux (Ubuntu) set up to using a 15&#8243; MacBook Pro (Feb 2011 model). For most of the work I was doing, including web design, the mac seems to handle everything fine. However, I had a few issues with the Firefox and Chrome. With Firefox, flash just seeemed to appear as scrambled lines on the screen and I could barely watch videos or see any displayed data (e.g. in Google Analytics). After some careful Googling the fix that seemed to work was running Firefox in 32 Bit mode. Apparently, this is [...]
Related posts:<ol>
<li><a href='http://www.rxhost.co.uk/v1/is-google-chrome-killing-your-macbooks-battery/' rel='bookmark' title='Is Google Chrome Killing Your MacBook&#8217;s Battery?'>Is Google Chrome Killing Your MacBook&#8217;s Battery?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I recently made the switch from using a Windows and Linux (Ubuntu) set up to using a 15&#8243; MacBook Pro (Feb 2011 model).</p>
<p>For most of the work I was doing, including web design, the mac seems to handle everything fine. However, I had a few issues with the Firefox and <a title="Chrome and Macbook battery issues" href="http://www.rxhost.co.uk/v1/is-google-chrome-killing-your-macbooks-battery/">Chrome</a>.</p>
<p>With Firefox, flash just seeemed to appear as scrambled lines on the screen and I could barely watch videos or see any displayed data (e.g. in Google Analytics).</p>
<p>After some careful Googling the fix that seemed to work was running Firefox in 32 Bit mode.</p>
<p>Apparently, this is quite a common problem with the Firefox + Flash + Mac combination so I&#8217;m posting the fix, in the hope that it will help someone.</p>
<h2>The Solution</h2>
<p>Finder &gt; applications &gt; firefox &gt; get info &gt; check &#8220;open in 32 bit mode&#8221;</p>
<p>Then simple Command and Q on your keyboard to quit Firefox and restart it.</p>
<p>Related posts:<ol>
<li><a href='http://www.rxhost.co.uk/v1/is-google-chrome-killing-your-macbooks-battery/' rel='bookmark' title='Is Google Chrome Killing Your MacBook&#8217;s Battery?'>Is Google Chrome Killing Your MacBook&#8217;s Battery?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.rxhost.co.uk/v1/solved-flash-and-firefox-on-mac-not-working-properly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogging for Business</title>
		<link>http://www.rxhost.co.uk/v1/blogging-for-business/</link>
		<comments>http://www.rxhost.co.uk/v1/blogging-for-business/#comments</comments>
		<pubDate>Tue, 11 Oct 2011 23:18:38 +0000</pubDate>
		<dc:creator>Chirag</dc:creator>
				<category><![CDATA[Search Enginge Optimisation]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Blogs/WordPress]]></category>
		<category><![CDATA[Business Blogging]]></category>
		<category><![CDATA[customer interaction]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[Online Marketing]]></category>
		<category><![CDATA[search engine optimisation]]></category>
		<category><![CDATA[small business website]]></category>
		<category><![CDATA[UK WordPress Hosting]]></category>
		<category><![CDATA[WordPress Hosting]]></category>
		<category><![CDATA[WordPress Hosting UK]]></category>

		<guid isPermaLink="false">http://www.rxhost.co.uk/v1/?p=670</guid>
		<description><![CDATA[Business Blogging is something we&#8217;re seeing a lot of small (and larger) businesses adopt, in order to increase there exposure in the wilderness that is the Internet. To all our clients we recommend WordPress as our platform of choice when it comes to powering their online marketing, whether it&#8217;s a Business blog, or a full featured brochure site that explains all their services and offerings. Why should my Business blog? If you&#8217;re sitting there wondering if you should blog, the answer is YES! After setting up a number of blogs for our business customers, we&#8217;ve found that they&#8217;re able to [...]
Related posts:<ol>
<li><a href='http://www.rxhost.co.uk/v1/3-reasons-why-your-business-needs-a-facebook-page/' rel='bookmark' title='3 Reasons why your business needs a facebook page'>3 Reasons why your business needs a facebook page</a></li>
<li><a href='http://www.rxhost.co.uk/v1/uk-wordpress-hosting/' rel='bookmark' title='UK WordPress Hosting'>UK WordPress Hosting</a></li>
<li><a href='http://www.rxhost.co.uk/v1/how-do-i-set-up-a-wordpress-blog/' rel='bookmark' title='How do I set up a WordPress blog?'>How do I set up a WordPress blog?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Business Blogging is something we&#8217;re seeing a lot of small (and larger) businesses adopt, in order to increase there exposure in the wilderness that is the Internet.</p>
<p>To all our clients we recommend WordPress as our platform of choice when it comes to powering their online marketing, whether it&#8217;s a Business blog, or a full featured brochure site that explains all their services and offerings.</p>
<h2>Why should my Business blog?</h2>
<p>If you&#8217;re sitting there wondering if you should blog, the answer is YES! After setting up a number of blogs for our business customers, we&#8217;ve found that they&#8217;re able to reach a whole new audience, especially via social media and organic google searches, that it&#8217;s literally made their business worthwhile (even in the current economic climate).</p>
<h2>What should I blog about?</h2>
<p>This is where most business owners get stuck. I get it. You run a business and that&#8217;s what you&#8217;re good at. You&#8217;re not a writer, nor did you ask to be one, so what on earth could you possibly write on a blog? Well, anything really, anything about your business. I usually recommend that it&#8217;s best to provide value to your potential, and current, customers. Educate them. Tell them what&#8217;s going on in the industry, or even give them some tips on how they can use their products and services in a better or way.</p>
<p>For example, if you&#8217;re selling window washing liquid, write a blog post on how to clean a window in under 5 minutes. This gives you an opportunity to introduce proper technique (also known as providing value) as well as letting potential customers know about your product. The aim isn&#8217;t to sell, just educate. You&#8217;ll soon build up a following, who&#8217;ll come back regularly for your expert tips, and who knows, they may check out your products and buy something.</p>
<h2>How do I blog?</h2>
<p>Setting up a blog is pretty straight forward. Whilst there are a number of ways of setting up for free, for Business use we highly recommend you blog on your main website domain i.e yourcompanyname.co.uk or yourcompanyname.co.uk/blog. In order to do this you&#8217;ll need to have some <a title="Web Hosting" href="http://www.rxhost.co.uk/v1/uk-web-hosting/">WordPress Hosting</a> or <a title="Managed WordPress Hosting" href="http://www.rxhost.co.uk/v1/services/easy-wordpress-hosting-install/">Managed WordPress Hosting</a>. If you get your own hosting, you&#8217;ll have to install and set up WordPress yourself. Not having an in house tech team may mean you&#8217;d be better off with managed WordPress Hosting, which would normally include set up and ongoing technical support.</p>
<h2>What next?</h2>
<p>Once you&#8217;re all set up leave a link in the comments to your blog so others can see what you&#8217;re doing. If you have any questions or need and help feel free to leave a comment below or give us a call.</p>
<p>To those of you that already have a business blog, what impact has it made on your business?</p>
<p>Related posts:<ol>
<li><a href='http://www.rxhost.co.uk/v1/3-reasons-why-your-business-needs-a-facebook-page/' rel='bookmark' title='3 Reasons why your business needs a facebook page'>3 Reasons why your business needs a facebook page</a></li>
<li><a href='http://www.rxhost.co.uk/v1/uk-wordpress-hosting/' rel='bookmark' title='UK WordPress Hosting'>UK WordPress Hosting</a></li>
<li><a href='http://www.rxhost.co.uk/v1/how-do-i-set-up-a-wordpress-blog/' rel='bookmark' title='How do I set up a WordPress blog?'>How do I set up a WordPress blog?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.rxhost.co.uk/v1/blogging-for-business/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Transfer WordPress in 10 Easy Steps</title>
		<link>http://www.rxhost.co.uk/v1/transfer-wordpress-10-easy-steps/</link>
		<comments>http://www.rxhost.co.uk/v1/transfer-wordpress-10-easy-steps/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 02:17:32 +0000</pubDate>
		<dc:creator>Chirag</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Blogs/WordPress]]></category>
		<category><![CDATA[moving wordpress]]></category>
		<category><![CDATA[transfer wordpress]]></category>
		<category><![CDATA[UK WordPress Hosting]]></category>
		<category><![CDATA[WordPress Hosting]]></category>
		<category><![CDATA[WordPress Hosting UK]]></category>
		<category><![CDATA[wordpress transfer]]></category>
		<category><![CDATA[wordpress tutorial]]></category>

		<guid isPermaLink="false">http://www.rxhost.co.uk/v1/?p=641</guid>
		<description><![CDATA[This guide is a step by step to moving your WordPress powered blog or website. These instructions should help you if you&#8217;re trying to: - Transfer to a different directory on the same web host - Transfer from WordPress.com to WordPress.org (self hosted with a web hosting company) - Transfer from WordPress from one host to another host. There are a few different ways you can move WordPress, this is the simplest we&#8217;ve found. The step by step guide to transferring WordPress 1. Log in to your existing WordPress dashboard. 2. Select Tools &#62; Export, follow the steps shown on [...]
Related posts:<ol>
<li><a href='http://www.rxhost.co.uk/v1/wordpress-xml-rpc-settings/' rel='bookmark' title='WordPress and XML RPC &#8211; Settings'>WordPress and XML RPC &#8211; Settings</a></li>
<li><a href='http://www.rxhost.co.uk/v1/how-do-i-set-up-a-wordpress-blog/' rel='bookmark' title='How do I set up a WordPress blog?'>How do I set up a WordPress blog?</a></li>
<li><a href='http://www.rxhost.co.uk/v1/uk-wordpress-hosting/' rel='bookmark' title='UK WordPress Hosting'>UK WordPress Hosting</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This guide is a step by step to moving your WordPress powered blog or website.</p>
<p>These instructions should help you if you&#8217;re trying to:</p>
<p>- Transfer to a different directory on the same web host</p>
<p>- Transfer from WordPress.com to WordPress.org (self hosted with a <a title="Web Hosting" href="http://www.rxhost.co.uk">web hosting company</a>)</p>
<p>- Transfer from WordPress from one host to another host.</p>
<p>There are a few different ways you can move WordPress, this is the simplest we&#8217;ve found.</p>
<h2>The step by step guide to transferring WordPress</h2>
<p>1. Log in to your existing WordPress dashboard.</p>
<p>2. Select Tools &gt; Export, follow the steps shown on the screen. Save the download file somewhere you&#8217;ll be able to find it later.</p>
<p>3. Select Plugins and make a note of the plugins you have installed.</p>
<p>4. Select Appearance and make a note of the theme you are currently using.</p>
<p>4b. If you&#8217;re moving from one host to another or a different directory on the same host make sure you use File Manager on cPanel or FTP to download your theme folder from /wp-content/themes.</p>
<p>5. On your new host (or in the new directory on the same host) install WordPress &#8211; we recommend using Fantastico, Softaculous or Installatron to do this, if you host offers either of them.</p>
<p>6. Log in to your new WordPress&#8217; dashboard. (usually yourdomain.com/wp-admin if you installed in the root directory)</p>
<p>7. Select Tools &gt; Import &#8211; WordPress will ask you to install the WordPress importer &#8211; install it and activate it. You may then upload the file you downloaded earlier from Step 2. You need to follow the steps in the wizard, assign your posts to users. <strong>Make sure you check the box to download images and attachments.</strong></p>
<p>8. Use FTP or cPanel&#8217;s File manager to upload your theme folder to wp-content/themes/ for your new WordPress install.</p>
<p>9. In your new WordPress dashboard select Appearance and activate the theme you uploaded in the previous step.</p>
<p>You&#8217;ll need to install your plugins and configure them again &#8211; hopefully your wrote them down in Step 3.</p>
<p>10. Take a look at your WordPress site and make sure you&#8217;re happy that everything has transferred over properly. Oh, and don&#8217;t forget to compare your settings from one WordPress install to another to make sure you configure everything the same, especially those pesky permalinks (Settings &gt; Permalinks)</p>
<p>That&#8217;s it! Everything should be transferred and working.</p>
<h2>Need some help with your WordPress move?</h2>
<p>There are some scenarios where the above instructions would need some tweaking, for example if you are moving from one host to another and want to use the same domain name. If that&#8217;s your situation or you get stuck at any point please leave us a comment below and we&#8217;ll do our best to help.</p>
<h2>Let us move WordPress for you!</h2>
<p>If you&#8217;d rather not deal with moving WordPress yourself, why not let us handle the transfer for you? We offer a WordPress Transfer service for just £50. Just click the link below:</p>
<p><span style="color: #339966;"><a title="WordPress Transfer Service" href="https://www.rxhost.co.uk/home/cart.php?a=add&amp;pid=13"><span style="color: #339966;">Please transfer my WordPress for me</span></a></span></p>
<p><span class="Apple-style-span" style="font-size: 20px; font-weight: bold;"><strong>Free WordPress Transfer</strong></span></p>
<p>Choose <a title="RX Host" href="http://www.rxhost.co.uk">RX Host </a>for your <a title="UK WordPress Hosting" href="http://www.rxhost.co.uk/v1/uk-wordpress-hosting/">WordPress Hosting</a> needs and we&#8217;ll transfer one WordPress installation to your new hosting account with us for absolutely no charge!</p>
<p><a title="Web Hosting" href="http://www.rxhost.co.uk/v1/uk-web-hosting/">View our plans</a> here or <a title="Order Web Hosting" href="https://www.rxhost.co.uk/home/cart.php?a=add&amp;pid=6">order our budget plan now</a></p>
<p>Related posts:<ol>
<li><a href='http://www.rxhost.co.uk/v1/wordpress-xml-rpc-settings/' rel='bookmark' title='WordPress and XML RPC &#8211; Settings'>WordPress and XML RPC &#8211; Settings</a></li>
<li><a href='http://www.rxhost.co.uk/v1/how-do-i-set-up-a-wordpress-blog/' rel='bookmark' title='How do I set up a WordPress blog?'>How do I set up a WordPress blog?</a></li>
<li><a href='http://www.rxhost.co.uk/v1/uk-wordpress-hosting/' rel='bookmark' title='UK WordPress Hosting'>UK WordPress Hosting</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.rxhost.co.uk/v1/transfer-wordpress-10-easy-steps/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Enhance your WordPress Security</title>
		<link>http://www.rxhost.co.uk/v1/enhance-your-wordpress-security/</link>
		<comments>http://www.rxhost.co.uk/v1/enhance-your-wordpress-security/#comments</comments>
		<pubDate>Thu, 11 Aug 2011 18:35:17 +0000</pubDate>
		<dc:creator>Chirag</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Secure WordPress]]></category>
		<category><![CDATA[UK WordPress Hosting]]></category>
		<category><![CDATA[WordPress Hosting]]></category>
		<category><![CDATA[WordPress Hosting UK]]></category>
		<category><![CDATA[wordpress plugins]]></category>
		<category><![CDATA[WordPress Security]]></category>

		<guid isPermaLink="false">http://www.rxhost.co.uk/v1/?p=636</guid>
		<description><![CDATA[WordPress is ever-growing into a fully fledged Content Management System with some great functionality. According to the founder of WordPress, almost 12% of all websites on the internet are powered by WordPress. Given that WordPress is so easy and intuitive to use, a number of users just starting out are not focusing on ensuring their WordPress installation is completely up to date and secure. Recently we&#8217;ve seen an increase in users having their WordPress hacked as a result of not upgrading to the latest version, or having out of date WordPress themes or plugins. Upgrading is just the first step [...]
Related posts:<ol>
<li><a href='http://www.rxhost.co.uk/v1/wordpress-3-3-released-how-to-upgrade/' rel='bookmark' title='WordPress 3.3 released &#8211; how to upgrade'>WordPress 3.3 released &#8211; how to upgrade</a></li>
<li><a href='http://www.rxhost.co.uk/v1/transfer-wordpress-10-easy-steps/' rel='bookmark' title='Transfer WordPress in 10 Easy Steps'>Transfer WordPress in 10 Easy Steps</a></li>
<li><a href='http://www.rxhost.co.uk/v1/how-do-i-set-up-a-wordpress-blog/' rel='bookmark' title='How do I set up a WordPress blog?'>How do I set up a WordPress blog?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>WordPress is ever-growing into a fully fledged Content Management System with some great functionality. According to the founder of WordPress, almost 12% of all websites on the internet are powered by WordPress. </p>
<p>Given that WordPress is so easy and intuitive to use, a number of users just starting out are not focusing on ensuring their WordPress installation is completely up to date and secure. Recently we&#8217;ve seen an increase in users having their WordPress hacked as a result of not upgrading to the latest version, or having out of date WordPress themes or plugins.</p>
<p>Upgrading is just the first step to running a secure WordPress website or blog. We&#8217;ve got three plugins that we&#8217;d like to recommend to you install on your blog to enhance your WordPress security.</p>
<p>1.<a href="http://wordpress.org/extend/plugins/wp-db-backup/" title="WordPress Database Backup" target="_blank"> WP-DB-Backup</a><br />
WordPress Database Backup allows you to quickly and easily backup your WordPress database at will, or per schedule. We strongly advise you to install the plugin, take a backup today and set a schedule to back up your database at least once a week. If you update your blog regularly, then backing up the database once a day would be a really good idea.</p>
<p>2. <a href="http://wordpress.org/extend/plugins/login-lockdown/" title="WordPress Login Lockdown" target="_blank">Login Lockdown</a><br />
This plugin helps protect your blog against malicious attempts to log in to your blog. If it detects someone trying to log in by guessing, it&#8217;ll ban their IP and stop them accessing the site for a set period of time.</p>
<p>3. <a href="http://wordpress.org/extend/plugins/wp-security-scan/" title="WordPress Security Scan" target="_blank">WP Security Scan</a><br />
WordPress Security Scan will take a look at your WordPress installation and make suggestions as to how you can further secure your WordPress</p>
<p>4. Admin Username and Password<br />
This isn&#8217;t a plugin, but rather some good old RX Host advice. Please please please make sure your admin area username is not just &#8220;admin&#8221; or &#8220;administrator&#8221;. Use something unique, not your name, or something others can guess easily.</p>
<p>After that it&#8217;s usually a good idea to make sure your password is strong. Aim for at least 6 characters and include at least one capital letter, one lowercase letter, one numerical character, one special character (@&#8217;#!. etc)</p>
<p>If you need <a href="http://www.rxhost.co.uk/v1/uk-wordpress-hosting/" title="UK WordPress Hosting">WordPress Hosting</a> make sure you check out our <a href="http://www.rxhost.co.uk/v1/uk-web-hosting/" title="Web Hosting">UK Web Hosting Plans</a>. If you&#8217;re not sure what you need or would like some friendly advice, please leave a comment below or contact us via the <a href="http://www.rxhost.co.uk/v1/contact/" title="Contact RX Host">contact page</a> today! </p>
<p>Related posts:<ol>
<li><a href='http://www.rxhost.co.uk/v1/wordpress-3-3-released-how-to-upgrade/' rel='bookmark' title='WordPress 3.3 released &#8211; how to upgrade'>WordPress 3.3 released &#8211; how to upgrade</a></li>
<li><a href='http://www.rxhost.co.uk/v1/transfer-wordpress-10-easy-steps/' rel='bookmark' title='Transfer WordPress in 10 Easy Steps'>Transfer WordPress in 10 Easy Steps</a></li>
<li><a href='http://www.rxhost.co.uk/v1/how-do-i-set-up-a-wordpress-blog/' rel='bookmark' title='How do I set up a WordPress blog?'>How do I set up a WordPress blog?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.rxhost.co.uk/v1/enhance-your-wordpress-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

