Skip to content

Commit

Permalink
+ Fixed to compatible with Magento2 0.74.0 - beta 8.
Browse files Browse the repository at this point in the history
+ Fixed bugs.
  • Loading branch information
quynhvv committed May 12, 2015
1 parent eb04b00 commit d5240f3
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 28 deletions.
27 changes: 1 addition & 26 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,4 @@
<strong>Magento 2</strong> beta version has just been released not long ago with lots of huge improvements compared to the previous versions.

Moving to the latest version is obviously beneficial for most Magento users.

However, the data migration may be troublesome for new users. In an attempt to help you with this, <strong>UberTheme</strong> is developing a handy migration tool to migrate data from old Magento version to Magento 2. Let’s see what we’ve got so far.

Here is what we’ve learnt about <strong>Magento 2</strong> beta’s new structure so far.

<h3>Key changes in the database structures.</h3>
<div class="center">
<p align="center"><img src="http://joomlart.s3.amazonaws.com/images/userguide/jm_tips/migrationData/magento-1.jpg?v=20150401144700" alt="Magento 2 Migration Data Tool" /></p>

</div>
<h3>Changes in tables.</h3>
<h4>+ Name change for some tables</h4>
<div class="center">
<p align="center"><img src="http://joomlart.s3.amazonaws.com/images/userguide/jm_tips/migrationData/changes-in-tables.jpg?v=20150401144700" alt="Magento 2 Migration Data Tool" /></p>

</div>
<h4>+ Change of Attributes</h4>
<div class="center">
<p align="center"><img src="http://joomlart.s3.amazonaws.com/images/userguide/jm_tips/migrationData/attributes.jpg?v=20150401144700" alt="Magento 2 Migration Data Tool" /></p>
</div>
...

To use this migration tool, follow the steps below:
<h3>To use this migration tool, follow the steps below:</h3>

<h4># Step1: Install Magento 2</h4>
- Download the latest version of Magento2 from Github
Expand Down
Binary file added css/images/favicon.ico
Binary file not shown.
3 changes: 2 additions & 1 deletion protected/config/config.template
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ return array(

'import'=>array(
//This can change for your magento1 version if needed
'application.models.db.{MG1_VERSION}.*',
//'application.models.db.{MG1_VERSION}.*',
'application.models.db.mage19x.*',
)
);
Binary file modified protected/data/ub_tool.db
Binary file not shown.
2 changes: 1 addition & 1 deletion protected/models/MigrateSteps.php
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ public static function getTotalSalesChildObject($objectId){
public static function getMG1VersionOptions(){
$options = array(
'mage19x' => Yii::t('frontend', 'Magento 1.9.x'),
'mage19x' => Yii::t('frontend', 'Magento 1.8.x')
'mage18x' => Yii::t('frontend', 'Magento 1.8.x')
);
return $options;
}
Expand Down
1 change: 1 addition & 0 deletions protected/views/layouts/main.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<title><?php echo CHtml::encode($this->pageTitle); ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="language" content="en" />
<link rel="shortcut icon" href="<?php echo Yii::app()->request->baseUrl; ?>/css/images/favicon.ico">
<!-- bootstrap -->
<link rel="stylesheet" href="<?php echo Yii::app()->request->baseUrl; ?>/css/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="<?php echo Yii::app()->request->baseUrl; ?>/css/bootstrap/css/bootstrap-theme.min.css">
Expand Down

0 comments on commit d5240f3

Please sign in to comment.