<?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>JASA Infosolutions &#124; Expand Your Business</title>
	<atom:link href="http://www.jasainfo.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.jasainfo.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Thu, 18 Apr 2013 23:01:24 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
		<item>
		<title>404 error page not found. magento</title>
		<link>http://www.jasainfo.com/?p=311</link>
		<comments>http://www.jasainfo.com/?p=311#comments</comments>
		<pubDate>Tue, 22 Jan 2013 20:07:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.jasainfo.com/?p=311</guid>
		<description><![CDATA[<p>I found another post with the solution. Replace the it with the original index.php as the change affected this. It changed the original line Mage::run(’default’); so replace Mage::run(’’); with Mage::run(’default’);</p><p>The post <a href="http://www.jasainfo.com/?p=311">404 error page not found. magento</a> appeared first on <a href="http://www.jasainfo.com">JASA Infosolutions | Expand Your Business</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>I found another post with the solution.</p>
<p>Replace the it with the original index.php</p>
<p>as the change affected this.</p>
<p>It changed the original line<br />
Mage::run(’default’);</p>
<p>so replace<br />
Mage::run(’’);<br />
with<br />
Mage::run(’default’); </p>
<p>The post <a href="http://www.jasainfo.com/?p=311">404 error page not found. magento</a> appeared first on <a href="http://www.jasainfo.com">JASA Infosolutions | Expand Your Business</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jasainfo.com/?feed=rss2&#038;p=311</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Move / Magento Transfer To A New Server</title>
		<link>http://www.jasainfo.com/?p=305</link>
		<comments>http://www.jasainfo.com/?p=305#comments</comments>
		<pubDate>Tue, 22 Jan 2013 19:24:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.jasainfo.com/?p=305</guid>
		<description><![CDATA[<p>Magento Move / Magento Transfer This tutorial provides detailed information on how to move a Magento store from one host to another (or to a different hosting account). MySQL database backup On SiteGround servers you have phpMyAdmin included by default<span class="ellipsis">&#8230;</span><div class="read-more"><a href="http://www.jasainfo.com/?p=305">Read more &#8250;</a></div><!-- end of .read-more --></p><p>The post <a href="http://www.jasainfo.com/?p=305">Magento Move / Magento Transfer To A New Server</a> appeared first on <a href="http://www.jasainfo.com">JASA Infosolutions | Expand Your Business</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Magento Move / Magento Transfer</p>
<p>This tutorial provides detailed information on how to move a Magento store from one host to another (or to a different hosting account).<br />
MySQL database backup</p>
<p>On SiteGround servers you have phpMyAdmin included by default in cPanel for your account. In other cases you will have to use the same tool or a similar one that is capable of exporting your MySQL database. Detailed information on how to perform a MySQL backup can be found in our MySQL Tutorial.</p>
<p>Alternatively, if you don’t have phpMyAdmin installed but you have shell access you can use the mysqldump tool. The syntax is as follows:</p>
<p class="source">mysqldump -h HOST -u USER -p DATABASENAME &gt; FILENAME.sql</p>
<p>where:</p>
<p>HOST is the database server hostname or it can be omitted if you are running the MySQL server locally</p>
<p>USER &#8211; a user with full privileges to the Magento database</p>
<p>DATABASENAME &#8211; is the full name of the database which Magento is running</p>
<p>FILENAME &#8211; can be anything you find suitable for the backup file</p>
<p>Also, if you have Plesk, DirectAdmin or any other web hosting management tool, you can look at the available options. Many panels allow you to dump the database with just a few clicks. For example cPanel does have an option for this.</p>
<p>Transfer Files</p>
<p>You will need to download all files from your current store and upload them to the new location. This can be a time consuming task considering that a standard Magento installation consists of many files. A good alternative is to archive the files prior to downloading/uploading them if possible.</p>
<p>If you have SSH access you can log on your server -&gt; magento installation directory and archive all the files using the following command:</p>
<p class="source">tar -czif ARCHIVENAME.tar.gz</p>
<p>This will create a tarball archive of all the files in the directory.</p>
<p>You can then download the archive and easily upload it to the new location. To extract it at the new location use the following command in the desired destination folder for the Magento installation:</p>
<p class="source">tar -xzif ARCHIVENAME.tar.gz</p>
<p>Adjust Configuration</p>
<p>After the files are restored you should alter the configuration file in order to match the new settings. All you need to change here is the database details at the new location. Those are stored in the app/etc/local.xml file. The lines you need to alter are:</p>
<p class="source">&lt;host&gt;&lt;![CDATA[HOSTNAME]]&gt;&lt;/host&gt;<br />&lt;username&gt;&lt;![CDATA[USER]]&gt;&lt;/username&gt;<br />&lt;password&gt;&lt;![CDATA[PASSWORD]]&gt;&lt;/password&gt;<br />&lt;dbname&gt;&lt;![CDATA[DATABASENAME]]&gt;&lt;/dbname&gt;</p>
<p>where:</p>
<p>HOSTNAME should be the database hostname, most commonly &#8211; localhost</p>
<p>USER is a user that has full privileges to the database</p>
<p>PASSWORD is the password for the database user</p>
<p>DATABASENAME is the complete database name for the database you are going to use with the transferred Magento<br />
Restore Database</p>
<p>Once you have adjusted the options above you should restore the database at the new location.</p>
<p>A good practice is to add several options in the MySQL backup file prior to uploading it. The following should be added at the beginning of the SQL file:</p>
<p class="source">SET SQL_MODE=”NO_AUTO_VALUE_ON_ZERO”;<br />SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT;<br />SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS;<br />SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION;<br />SET NAMES utf8;<br />SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;<br />SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;<br />SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE=’NO_AUTO_VALUE_ON_ZERO’;<br />SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0;</p>
<p>The next option should be added at the end of the file after all other queries:</p>
<p class="source">SET SQL_MODE=@OLD_SQL_MODE;<br />SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;<br />SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;<br />SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT;<br />SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS;<br />SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION;<br />SET SQL_NOTES=@OLD_SQL_NOTES;</p>
<p>You can now import the database using phpMyadmin -&gt; Import or another MySQL tool depending on what kind of access you have to the website.</p>
<p>In case you would like to restore the database via a shell command you can use the following:</p>
<p class="source">mysql -h HOST -u USER -p DATABASENAME &lt; FILENAME.sql</p>
<p>and enter the password for the database user when asked. Note that if the Magento online store is supposed to work with a different domain name at the new location you should alter the entries for it in the MySQL database. The table you should edit is core_config_data and the values you need to change are in the path column. Change the web/unsecure/base_url and web/secure/base_url to match the new domain name by altering the value column for both records. The last step is to clear the Magento cache. You can do this either via the Magento admin panel &gt; System &gt; Cache management or by deleting the contents of the var/cache and var/session folders inside your Magento installation directory.</p>
<p>That is all. Your Magento should now be properly functioning at the new location.</p>
<p>The post <a href="http://www.jasainfo.com/?p=305">Magento Move / Magento Transfer To A New Server</a> appeared first on <a href="http://www.jasainfo.com">JASA Infosolutions | Expand Your Business</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jasainfo.com/?feed=rss2&#038;p=305</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Upgrade Magento from 1.4. version to Magento 1.5 and 1.6?</title>
		<link>http://www.jasainfo.com/?p=291</link>
		<comments>http://www.jasainfo.com/?p=291#comments</comments>
		<pubDate>Sat, 19 Jan 2013 18:42:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.jasainfo.com/?p=291</guid>
		<description><![CDATA[<p>Lets imaging that you have Magento 1.4.1.1. web store and you need to upgrade it to 1.5. or 1.6 version. First of all it is highly recommended to backup your live store files and database. Next you need to get<span class="ellipsis">&#8230;</span><div class="read-more"><a href="http://www.jasainfo.com/?p=291">Read more &#8250;</a></div><!-- end of .read-more --></p><p>The post <a href="http://www.jasainfo.com/?p=291">How To Upgrade Magento from 1.4. version to Magento 1.5 and 1.6?</a> appeared first on <a href="http://www.jasainfo.com">JASA Infosolutions | Expand Your Business</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Lets imaging that you have Magento 1.4.1.1. web store and you need to upgrade it to 1.5. or 1.6 version. First of all it is highly recommended to backup your live store files and database.</p>
<p>Next you need to get SSH access from your hosting provider and connect to your server via SSH protocol. After connection via SSH go to your store folder and execute these commands:</p>
<p>1 – Change permissions on lib/pear folder to writable (recursively):</p>
<p>chmod -R 777 lib/PEAR</p>
<p>2 – Execute this command to prepare Magento for upgrade:</p>
<p>./pear mage-setup</p>
<p>Most likely you will see this result after command execution:</p>
<p>Channel “connect.magentocommerce.com/core” is already initialized</p>
<p>Upgrade from Magento 1.4.1.x to Magento 1.4.2.0</p>
<p>This step is necessary even if you upgrade your Magento store to 1.5 or 1.6 versions.</p>
<p>3 – Execute Magento upgrade command:</p>
<p>./pear upgrade -f magento-core/Mage_All_Latest-stable</p>
<p>Output of the command will show you what core packages were upgraded:</p>
<p>…<br />
upgrade ok: channel://connect.magentocommerce.com/core/Mage_Centinel-1.4.2.0<br />
upgrade ok: channel://connect.magentocommerce.com/core/Interface_Frontend_Base_Default-1.4.2.0<br />
upgrade ok: channel://connect.magentocommerce.com/core/Phoenix_Moneybookers-1.2.3<br />
upgrade ok: channel://connect.magentocommerce.com/core/Find_Feed-1.0.7<br />
upgrade ok: channel://connect.magentocommerce.com/core/Interface_Adminhtml_Default-1.4.2.0</p>
<p>4 – When this part of the upgrade will be complete, enter these commands:</p>
<p>chmod 550 ./mage<br />
./mage mage-setup .</p>
<p>You will see this result after command execution:</p>
<p>Successfully added: http://connect20.magentocommerce.com/community</p>
<p>It means that Magento connect 2.0 channel was added to the channels list successfully.</p>
<p>5 – Next, enter this command:</p>
<p>./mage sync</p>
<p>The result will be:</p>
<p>…<br />
Successfully added: community/Mage_Locale_en_US-1.4.2.0<br />
Successfully added: community/Interface_Install_Default-1.4.2.0<br />
Successfully added: community/Phoenix_Moneybookers-1.2.3<br />
Successfully added: community/Mage_Downloader-1.5.0.0<br />
Successfully added: community/Lib_Google_Checkout-1.4.2.0</p>
<p>Upgrade to Magento 1.4.2.0 is complete and now you can proceed with upgrade to Magento 1.5.1.0 or 1.6.0.0 version.</p>
<p>Upgrade from Magento 1.4.2.0 to Magento 1.5.10 or Magento 1.6.0.0</p>
<p>Now you can upgrade your store to version 1.5 or 1.6.</p>
<p>Before proceeding with this part of Magento upgrade, it is very important to see to what version Magento upgrade scripts will upgrade your store. Enter this command to check this:</p>
<p>./mage list-upgrades</p>
<p>If you will see this result:</p>
<p>Updates for community:<br />
Mage_All_Latest: 1.4.2.1 => 1.6.0.0<br />
Lib_Js_Mage: 1.4.2.0 => 1.6.0.0<br />
Lib_Varien: 1.4.2.0 => 1.6.0.0<br />
Lib_Phpseclib: 1.4.2.0 => 1.5.0.0</p>
<p>It means that your Magento will be upgraded to version 1.6.0.0. If it is not what you need you can change upgrade channel to “stable” and upgrade your Magento to version 1.5.1.0.</p>
<p>6 – Enter this command to change the upgrade channel to stable:</p>
<p>./mage config-set preferred_state stable</p>
<p>After this the “./mage list-upgrades” command will show you this result:</p>
<p>Updates for community:<br />
Mage_All_Latest: 1.4.2.1 => 1.5.1.0.1<br />
Lib_Js_Mage: 1.4.2.0 => 1.5.1.0<br />
Lib_Varien: 1.4.2.0 => 1.5.1.0<br />
Lib_Phpseclib: 1.4.2.0 => 1.5.0.0<br />
Mage_Core_Adminhtml: 1.4.2.0 => 1.5.1.0<br />
Mage_Core_Modules: 1.4.2.0 => 1.5.1.0</p>
<p>7 – After channel selection you can upgrade your Magento to 1.5.1.0 (or to Magento 1.6.0.0) using this command:</p>
<p>./mage upgrade-all –force</p>
<p>You will see upgraded packages on your screen:</p>
<p>…<br />
Package upgraded: community/Mage_Locale_en_US 1.6.0.0<br />
Package upgraded: community/Lib_Mage 1.6.0.0<br />
Package upgraded: community/Lib_ZF 1.11.1.0<br />
Package upgraded: community/Lib_Js_Prototype 1.7.0.0.1<br />
Package upgraded: community/Lib_ZF_Locale 1.11.1.0</p>
<p>Now the upgrade is complete and you can execute database upgrade visiting your Magento store in your browser. If everything was upgraded correctly, you will see upgraded store in your browser.</p>
<p>You can check version of your store in the footer of Magento administration panel. </p>
<p>The post <a href="http://www.jasainfo.com/?p=291">How To Upgrade Magento from 1.4. version to Magento 1.5 and 1.6?</a> appeared first on <a href="http://www.jasainfo.com">JASA Infosolutions | Expand Your Business</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jasainfo.com/?feed=rss2&#038;p=291</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
