문제

Inside the Oscommerce folder there is an upgrade_guide called upgrade-230.pdf.

there it sais

If you wish to upgrade to a full v2.3 version, perform only (SQL) Database Changes and use the database with a new v2.3 installation.

But how do I make those Database Changes to use it with a new v2.3?

I think I have to manually compare database schemas and modify the old site's backup .sql file (adding/changing fields, adding tables, etc., to match the schema and fixing the corresponding INSERT statements to match). Then you can simply replace the new installation's database with the restored old one.

In the file there are only some SQL-commands to create the action recorder:

CREATE TABLE action_recorder ( ...

What else do I have to change in the old database backup?

도움이 되었습니까?

해결책

The databases are pretty much the same, only some small differences that you can correct with these statements, I collected the needed changes here:

https://gist.github.com/rubo77/7330900

Or you could try the Community Add-On SQL upgrades from 2.2MS to 2.3.3.

Depending on your old version you may or may not need all of it. Also, be sure to make a backup of your database before running any of this

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top