English 中文(简体)
Magento from 1.3 to 1.4
原标题:

I`m using Magento 1.3 and I want to test the new 1.4, but is there a way of exporting the products and categories form 1.3 to 1.4? Thanks

最佳回答

Set up a new database, export your old database and import it into the new one, then install Magento with your new imported database s settings. It will automatically upgrade.

问题回答

There is a way to export products right through Magento, but there is no direct way to export categories.

To export products, login to the admin, and go to System >> Import/Export >> Profiles and then select the "Export All Products". After you run that, the file will be in /var/export/

To import that into 1.4, go the same route but instead of selecting the "Export All Products" profile, select the "Import All Products". Upload the file and run it.

Categories you ll have to get in the database and figure out everything you need to dump and move over. It is definitely doable, I just don t know off the top of my head. There s definitely more than one table you ll have to deal with. They should start with "catalog_category_" in the database.

I really needed to migrate from 1.3 to 1.4. I read every post on the internet about this and none of them worked. Some people claim that updating runs automatically, but you ll get only error after error. Please let me know if I m mistaken and I would love to try it myself. Having said that, you ll have to install Magento 1.4 from scratch. After that you can copy the media folder and then it s when the nightmare begins: migrating products.

You can export products from 1.3, but the CSV file is not compatible with 1.4. I had to write a script for transforming 1.3 export files to 1.4 import files. Then I could import products to Magento 1.4. But images on the backend didn t work because they are retrieved from cache so I had to correct this. That wasn t easy.

Templates are more or less compatible, a few issues with pagination and other minor changes.

I m not sure how to migrate users yet, but I m using the same technique I used for products. Who know if passwords are easy to preserve, and forget about migrating orders, at least without investing some money on it.





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签