Typo to WordPress migration
The Stuart Johnston posting Automatic migration from typo to WordPress got us part of the way from Typo to WordPress, but a number of things have changed in Typo since those scripts were written, so it took some jiggering to get working. We were at Typo 4.1, and the database schema was somewhat different.
This is what I did to export the data from Typo:
bash$ mysqldump -u username -p name_of_typo_db articles_tags tags categorizations categories contents feedback > dumpster.sql
Then I imported that data into the WordPress database (just did “source dumpster.sql” within mysql), then sourced typo41_migrate.sql, which is modified from Johnston’s typo_to_wordpress_with_utw.sql script.
Comments welcome on the utility of my process.
Popularity: 11% [?]
Theoretically Related Posts
Trackbacks
Use this link to trackback from your own site.

[...] install to install WordPress onto a development sub-domain. Then I used Max Newell’s typo4.1 migration guide to import my articles and comments. Categories didn’t seem to carry over, but since I have [...]
Seems like the WP schema has moved on since you revised that script.
Now, when I run it, I get:
ERROR 1146 (42S02) at line 4: Table ‘wordpress.wp_categories’ doesn’t exist
Which, according to: http://wordpress.org/support/topic/135540 is understandable since they dropped those tables in the current version.
If I have some time, I’ll try to figure out how the new schema mapping works and update your script. I’m sick to death of typo flakiness and am looking forward to WordPress’s smoother ride
Thanks!