<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[NuBlue]]></title>
		<link>http://www.nublue.co.uk/forums/</link>
		<description><![CDATA[The most recent topics at NuBlue.]]></description>
		<lastBuildDate>Sat, 07 Apr 2012 15:46:55 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[WORDPRESS / Database - can somebody give me a quick hand?]]></title>
			<link>http://www.nublue.co.uk/forums/topic/381/wordpress-database-can-somebody-give-me-a-quick-hand/new/posts/</link>
			<description><![CDATA[<p>Hello,</p><p>I&#039;ve installed WordPress on a number of domains in the past, on both Plesk Parallels and Cpanel.&nbsp; However, not for a while!&nbsp; I&#039;m trying to install one now for a client who has their hosting with you.</p><p>I&#039;m in their control panel and I&#039;ve created a database in the relevant section of the site - but obviously, I need to create a user for it now.&nbsp; How do I do that?&nbsp; I can&#039;t work out where/how!</p><p>Thanks for any advice in advance.</p><p>Carly.</p>]]></description>
			<author><![CDATA[dummy@example.com (NuBlue-Paul)]]></author>
			<pubDate>Sat, 07 Apr 2012 15:46:55 +0000</pubDate>
			<guid>http://www.nublue.co.uk/forums/topic/381/wordpress-database-can-somebody-give-me-a-quick-hand/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[ADDING A ROBOTS.TXT FILE TO YOUR MAGENTO STORE]]></title>
			<link>http://www.nublue.co.uk/forums/topic/318/adding-a-robotstxt-file-to-your-magento-store/new/posts/</link>
			<description><![CDATA[<h2><span style="color: BROWN">ADDING A ROBOTS.TXT FILE TO YOUR MAGENTO STORE</span></h2><br /><p>A web-robot or robot can be described as a program that executes a specific function automatically on the web; be it for search engine indexing or for HTML and link validation. Googlebot and Bingbot are two of the most common web-robots.</p><p>Bandwidth is the measure of data that is sent across the Internet, each time a person visits your website a portion of bandwidth is used. The same applies for web-robots; each time a web-robot visits your site they use a small portion of bandwidth.</p><p>Ordinarily the bandwidth that web-robots use is relatively small, but web-robots can sometimes be seen to consume gigabytes of bandwidth which can be a problem for those with bandwidth limits to adhere to with their hosting providers.</p><p>Whilst your website being visited regularly by web-robots is by no means a bad thing, it can in fact be perfectly normal if you are regularly adding new content to your website, problems arise when web-robots become stuck in infinite loops on your website. These infinite loops can be caused by custom scripts, but are most often caused when Session ID&#039;s are served with each URL that is indexed. The constant activity of web-robots on your site trapped in an infinite loop is what can sometimes cause such heavy bandwidth usage.</p><p>A robots.txt file is a simple text file that sits in your web root folder and can be used to control the web-robots allowed to visit your website. Additionally, a robots.txt file further allows you to control what web-robots can view during that visit. This means by controlling the web-robots that visit your site, you can prevent certain directories from being indexed by a web-robot which can in turn provide SEO benefits by preventing duplicated content from being indexed. Furthermore, a robots.txt also allows you to specify a Crawl-Delay in order to restrict a web-robot from constantly indexing and crawling your website, helping to reduce the footprint they make on your bandwidth allocation.</p><p>For your convenience, we have included a widely available robots.txt file for use with Magento which is beneficial both in terms of improving your SEO as well as reducing bandwidth usage and server load. </p><div style="padding: 10px 0 10px 0;"><pre class="brush: plain;"># $Id: robots.txt,v magento-specific 2010/28/01 18:24:19 goba Exp $
#
# robots.txt
#
# This file is to prevent the crawling and indexing of certain parts
# of your site by web crawlers and spiders run by sites like Yahoo!
# and Google. By telling these ?robots? where not to go on your site,
# you save bandwidth and server resources.
#
# This file will be ignored unless it is at the root of your host:
# Used:  http://example.com/robots.txt
# Ignored: http://example.com/site/robots.txt
#
# For more information about the robots.txt standard, see:
# http://www.robotstxt.org/wc/robots.html
#
# For syntax checking, see:
# http://www.sxw.org.uk/computing/robots/check.html
# Website Sitemap
# Sitemap: http://www.mywebsite.com/sitemap.xml

# Crawlers Setup
User-agent: *
Crawl-delay: 30
# Allowable Index
Allow: /*?p=
Allow: /index.php/blog/
Allow: /catalog/seo_sitemap/category/
Allow: /catalogsearch/result/
Allow: /media/
# Directories
Disallow: /404/
Disallow: /app/
Disallow: /cgi-bin/
Disallow: /downloader/
Disallow: /errors/
Disallow: /includes/
Disallow: /js/
Disallow: /lib/
Disallow: /magento/
Disallow: /pkginfo/
Disallow: /report/
Disallow: /scripts/
Disallow: /shell/
Disallow: /skin/
Disallow: /stats/
Disallow: /var/
# Paths (clean URLs)
Disallow: /index.php/
Disallow: /catalog/product_compare/
Disallow: /catalog/category/view/
Disallow: /catalog/product/view/
Disallow: /catalogsearch/
Disallow: /checkout/
Disallow: /control/
Disallow: /contacts/
Disallow: /customer/
Disallow: /customize/
Disallow: /newsletter/
Disallow: /poll/
Disallow: /review/
Disallow: /sendfriend/
Disallow: /tag/
Disallow: /wishlist/
# Files
Disallow: /cron.php
Disallow: /cron.sh
Disallow: /error_log
Disallow: /install.php
Disallow: /LICENSE.html
Disallow: /LICENSE.txt
Disallow: /LICENSE_AFL.txt
Disallow: /STATUS.txt
# Paths (no clean URLs)
Disallow: /*.js$
Disallow: /*.css$
Disallow: /*.php$
Disallow: /*?p=*&amp;
Disallow: /*?SID= 
Disallow: /*?limit=all

# Uncomment if you do not wish for Google to index your images
#User-agent: Googlebot-Image
#Disallow: / 
 </pre></div><p>Full credit for the above robots.txt file goes to its original creator. Discussion on the robots.txt file can be found within <a href="http://www.magentocommerce.com/boards/viewthread/220943/" rel="nofollow">this</a> thread on the Magento Community Forums.</p><br /><p>To install the robots.txt file to your domain, you can follow these few simple steps:</p><p><strong>Step 1:</strong> Download the <strong>robots.txt</strong> file to your computer by clicking <strong><a href="http://config.nubaloo.co.uk/scripts/robots.txt" rel="nofollow">here</a></strong>.</p><p><strong>Step 2:</strong> If your Magento is installed within a sub-directory you will need to modify the <strong>robots.txt</strong> file accordingly. For example, you would need to change <strong>&#039;Disallow: /404/&#039;</strong> to <strong>&#039;Disallow: /your-sub-directory/404/&#039;</strong> and <strong>&#039;Disallow: /app/&#039;</strong> to <strong>&#039;Disallow: /your-sub-directory/app/&#039;</strong> and so on and so forth...</p><p><strong>Step 3:</strong> If your domain has a <strong>sitemap.xml</strong>, you can uncomment line <strong>number 21</strong> of the <strong>robots.txt</strong> file and include the URL to your <strong>sitemap.xml</strong>.</p><p><strong>Step 4:</strong> Upload the <strong>robots.txt</strong> file to your web-root folder. This can be done by placing the file within your <strong>&#039;httpdocs/&#039;</strong> directory either by logging into your Plesk Hosting Control Panel with your credentials, or through your FTP client of choice.</p><p>If you have any feedback on the above robots.txt file, feel free to leave a post below. It would be good to discuss and improve the above robots.txt file for the benefit of everyone.</p>]]></description>
			<author><![CDATA[dummy@example.com (RCGifts)]]></author>
			<pubDate>Thu, 05 Apr 2012 09:30:15 +0000</pubDate>
			<guid>http://www.nublue.co.uk/forums/topic/318/adding-a-robotstxt-file-to-your-magento-store/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Magento migrate or synchronise from local to remote]]></title>
			<link>http://www.nublue.co.uk/forums/topic/375/magento-migrate-or-synchronise-from-local-to-remote/new/posts/</link>
			<description><![CDATA[<p>Just wanted to see if anyone can offer any advice for migrating or synchronising Magento with a local test server to a remote server...?</p><p>Basically, I would like to work on my site locally and was wondering whether its possible to simply synchronise my local site with the remote server every so often...? I&#039;ve read a few guides on migration from local to remote, but it seems a fairly lengthy and involved process, so it&#039;s probably not something you would want to do very often.</p>]]></description>
			<author><![CDATA[dummy@example.com (benekski)]]></author>
			<pubDate>Sat, 25 Feb 2012 19:54:25 +0000</pubDate>
			<guid>http://www.nublue.co.uk/forums/topic/375/magento-migrate-or-synchronise-from-local-to-remote/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Image not showing in Magento Admin editors]]></title>
			<link>http://www.nublue.co.uk/forums/topic/374/image-not-showing-in-magento-admin-editors/new/posts/</link>
			<description><![CDATA[<p>When I insert an image into an editor in my Magento admin control panel, I&#039;m just seeing the blue box with a question mark in. However, the image displays fine on the actual website, just not in the admin control panel. Does anyone know why it would do this...?</p>]]></description>
			<author><![CDATA[dummy@example.com (benekski)]]></author>
			<pubDate>Sat, 25 Feb 2012 12:44:44 +0000</pubDate>
			<guid>http://www.nublue.co.uk/forums/topic/374/image-not-showing-in-magento-admin-editors/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Maintenance mode]]></title>
			<link>http://www.nublue.co.uk/forums/topic/373/maintenance-mode/new/posts/</link>
			<description><![CDATA[<p>Does anybody know how to put a Magento 1.6.2.0 site into maintenance mode? </p><p>I&#039;ve seen the Maintenance Page - ArtsOn.IT add-on, but by all accounts it doesn&#039;t work on 1.6.2.0. I&#039;ve also seen the one by Balke Technologies, but Magento gives me an &quot;Invalid channel.xml file&quot; alert when I insert the key for that one.</p>]]></description>
			<author><![CDATA[dummy@example.com (benekski)]]></author>
			<pubDate>Sat, 25 Feb 2012 09:47:59 +0000</pubDate>
			<guid>http://www.nublue.co.uk/forums/topic/373/maintenance-mode/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Magento Store Email addresses]]></title>
			<link>http://www.nublue.co.uk/forums/topic/372/magento-store-email-addresses/new/posts/</link>
			<description><![CDATA[<p>In Configuration -&gt; Store Email Addresses -&gt; Contact, when you input a Sender Email, does Magento actually use this address to send the message when it has no other details about that mail account?</p><p>The reason for my confusion is that when testing, I tried a couple of times to enter a non existent mail box and the messages came through</p>]]></description>
			<author><![CDATA[dummy@example.com (NuBlue-Luke)]]></author>
			<pubDate>Fri, 24 Feb 2012 12:49:37 +0000</pubDate>
			<guid>http://www.nublue.co.uk/forums/topic/372/magento-store-email-addresses/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Favicon advice]]></title>
			<link>http://www.nublue.co.uk/forums/topic/371/favicon-advice/new/posts/</link>
			<description><![CDATA[<p>Hi, I have a question regarding the favicon... it seems to disappear when I access the site via a redirected url, but appears when I access the site directly. Could anyone tell me where I might be able to find some information about how to resolve this? I would like to keep my favicon when entering the site via a redirected url. </p><p>Thank you</p>]]></description>
			<author><![CDATA[dummy@example.com (NuBlue-Ewan)]]></author>
			<pubDate>Thu, 23 Feb 2012 11:43:01 +0000</pubDate>
			<guid>http://www.nublue.co.uk/forums/topic/371/favicon-advice/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Updating Domain Administrator Logins in your Plesk Control Panel]]></title>
			<link>http://www.nublue.co.uk/forums/topic/370/updating-domain-administrator-logins-in-your-plesk-control-panel/new/posts/</link>
			<description><![CDATA[<p>Updating the password for any Domain Administrator accounts that you have enabled for particular domains is very easy, and largely depends on what version of Plesk you are using.&nbsp; Your control panel should always tell you the version you are using on the first page you see when you log in; as the directions for updating the password change from one panel version to another, you should also be able to discover this by following the appropriate directions below.</p><p><strong>Plesk 8.x</strong></p><p>Click on <em>Domains</em> under <em>General</em> in the left hand navigation bar.</p><p>Click on the domain you would like to update the Domain Administrator password for.</p><p>Click on <em>Domain Administrator</em> under <em>Domain</em>.</p><p>Under <em>Preferences</em> you can enter the new password, twice.&nbsp; Scroll down and click on <em>OK</em>.&nbsp; The password has now been changed.</p><p>Please note you can also disable Domain Administrator access on this page.</p><p><strong>Plesk 9.x</strong></p><p>Click on <em>Domains</em> under <em>Main Menu</em> in the left hand navigation bar.</p><p>Click on the domain you would like to update the Domain Administrator password for.</p><p>Click on <em>Domain Administrator Access</em> under <em>Domain Administration</em>.</p><p>Under <em>Preferences</em> you can enter the new password, twice.&nbsp; Scroll down and click on <em>OK</em>.&nbsp; The password has now been changed.</p><p>Please note you can also disable Domain Administrator access on this page.</p><p><strong>Password Best Practices</strong></p><p>There are a few tips we would strongly suggest you use when updating <em>any</em> passwords.</p><p>We recommend that you use a solution such as <a href="http://keepass.info/" rel="nofollow">Keepass</a> or <a href="https://lastpass.com/" rel="nofollow">LastPass</a> to save your passwords.&nbsp; This is in preference to making your passwords memorable, or saving them in your browser.</p><p>Both solutions can autogenerate secure passwords for you - we recommend you use this feature.</p><p>Passwords should be at least 8 characters in length, and use a mixture of upper and lower case letters, as well as numerics.&nbsp; Passwords such as <em>letmein</em> or <em>123456</em> are an invitation to be compromised!</p>]]></description>
			<author><![CDATA[dummy@example.com (NuBlue-Ewan)]]></author>
			<pubDate>Wed, 22 Feb 2012 15:32:15 +0000</pubDate>
			<guid>http://www.nublue.co.uk/forums/topic/370/updating-domain-administrator-logins-in-your-plesk-control-panel/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[How do I update FTP passwords for my domains?]]></title>
			<link>http://www.nublue.co.uk/forums/topic/369/how-do-i-update-ftp-passwords-for-my-domains/new/posts/</link>
			<description><![CDATA[<p>Updating FTP passwords for individual domains is very easy, and largely depends on what version of Plesk you are using.&nbsp; Your control panel should always tell you the version you are using on the first page you see when you log in; as the directions for updating the password change from one panel version to another, you should also be able to discover this by following the appropriate directions below.</p><p><strong>Plesk 8.x</strong></p><p>Click on <em>Domains</em> under <em>General</em> in the left hand navigation bar.</p><p>Click on the domain you would like to update the FTP password for.</p><p>Click on <em>Setup</em> under <em>Hosting</em>.</p><p>Under <em>Account Preferences</em> you can enter the new password, twice.&nbsp; Scroll down and click on <em>OK</em>.&nbsp; The password has now been changed.</p><p><strong>Plesk 9.x</strong></p><p>Click on <em>Domains</em> under <em>Main Menu</em> in the left hand navigation bar.</p><p>Click on the domain you would like to update the FTP password for.</p><p>Click on <em>Web Hosting Settings</em> under <em>Web Site</em>.</p><p>Under <em>Account Preferences</em> you can enter the new password, twice.&nbsp; Scroll down and click on <em>OK</em>.</p><p>The password has now been changed.</p><p><strong>Plesk 10.x</strong></p><p>Click on <em>Subscriptions</em> under <em>Hosting Services</em> in the left hand navigation bar.</p><p>Click on the subscription that contains the domain(s) you would like to update the FTP password for.</p><p>Click on <em>Open in Control Panel</em>, then <em>Websites &amp; Domains</em>.</p><p>Click on <em>FTP Access</em>, then click on the FTP user that you would like to update the password for.</p><p>Enter the new password, twice, then click on <em>OK</em>.</p><p>The password has now been updated.</p><p><strong>Password Best Practices</strong></p><p>There are a few tips we would strongly suggest you use when updating <em>any</em> passwords.</p><p>We recommend that you use a solution such as <a href="http://keepass.info/" rel="nofollow">Keepass</a> or <a href="https://lastpass.com/" rel="nofollow">LastPass</a> to save your passwords.&nbsp; This is in preference to making your passwords memorable, or saving them in your browser.</p><p>Both solutions can autogenerate secure passwords for you - we recommend you use this feature.</p><p>Passwords should be at least 8 characters in length, and use a mixture of upper and lower case letters, as well as numerics.&nbsp; Passwords such as <em>letmein</em> or <em>123456</em> are an invitation to be compromised!</p>]]></description>
			<author><![CDATA[dummy@example.com (NuBlue-Ewan)]]></author>
			<pubDate>Wed, 22 Feb 2012 15:19:46 +0000</pubDate>
			<guid>http://www.nublue.co.uk/forums/topic/369/how-do-i-update-ftp-passwords-for-my-domains/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[How do I update a Client Account Password in my Plesk Control Panel?]]></title>
			<link>http://www.nublue.co.uk/forums/topic/368/how-do-i-update-a-client-account-password-in-my-plesk-control-panel/new/posts/</link>
			<description><![CDATA[<p>Updating the password for a Client Account in your Plesk Control Panel depends on two things; how you are logging in, and what version of Plesk you are logging in to!</p><p><strong>I&#039;m logging in as an Admin User</strong></p><p>It&#039;s quite easy to determine if you&#039;re logging in as an admin user (your username is.... admin!).</p><p>The version of Plesk you are using is usually displayed on the first page you see when you log in.&nbsp; If this is not the case, just follow the relevant instructions below.</p><p><strong>Plesk 8.x</strong></p><p>Once you&#039;ve logged in, click on <em>Clients</em> under <em>General</em> in your left hand navigation bar.</p><p>Click on the Client that you want to update the password for.</p><p>Click on <em>Edit</em> under <em>Tools</em>.</p><p>Enter the new password, twice, and click on <em>OK</em>.&nbsp; The password has now been changed.</p><p>Note that, as an Admin user, you can also change the Client Username on this page if you wish.</p><p><strong>Plesk 9.x</strong></p><p>Once you&#039;ve logged in, click on <em>Clients</em> in your left hand navigation bar.</p><p>Click on the Client that you want to update the password for.</p><p>Click on <em>Change Password</em> under <em>Account</em>.</p><p>Enter the new password, twice, and click on <em>OK</em>.&nbsp; The password has now been changed.</p><p>Note that, as an Admin user, you can also change the Client Username on this page if you wish.</p><p><strong>Plesk 10.x</strong></p><p>Within Plesk 10.x, the concept of Client logins has changed slightly.</p><p>You now have <em>Customers</em> and <em>Resellers</em>.</p><p>To update a <em>Customer</em> password, click on <em>Customers</em> under <em>Hosting Services</em>.</p><p>Click on <em>Change Login Info</em>.</p><p>Enter the new password, twice, and click on <em>OK</em>.&nbsp; The Panel will give you an indication of the relative strength of the password you have chosen.&nbsp; Once you have clicked on OK, the password will have changed.</p><p>Note that, as an Admin user, you can also change the Username on this page if you wish.</p><p>The process for <em>Resellers</em> is identical, however you have to click on <em>Resellers</em> instead of <em>Customers</em>.</p><p><strong>I&#039;m logging in as a Client User</strong></p><p>Again it&#039;s relatively simple to work out if you&#039;re logging in as a Client User.&nbsp; Is your username admin?&nbsp; No?&nbsp; Read on..</p><p>The version of Plesk you are using is usually displayed on the first page you see when you log in.&nbsp; If this is not the case, just follow the relevant instructions below.</p><p><strong>Plesk 8.x</strong></p><p>Once you&#039;ve logged in, click on <em>Home</em> under <em>General</em> in the left hand navigation bar.</p><p>Click on <em>Edit</em> under <em>Tools</em>.</p><p>Enter your new password, twice, and click on <em>OK</em>.&nbsp; The password has now been changed.</p><p>Note that if you want to change your username, you will need to contact an Admin user to make this change.</p><p><strong>Plesk 9.x</strong></p><p>Once you&#039;ve logged in, click on <em>Change Password</em> under <em>Account</em>.&nbsp; You may need to click on <em>Home</em> under <em>Main Menu</em> in the left hand navigation bar to see this option.</p><p>Enter your new password, twice, and click on <em>OK</em>.&nbsp; The password has now been changed.</p><p>Note that if you want to change your username, you will need to contact an Admin user to make this change.</p><p><strong>Plesk 10.x</strong></p><p>Log into your panel.&nbsp; Click on <em>Account</em> then click on <em>My Profile</em>.</p><p>Enter the new password, twice, and click on <em>OK</em>.&nbsp; The Panel will give you an indication of the relative strength of the password you have chosen.&nbsp; Once you have clicked on OK, the password will have changed.</p><p>Note that you can also change the control panel language on this page if you wish.</p><p><strong>Password Best Practices</strong></p><p>There are a few tips we would strongly suggest you use when updating <em>any</em> passwords.</p><p>We recommend that you use a solution such as <a href="http://keepass.info/" rel="nofollow">Keepass</a> or <a href="https://lastpass.com/" rel="nofollow">LastPass</a> to save your passwords.&nbsp; This is in preference to making your passwords memorable, or saving them in your browser.</p><p>Both solutions can autogenerate secure passwords for you - we recommend you use this feature.</p><p>Passwords should be at least 8 characters in length, and use a mixture of upper and lower case letters, as well as numerics.&nbsp; Passwords such as <em>letmein</em> or <em>123456</em> are an invitation to be compromised!</p>]]></description>
			<author><![CDATA[dummy@example.com (NuBlue-Ewan)]]></author>
			<pubDate>Wed, 22 Feb 2012 14:53:38 +0000</pubDate>
			<guid>http://www.nublue.co.uk/forums/topic/368/how-do-i-update-a-client-account-password-in-my-plesk-control-panel/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[How do I update my Admin Password for my Plesk Control Panel?]]></title>
			<link>http://www.nublue.co.uk/forums/topic/367/how-do-i-update-my-admin-password-for-my-plesk-control-panel/new/posts/</link>
			<description><![CDATA[<p>The process for updating the password for the Admin User for your Plesk Control Panel differs depending on the version of Plesk you are using - Plesk 8.x, Plesk 9.x, or Plesk 10.x.&nbsp; Your control panel should always tell you the version you are using on the first page you see when you log in; as the directions for updating the password change from one panel version to another, you should also be able to discover this by following the appropriate directions below.</p><p><strong>Updating for a Plesk 8.x</strong></p><p>Under the <em>System</em> tab in your left hand navigation bar, click on <em>Server</em>.</p><p>Under <em>Administrator information</em>, click on <em>Change Password</em>.</p><p>Enter the old password, then the new password (twice).&nbsp; Click on <em>OK</em>.</p><p>That&#039;s it - you&#039;ve now updated the password.</p><p><strong>Updating for a Plesk 9.x</strong></p><p>Click on <em>Settings</em> in your left hand navigation bar.</p><p>Under <em>Administrator Account</em>, click on <em>Change Password</em>.</p><p>Enter the old password, then the new password (twice).&nbsp; Click on <em>OK</em>.</p><p>That&#039;s it - you&#039;ve now updated the password.</p><p><strong>Updating for a Plesk 10.x</strong></p><p>Under <em>My Profile</em> in your left hand navigation bar, click on <em>Change Password</em>.</p><p>Enter the old password, then the new password (twice).&nbsp; The Panel will provide you with an indication of the security of your password.&nbsp; Click on <em>OK</em>.</p><p>That&#039;s it - you&#039;ve now updated the password.</p><p><strong>Password Best Practices</strong></p><p>There are a few tips we would strongly suggest you use when updating <em>any</em> passwords.</p><p>We recommend that you use a solution such as <a href="http://keepass.info/" rel="nofollow">Keepass</a> or <a href="https://lastpass.com/" rel="nofollow">LastPass</a> to save your passwords.&nbsp; This is in preference to making your passwords memorable, or saving them in your browser.</p><p>Both solutions can autogenerate secure passwords for you - we recommend you use this feature.</p><p>Passwords should be at least 8 characters in length, and use a mixture of upper and lower case letters, as well as numerics.&nbsp; Passwords such as <em>letmein</em> or <em>123456</em> are an invitation to be compromised!</p>]]></description>
			<author><![CDATA[dummy@example.com (NuBlue-Ewan)]]></author>
			<pubDate>Wed, 22 Feb 2012 13:38:05 +0000</pubDate>
			<guid>http://www.nublue.co.uk/forums/topic/367/how-do-i-update-my-admin-password-for-my-plesk-control-panel/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[How do I update DNS for domains I have registered with NuBlue?]]></title>
			<link>http://www.nublue.co.uk/forums/topic/287/how-do-i-update-dns-for-domains-i-have-registered-with-nublue/new/posts/</link>
			<description><![CDATA[<p>To host a domain with NuBlue, you will first need to create the web space for the domain name on the web server.&nbsp; If you don?t know how to do this, please use <a href="http://www.nublue.co.uk/forums/post/687/#p687" rel="nofollow">this guide</a>.</p><p>If the domain has been registered or transferred to NuBlue, then you will be able to update your DNS through your Billing Control Panel.</p><p>Log in to your Billing Control Panel, and then under the Packages tab, click on Domains.&nbsp; Click on the domain name that you wish to update, and then click on &#039;Edit DNS Settings&#039;.</p><p>If &#039;Use Registrar as DNS&#039; is set to &#039;Yes&#039;, select &#039;No&#039; and then click on &#039;Save Changes&#039;.&nbsp; You will then need to click on &#039;Edit DNS Settings&#039; again.</p><p>Check that &#039;Use Registrar as DNS&#039; is set to &#039;No&#039;.&nbsp; If it is, then simply update the DNS entries to the correct values.</p><p>Your DNS will have been sent to you in your original Welcome email.&nbsp; If you do not have this email or you are unsure please contact us and we will advise you accordingly.</p><p>Clients who have purchased Shared Hosting since 24/11/10 can use the following DNS:</p><p>ns1.nufuturenet.com<br />ns2.nufuturenet.com</p><p>Once you have done this, click on &#039;Save Changes&#039;, and your DNS will now be updated.</p><p>Please bear in mind that it will usually take up to 24 hours for any DNS changes to take effect.</p>]]></description>
			<author><![CDATA[dummy@example.com (NuBlue-Luke)]]></author>
			<pubDate>Wed, 15 Feb 2012 14:14:53 +0000</pubDate>
			<guid>http://www.nublue.co.uk/forums/topic/287/how-do-i-update-dns-for-domains-i-have-registered-with-nublue/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Hello from sushisushi.co.uk]]></title>
			<link>http://www.nublue.co.uk/forums/topic/363/hello-from-sushisushicouk/new/posts/</link>
			<description><![CDATA[<p>Hi Guys, just realised we&#039;ve not said hi hear and showed off our new magento store. We launched in 2007 and went magento 4 months back.</p><p>All feedback apreciated!</p><p><a href="http://www.sushisushi.co.uk" rel="nofollow">http://www.sushisushi.co.uk</a></p>]]></description>
			<author><![CDATA[dummy@example.com (sushisushi)]]></author>
			<pubDate>Sun, 12 Feb 2012 19:53:41 +0000</pubDate>
			<guid>http://www.nublue.co.uk/forums/topic/363/hello-from-sushisushicouk/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Creating a development copy of your Magento Store]]></title>
			<link>http://www.nublue.co.uk/forums/topic/232/creating-a-development-copy-of-your-magento-store/new/posts/</link>
			<description><![CDATA[<p><span class="bbu">How to Create a Duplicate (Testing/Development) Magento Store on a VPS</span></p><p>Please note we do not accept any responsibility for any unintended consequence of following or failing to follow these instructions.&nbsp; These instructions if followed correctly will duplicate your current Magento store without harming it in any way.&nbsp; However failure to follow these instructions correctly could result in significant harm to your live install.&nbsp; If you are not confident following these instructions then you should not undertake this HowTo.&nbsp; </p><p>We offer this as a professional service - if you wish for us to undertake this duplication please contact us via the usual support channels.</p><p><strong>Requirements :</strong></p><p>Your live site should be fully backed up before attempting this<br />DNS is pointing at the VPS<br />Shell access<br />Magento is in web root. If the Magento install is not in web root then you will need to add the subdirectory to all the file paths.</p><p><strong>Step 1 : Create the domain in Plesk</strong></p><p>Create New Domain of the format : dev.domain_name.com where your live domain is <strong>domain_name.com</strong></p><p>Add a database<br />Make a note of all login details.<br /> (<a href="http://www.nublue.co.uk/support/how_to_create_new_hosting_accounts_in_plesk" rel="nofollow">Further information if required</a>)</p><p><strong>Step 2 : Access the shell</strong></p><p>Ensure /bin/bash shell access is enabled in your Hosting Account (Setup -&gt; Shell access to server with FTP user&#039;s credentials - /bin/bash)<br />Access your VPS using <a href="http://www.nublue.co.uk/support/how_to_download_and_install_putty" rel="nofollow">Putty</a> logging in as the new domain user.</p><p><strong>Step 3 : Duplicate files</strong></p><p>Shell Commands :</p><p>You will need to replace DEV.DOMAIN_NAME.COM and DOMAIN_NAME.COM as appropriate.<br /></p><div style="padding: 10px 0 10px 0;"><pre class="brush: plain;">cd /var/www/vhosts/DEV.DOMAIN_NAME.COM/httpdocs/
cp -r /var/www/vhosts/DOMAIN_NAME.COM/httpdocs/* /var/www/vhosts/DOMAIN_NAME.COM/httpdocs/.ht* /var/www/vhosts/DEV.DOMAIN_NAME.COM/httpdocs/ 
chown -R DEV_FTP_USERNAME:psacln /var/www/vhosts/DEV.DOMAIN_NAME.COM/httpdocs/* /var/www/vhosts/DEV.DOMAIN_NAME.COM/httpdocs/.ht* </pre></div><p>(Ignore any errors relating to plesk-stat or var/cache/mage...).</p><p><strong>Step 4 : Duplicate Database</strong></p><p>Shell Commands :</p><p>Dump a copy of the live database<br /></p><div style="padding: 10px 0 10px 0;"><pre class="brush: plain;">cd /var/www/vhosts/DEV.DOMAIN_NAME.COM/private/
mysqldump -u LIVE_DB_USERNAME -pLIVE_DB_PASSWORD LIVE_DB_NAME &gt; LIVE_DB_NAME.sql</pre></div><p>Import it into the new dev database<br /></p><div style="padding: 10px 0 10px 0;"><pre class="brush: plain;">mysql -u DEV_DB_USER -pDEV_DB_PASSWORD DEV_DB_NAME &lt; LIVE_DB_NAME.sql
rm LIVE_DB_NAME.sql</pre></div><p><strong>Step 5 : Point dev domain at duplicated database and update base URLs</strong></p><p>Edit file : /var/www/vhosts/dev.domain_name.com/httpdocs/app/etc/local.xml<br />(If unsure use Plesk CP -&gt; File Manager -&gt; Navigate to file -&gt; Pencil Image )<br />Change db_name, db_username, and db_password from live_db settings to the dev_db details.<br />Save the file.</p><p><span class="bbu">Using Hosting Control Panel / phpMyAdmin :</span><br />Login -&gt; Home/Domains -&gt; dev.domain_name.com -&gt; Databases -&gt; database -&gt; DB WebAdmin<br />Click on core_config_data<br />Click on the Search tab<br />Enter %base_url in path and click Search/Go<br />Change all entries to point to <strong>dev.domain_name.com</strong><br />(Further information on using&nbsp; <a href="http://www.nublue.co.uk/support/hosting-tools" rel="nofollow">phpMyAdmin</a>)<br />Reset the magento cache using the&nbsp; &quot;Magento Cache Reset&quot; button for dev.domain_name.com</p><p><strong>Step 6 : Enable caching and Magento Connect<br /></strong><br />Configure file permissions and the pear.ini<br /></p><div style="padding: 10px 0 10px 0;"><pre class="brush: plain;">find /var/www/vhosts/DEV.DOMAIN_NAME.COM/httpdocs/ -type d -exec chmod 775 {} \;
find /var/www/vhosts/DEV.DOMAIN_NAME.COM/httpdocs/ -type f -exec chmod 664 {} \;
chmod a+x /var/www/vhosts/DEV.DOMAIN_NAME.COM/httpdocs/pear
/var/www/vhosts/DEV.DOMAIN_NAME.COM/httpdocs/pear mage-setup .</pre></div><p>TEST REPEATEDLY!<br />Note : All absolute links entered into the CMS component of Magento will remain wrong.<br />Login details should be changed so that the logins for the dev site are different to the live site.<br />Consider using &quot;Protected Directories&quot; to prevent viewing of the dev site.</p><p>~Paul</p>]]></description>
			<author><![CDATA[dummy@example.com (NuBlue-Luke)]]></author>
			<pubDate>Wed, 21 Dec 2011 13:19:44 +0000</pubDate>
			<guid>http://www.nublue.co.uk/forums/topic/232/creating-a-development-copy-of-your-magento-store/new/posts/</guid>
		</item>
		<item>
			<title><![CDATA[Are we being ripped off with the new Hosting Plans ?]]></title>
			<link>http://www.nublue.co.uk/forums/topic/281/are-we-being-ripped-off-with-the-new-hosting-plans/new/posts/</link>
			<description><![CDATA[<p>Hi,<br />I have had my website hosted with Nublue for nearly a year and a half and I want to move my site to another hosting company.&nbsp; They want to nearly double my monthly payments in the new year.&nbsp; I found a company called Evohosting which seems to provide a much better service for a lot less money.</p><p>Does anyone else feel they are being ripped off by Nublue ? Does anyone else have experience of Evohosting (and how I would go about transferring my website).</p><p><a href="http://www.dermacaredirect.co.uk" rel="nofollow">www.dermacaredirect.co.uk</a></p><p>Bhavin</p>]]></description>
			<author><![CDATA[dummy@example.com (james.thompson)]]></author>
			<pubDate>Wed, 21 Dec 2011 12:04:58 +0000</pubDate>
			<guid>http://www.nublue.co.uk/forums/topic/281/are-we-being-ripped-off-with-the-new-hosting-plans/new/posts/</guid>
		</item>
	</channel>
</rss>

