trante
trante

Reputation: 34006

Joomla to Wordpress migration from HTML files

I know there exists tools that migrates Joomla to Wordpress at database level. But my problem is I don't have access to Joomla database anymore. I only have whole Joomla! 1.0.x site's local copy which was taken 2 years ago. Is it possible to migrate that posts to my Wordpress site?

Or should I copy-paste all content to a CSV file and use an Excel importer ?

Upvotes: 1

Views: 130

Answers (3)

Obmerk Kronen
Obmerk Kronen

Reputation: 15949

Not specifically for Joomla , but I have made such a thing in the past several times while migrating from some Custom Cms's

It will depend on HOW BIG is your site and how much information you need to migrate (and it's complexity) but you can always go for HTML SCRAPPING / PARSING. As from this point , GIYBF . And your Coding skills.

One of the best one IMHO is Simple HTML DOM ,and another that many recommend but I personally never used are htmlSQL And phpquery .

But there are also a lot of Tutorials on google ( here also and EXAMPLE TUT) explaining how to do it , and also a lot of questions here on SE and a list of options (not PHP exclusive). The other option (which is basically the same , but without libraries) , is going or REGEX , like in this very simple example..

Upvotes: 1

Brent Friar
Brent Friar

Reputation: 10609

If you don't have the DB, then you don't have the content. All of the content on a Joomla site is stored in the DB. If you only have the Joomla files, there is nothing to copy and paste in to a CSV.

Upvotes: 1

George Wilson
George Wilson

Reputation: 5705

Try using this script. http://azeemkhan.info/2008/joomla2wordpress-import-wizard-v3/ Note you will need to install an old version of wordpress first and THEN upgrade your wordpress version.

There's a useful guide on this here and info on utf-8 support here.

Hope this helps

Upvotes: 0

Related Questions