<?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>SupportSages &#187; magento</title>
	<atom:link href="http://www.supportsages.com/blog/tag/magento/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.supportsages.com/blog</link>
	<description>Technical Support and Server Management : Musings in the fox hole.</description>
	<lastBuildDate>Thu, 05 Jan 2012 03:05:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>cPanel Website Transfer &#8211; Part 1 &#8211; Changing an Add-on Domain to a Primary Domain</title>
		<link>http://www.supportsages.com/blog/2011/07/cpanel-website-transfer-part-1-changing-an-add-on-domain-to-a-primary-domain/</link>
		<comments>http://www.supportsages.com/blog/2011/07/cpanel-website-transfer-part-1-changing-an-add-on-domain-to-a-primary-domain/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 12:52:52 +0000</pubDate>
		<dc:creator>vince</dc:creator>
				<category><![CDATA[cPanel]]></category>
		<category><![CDATA[Howtos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[magento]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[restore]]></category>
		<category><![CDATA[transfer]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.supportsages.com/blog/?p=728</guid>
		<description><![CDATA[For Beginners, Learn how to transfer and restore a website in a Linux cPanel envrioment]]></description>
			<content:encoded><![CDATA[<h3><span style="color: #ff0000;"><strong><em><strong><em>Converting an Add-on Domain to a Primary Domain</em></strong></em></strong></span></h3>
<p><strong>Skill Level : Beginner</strong></p>
<p>In this post, I will explain how to convert an add-on domain to a primary domain. Considering a complex case, lets consider the primary domain should be a different one from the one that holds the Add-on domain.</p>
<p><strong>Pre Requisites</strong></p>
<p>Server Platform : Linux</p>
<p>User requires     : cPanel and SSH access (root)</p>
<p>This is a Site transfer. Also both the sites I&#8217;ve mentioned here is on same server.</p>
<p><strong>Case</strong></p>
<p>The Add-on Domain under a website has to be converted as its Primary Domain. If you have a Full backup, its another case. I&#8217;ll explain it in another post.</p>
<p><strong>Solution</strong></p>
<p>Lets consider the Add-on Domain is addon.com under the user admin and the document root of the add-on domain is :</p>
<p>/home/admin/public_html/addon</p>
<p>Now it should be transferred as the Primary Domain</p>
<p>* Using WHM Create a New account primary.com, the document root is then say /home/primary<br />
We&#8217;ve to transfer the whole data from /home/admin/public_html/addon.com to /home/primary/public_html first.</p>
<p>* The Steps will be :</p>
<p>root@server [/home/admin/public_html/addon]# cp -r ./* /home/primary/public_html</p>
<p>This will recursively copy everything inside the PWD to the specified location<br />
<span id="more-728"></span></p>
<p>Don&#8217;t forget to copy .htaccess too</p>
<p>root@server [/home/admin/public_html/addon]# cp .htaccess /home/primary/public_html</p>
<p>* Thats it, the contents are moved, but there is a database too which has to be moved eventually.<br />
* I&#8217;ll site some type of websites like CMS and Blog :</p>
<p>For a Magento website, the database configuration is specified inside the local.xml file which is placed inside the /app/etc directory inside a domain. For example</p>
<p>root@server [/home/admin/public_html/addon]# cd /app/etc<br />
root@server [/home/admin/public_html/addon/app/etc]# cat local.xml</p>
<p>* Watch for these lines in the local.xml file</p>
<p>&lt;username&gt;&lt;![CDATA[admin_user]]&gt;&lt;/username&gt;<br />
&lt;password&gt;&lt;![CDATA[password]]&gt;&lt;/password&gt;<br />
&lt;dbname&gt;&lt;![CDATA[admin_db]]&gt;&lt;/dbname&gt;</p>
<p><![CDATA[admin_user]]&gt;</username></p>
<password><! [CDATA[password]]-->                     <!--[CDATA[admin_user]]&gt;</p>
<p>* From this the DB Name, DB Username and Password can be fetched.</p>
<p>DB Name            :    admin_db<br />
DB Username    :    admin_user<br />
Password       :    password</p>
<p><strong>Other DB Configuration Files</strong></p>
<p>For a WordPress website, the configuration file will be the wp-config.php. Check these lines for the Database configuration details :</p>
<p>// ** MySQL settings &#8211; You can get this info from your web host ** //<br />
/** The name of the database for WordPress */<br />
define(&#8216;DB_NAME&#8217;, &#8216;admin_db&#8217;);</p>
<p>/** MySQL database username */<br />
define(&#8216;DB_USER&#8217;, &#8216;admin_user&#8217;);</p>
<p>/** MySQL database password */<br />
define(&#8216;DB_PASSWORD&#8217;, &#8216;password&#8217;);</p>
<p>/** MySQL hostname */<br />
define(&#8216;DB_HOST&#8217;, &#8216;localhost&#8217;);</p>
<p>For a Joomla website it is the configuration.php where the database details would be defined.</p>
<p>* Access the cPanel of the new primary domain primary.com. Create a new MySQL Database from Databases -&gt; MySQL option, along with a new MySQL user. Make sure you are providing    exact names as in the local.xml file of the addon.com. Next add the user to the database. So the corresponding database credentials at primary.com will be :</p>
<p>DB Name           :    primary_db<br />
DB Username    :    primary_user<br />
Password                 :     password</p>
<p>Screen-shots of Creating a new database and database user :</p>
<p><a  href="http://www.supportsages.com/blog/wp-content/uploads/2011/05/1.png" class="thickbox no_icon" rel="gallery-728" title="1"><img class="alignnone size-medium wp-image-1860" title="1" src="http://www.supportsages.com/blog/wp-content/uploads/2011/05/1-300x68.png" alt="" width="300" height="68" /></a></p>
<p><a  href="http://www.supportsages.com/blog/wp-content/uploads/2011/05/2.png" class="thickbox no_icon" rel="gallery-728" title="2"><img class="alignnone size-medium wp-image-1861" title="2" src="http://www.supportsages.com/blog/wp-content/uploads/2011/05/2-300x79.png" alt="" width="300" height="79" /></a></p>
<p><a  href="http://www.supportsages.com/blog/wp-content/uploads/2011/05/3.png" class="thickbox no_icon" rel="gallery-728" title="3"><img class="alignnone size-medium wp-image-1862" title="3" src="http://www.supportsages.com/blog/wp-content/uploads/2011/05/3-300x140.png" alt="" width="300" height="140" /></a></p>
<p><a  href="http://www.supportsages.com/blog/wp-content/uploads/2011/05/5.png" class="thickbox no_icon" rel="gallery-728" title="5"><img class="alignnone size-full wp-image-1863" title="5" src="http://www.supportsages.com/blog/wp-content/uploads/2011/05/5.png" alt="" width="276" height="118" /></a></p>
<p><a  href="http://www.supportsages.com/blog/wp-content/uploads/2011/05/6.png" class="thickbox no_icon" rel="gallery-728" title="6"><img class="alignnone size-medium wp-image-1864" title="6" src="http://www.supportsages.com/blog/wp-content/uploads/2011/05/6-300x201.png" alt="" width="300" height="201" /></a></p>
<p><strong>Creating DB through Shell</strong></p>
<p>Access MySQL prompt :</p>
<p>$ mysql //Login as Root</p>
<p>mysql&gt; use mysql; //Use MySQL</p>
<p>﻿﻿﻿﻿﻿﻿mysql&gt; create database [﻿primary_db]; //Create a Database</p>
<p>mysql&gt; INSERT INTO primary_user (Host,User,Password) VALUES(&#8216;host&#8217;,'primary_user&#8217;,PASSWORD(&#8216;password&#8217;)); //Insert User</p>
<p>mysql&gt; grant all privileges on primary_db.sql to primary_user@localhost; //Granting all Privileges to user primary_user on the database</p>
<p>Perform Dump :</p>
<p>root@server [/home/primary]# mysqldump dbname &gt; dbname.sql   (Here mysqldump admin_db &gt; admin_db.sql)</p>
<p>* Enter the mysql terminal through the command mysql</p>
<p>mysql &gt; use newdatabasename;          (Here mysql &gt; use primary_db;)<br />
mysql &gt; source olddatabasename.sql;      (Here mysql &gt; source admin_db.sql;)</p>
<p>* For a normal website, you may backup the database by checking the config files and restore it. Use cPanel for that.</p>
<p>* Guess what, You&#8217;re done, the restoration is complete now. Now the primary.com should be working like addon.com.</p>
<div class="tweetthis" style="text-align:left;"><p> <a  class="tt" href="http://twitter.com/home/?status=cPanel+Website+Transfer+-+Part+1+-+Changing+an+Add-on+Domain+to+a+Primary+Domain+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F728" title="Post to Twitter"><img class="nothumb" src="http://www.supportsages.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a  class="tt" href="http://twitter.com/home/?status=cPanel+Website+Transfer+-+Part+1+-+Changing+an+Add-on+Domain+to+a+Primary+Domain+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F728" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.supportsages.com/blog/2011/07/cpanel-website-transfer-part-1-changing-an-add-on-domain-to-a-primary-domain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error while installing Magento Blue theme.</title>
		<link>http://www.supportsages.com/blog/2010/08/error-while-installing-magento-blue-theme/</link>
		<comments>http://www.supportsages.com/blog/2010/08/error-while-installing-magento-blue-theme/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 09:37:30 +0000</pubDate>
		<dc:creator>Fabian</dc:creator>
				<category><![CDATA[magento]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[blue]]></category>
		<category><![CDATA[blue error]]></category>
		<category><![CDATA[magento blue]]></category>
		<category><![CDATA[magento connect]]></category>

		<guid isPermaLink="false">http://www.supportsages.com/blog/?p=1220</guid>
		<description><![CDATA[We used to get tickets complaining that the customers are not able to install Magento Blue theme via Magento Connect. When you try to install you may get the below error.

[bash]ERROR:
Via magento connect
magento-core/Interface_Frontend_Default_Default_Blue  requires package &#34;magento-core/Interface_Frontend_Default&#34; (version  &#62;= 1.3.1, version &#60;= 1.4.0, excluded versions: 1.4.0), installed  version is 1.4.0.0
Install Errors
No valid packages found
PEAR  ERROR: install failed

magento-core/Interface_Frontend_Default
magento-core/Mage_Core_Modules[/bash]

To fix this, login to your account via SSH and navigate to the Magento installation folder and execute the below command.

Install <code>Interface_Frontend_Default correct version
</code>

[bash]./pear install magento-core/Interface_Frontend_Default[/bash]

And then the Blue theme

[bash]./pear install magento-core/Interface_Frontend_Default_Default_Blue[/bash]

You can get help for pear command by executing

[bash]pear help ...]]></description>
			<content:encoded><![CDATA[<p>We used to get tickets complaining that the customers are not able to install Magento Blue theme via Magento Connect. When you try to install you may get the below error.</p>
<pre class="brush: bash; title: ; notranslate">ERROR:
Via magento connect
magento-core/Interface_Frontend_Default_Default_Blue  requires package &quot;magento-core/Interface_Frontend_Default&quot; (version  &gt;= 1.3.1, version &lt;= 1.4.0, excluded versions: 1.4.0), installed  version is 1.4.0.0
Install Errors
No valid packages found
PEAR  ERROR: install failed

magento-core/Interface_Frontend_Default
magento-core/Mage_Core_Modules</pre>
<p>To fix this, login to your account via SSH and navigate to the Magento installation folder and execute the below command.</p>
<p>Install <code>Interface_Frontend_Default correct version<br />
</code></p>
<pre class="brush: bash; title: ; notranslate">./pear install magento-core/Interface_Frontend_Default</pre>
<p>And then the Blue theme</p>
<pre class="brush: bash; title: ; notranslate">./pear install magento-core/Interface_Frontend_Default_Default_Blue</pre>
<p>You can get help for pear command by executing</p>
<pre class="brush: bash; title: ; notranslate">pear help </pre>
<p>And to list Channels</p>
<pre class="brush: bash; title: ; notranslate">pear list-channels Registered Channel</pre>
<div class="tweetthis" style="text-align:left;"><p> <a  class="tt" href="http://twitter.com/home/?status=Error+while+installing+Magento+Blue+theme.+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F1220" title="Post to Twitter"><img class="nothumb" src="http://www.supportsages.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a  class="tt" href="http://twitter.com/home/?status=Error+while+installing+Magento+Blue+theme.+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F1220" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.supportsages.com/blog/2010/08/error-while-installing-magento-blue-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Suhosin Values</title>
		<link>http://www.supportsages.com/blog/2009/12/magento-suhosin-values/</link>
		<comments>http://www.supportsages.com/blog/2009/12/magento-suhosin-values/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 22:29:52 +0000</pubDate>
		<dc:creator>George</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[magento]]></category>
		<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://www.supportsages.com/blog/?p=583</guid>
		<description><![CDATA[Known .htaccess and php.ini values to override suhosin restrictions for proper working of Magento]]></description>
			<content:encoded><![CDATA[<p>Sometimes Magento admins face the issue of some values missing from the frontend even though the configuration would have shown to be saved from Backend. This could be due the limit in the number of values set by suhosin.</p>
<p>The common override for this issue is to have the following values set in .htaccess</p>
<p>php_value suhosin.mail.protect 0<br />
php_value suhosin.memory_limit 128M<br />
php_value suhosin.post.max_vars 5000<br />
php_value suhosin.post.max_value_length 500000<br />
php_value suhosin.request.max_vars 5000<br />
php_value suhosin.request.max_value_length 500000<br />
php_flag suhosin.session.cryptua off</p>
<p>For php.ini use the variables without php_value or php_flag</p>
<div class="tweetthis" style="text-align:left;"><p> <a  class="tt" href="http://twitter.com/home/?status=Magento+Suhosin+Values+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F583" title="Post to Twitter"><img class="nothumb" src="http://www.supportsages.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a  class="tt" href="http://twitter.com/home/?status=Magento+Suhosin+Values+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F583" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.supportsages.com/blog/2009/12/magento-suhosin-values/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Warning: simplexml_load_file() [function.simplexml-load-file]: (null)</title>
		<link>http://www.supportsages.com/blog/2009/08/magento-warning-simplexml_load_file-function-simplexml-load-file-null/</link>
		<comments>http://www.supportsages.com/blog/2009/08/magento-warning-simplexml_load_file-function-simplexml-load-file-null/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 16:03:48 +0000</pubDate>
		<dc:creator>victor</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[magento]]></category>

		<guid isPermaLink="false">http://www.supportsages.com/blog/?p=552</guid>
		<description><![CDATA[You get this error while entering the magento admin home page after login. The home page has a number of warnings and talks about locales. A sample error listing shown is:
<blockquote>Warning: simplexml_load_file() [function.simplexml-load-file]: (null)(null)/home/runinsty/public_html/paths/lib/Zend/Locale/Data/ko.xml:2780: parser error : out of memory error in /home/runinsty/public_html/paths/lib/Zend/Locale/Data.php on line 146
Trace:

#0 /home/runinsty/public_html/paths/lib/Zend/Locale/Data.php(146): mageCoreErrorHandler(2, ‘simplexml_load_...’, ‘/home/runinsty/...’, 146, Array)
#1 /home/runinsty/public_html/paths/lib/Zend/Locale/Data.php(217): Zend_Locale_Data::_findRoute(’/home/runinsty/...’)
#2 /home/runinsty/public_html/paths/lib/Zend/Locale/Data.php(231): Zend_Locale_Data::_getFile(’ko’, ‘/ldml/localeDis...’, ‘type’, false, Array)
#3 /home/runinsty/public_html/paths/lib/Zend/Locale/Data.php(787): Zend_Locale_Data::_getFile(’ko’, ‘/ldml/localeDis...’, ‘type’, false, Array)
#4 /home/runinsty/public_html/paths/lib/Zend/Locale.php(594): Zend_Locale_Data::getContent(’ko_KR’, ‘/ldml/localeDis...’, ‘type’)
#5 /home/runinsty/public_html/paths/lib/Zend/Locale.php(611): Zend_Locale::getTranslation(’ko_KR’, ‘language’, ‘ko’)
#6 /home/runinsty/public_html/paths/app/code/core/Mage/Core/Model/Locale.php(246): Zend_Locale::getLanguageTranslation(’ko’, ‘language’, ‘ko_KR’)
#7 /home/runinsty/public_html/paths/app/code/core/Mage/Core/Model/Locale.php(219): Mage_Core_Model_Locale-&#62;_getOptionLocales(’ko’, ‘ko_KR’)
#8 /home/runinsty/public_html/paths/app/code/core/Mage/Adminhtml/Block/Page/Footer.php(67): Mage_Core_Model_Locale-&#62;getTranslatedOptionLocales(true)
#9 /home/runinsty/public_html/paths/app/design/adminhtml/default/default/template/page/footer.phtml(29): Mage_Adminhtml_Block_Page_Footer-&#62;getLanguageSelect()
#10 /home/runinsty/public_html/paths/app/code/core/Mage/Core/Block/Template.php(144): include(’/home/runinsty/...’)</blockquote>
To solve this there are two things to be done, firstly ensure that the ...]]></description>
			<content:encoded><![CDATA[<p>You get this error while entering the magento admin home page after login. The home page has a number of warnings and talks about locales. A sample error listing shown is:</p>
<blockquote><p>Warning: simplexml_load_file() [function.simplexml-load-file]: (null)(null)/home/runinsty/public_html/paths/lib/Zend/Locale/Data/ko.xml:2780: parser error : out of memory error in /home/runinsty/public_html/paths/lib/Zend/Locale/Data.php on line 146<br />
Trace:</p>
<p>#0 /home/runinsty/public_html/paths/lib/Zend/Locale/Data.php(146): mageCoreErrorHandler(2, ‘simplexml_load_&#8230;’, ‘/home/runinsty/&#8230;’, 146, Array)<br />
#1 /home/runinsty/public_html/paths/lib/Zend/Locale/Data.php(217): Zend_Locale_Data::_findRoute(’/home/runinsty/&#8230;’)<br />
#2 /home/runinsty/public_html/paths/lib/Zend/Locale/Data.php(231): Zend_Locale_Data::_getFile(’ko’, ‘/ldml/localeDis&#8230;’, ‘type’, false, Array)<br />
#3 /home/runinsty/public_html/paths/lib/Zend/Locale/Data.php(787): Zend_Locale_Data::_getFile(’ko’, ‘/ldml/localeDis&#8230;’, ‘type’, false, Array)<br />
#4 /home/runinsty/public_html/paths/lib/Zend/Locale.php(594): Zend_Locale_Data::getContent(’ko_KR’, ‘/ldml/localeDis&#8230;’, ‘type’)<br />
#5 /home/runinsty/public_html/paths/lib/Zend/Locale.php(611): Zend_Locale::getTranslation(’ko_KR’, ‘language’, ‘ko’)<br />
#6 /home/runinsty/public_html/paths/app/code/core/Mage/Core/Model/Locale.php(246): Zend_Locale::getLanguageTranslation(’ko’, ‘language’, ‘ko_KR’)<br />
#7 /home/runinsty/public_html/paths/app/code/core/Mage/Core/Model/Locale.php(219): Mage_Core_Model_Locale-&gt;_getOptionLocales(’ko’, ‘ko_KR’)<br />
#8 /home/runinsty/public_html/paths/app/code/core/Mage/Adminhtml/Block/Page/Footer.php(67): Mage_Core_Model_Locale-&gt;getTranslatedOptionLocales(true)<br />
#9 /home/runinsty/public_html/paths/app/design/adminhtml/default/default/template/page/footer.phtml(29): Mage_Adminhtml_Block_Page_Footer-&gt;getLanguageSelect()<br />
#10 /home/runinsty/public_html/paths/app/code/core/Mage/Core/Block/Template.php(144): include(’/home/runinsty/&#8230;’)</p></blockquote>
<p>To solve this there are two things to be done, firstly ensure that the memory_limit value for php is more than 64Mb. Next notice the first line in the error sample:</p>
<blockquote><p>home/runinsty/public_html/paths/lib/Zend/Locale/Data/ko.xml</p></blockquote>
<p>What we are interested here is the locale <strong>ko</strong></p>
<p>Now go to the file /home/runinsty/www/app/etc/config.xml search for the tag &lt;codes&gt; . A listing similar to the below will be seen:</p>
<blockquote><p>&lt;locale&gt;<br />
&lt;allow&gt;<br />
&lt;codes&gt;<br />
&lt;af_ZA/&gt;&lt;!&#8211; Afrikaans (South Africa) &#8211;&gt;<br />
&lt;ar_EG/&gt;&lt;!&#8211; Arabic (Egypt) &#8211;&gt;<br />
&lt;ar_KW/&gt;&lt;!&#8211; Arabic (Kuwait) &#8211;&gt;<br />
&lt;ar_MA/&gt;&lt;!&#8211; Arabic (Morocco) &#8211;&gt;<br />
&lt;ar_SA/&gt;&lt;!&#8211; Arabic (Saudi Arabia) &#8211;&gt;<br />
&lt;az_AZ/&gt;&lt;!&#8211; Azerbaijani (Azerbaijan) &#8211;&gt;<br />
&lt;bg_BG/&gt;&lt;!&#8211; Bulgarian (Bulgaria) &#8211;&gt;<br />
&lt;bn_BD/&gt;&lt;!&#8211; Bengali (Bangladesh) &#8211;&gt;<br />
&lt;bs_BA/&gt;&lt;!&#8211; Bosnian (Bosnia) &#8211;&gt;<br />
&lt;ca_ES/&gt;&lt;!&#8211; Catalan (Catalonia) &#8211;&gt;<br />
&lt;cs_CZ/&gt;&lt;!&#8211; Czech (Czech Republic) &#8211;&gt;<br />
&lt;cy_GB/&gt;&lt;!&#8211; Welsh (United Kingdom) &#8211;&gt;<br />
&lt;da_DK/&gt;&lt;!&#8211; Danish (Denmark) &#8211;&gt;<br />
&lt;km_KH/&gt;&lt;!&#8211; Khmer (Cambodia) &#8211;&gt;<br />
&lt;ko_KR/&gt;&lt;!&#8211; Korean (South Korea) &#8211;&gt;<br />
&lt;lo_LA/&gt;&lt;!&#8211; Lao (Laos) &#8211;&gt;<br />
&lt;lt_LT/&gt;&lt;!&#8211; Lithuanian (Lithuania) &#8211;&gt;<br />
&lt;lv_LV/&gt;&lt;!&#8211; Latvian (Latvia) &#8211;&gt;<br />
&lt;mk_MK/&gt;&lt;!&#8211; Macedonian (Macedonia) &#8211;&gt;<br />
&lt;mn_MN/&gt;&lt;!&#8211; Mongolian (Mongolia) &#8211;&gt;<br />
&lt;ms_MY/&gt;&lt;!&#8211; Malaysian (Malaysia) &#8211;&gt;<br />
&lt;nl_NL/&gt;&lt;!&#8211; Dutch (Netherlands) &#8211;&gt;<br />
&lt;nb_NO/&gt;&lt;!&#8211; Norwegian Bokmål (Norway) &#8211;&gt;</p></blockquote>
<p>Now delete all the xml tag lines beginning with &lt;ko_ .</p>
<p>Next clear your browser cache and revisit your page to see the error fly away.</p>
<div class="tweetthis" style="text-align:left;"><p> <a  class="tt" href="http://twitter.com/home/?status=Magento+Warning%3A+simplexml_load_file%28%29+%5Bfunction.simplexml-load-file%5D%3A+%28null%29+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F552" title="Post to Twitter"><img class="nothumb" src="http://www.supportsages.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a  class="tt" href="http://twitter.com/home/?status=Magento+Warning%3A+simplexml_load_file%28%29+%5Bfunction.simplexml-load-file%5D%3A+%28null%29+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F552" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.supportsages.com/blog/2009/08/magento-warning-simplexml_load_file-function-simplexml-load-file-null/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

