Forums / General / import an existing static site in eZ.

import an existing static site in eZ.

Author Message

Olivier Moreau

Thursday 03 July 2008 2:32:51 pm

I'm looking for a way to import an existing static site in eZ. The site contains hundreds of pages and more than a thousand files. I don't feel doing that manualy :-(
Any suggestions ?

Piotrek Karaƛ

Thursday 03 July 2008 9:32:18 pm

Welcome to the community, Olivier!

I don't think I know all the available import extensions, but those that we used required some eZ expertise and at least understanding of how object attributes of certain datatypes behave. It may be especially difficult to move formatted docs into XMLBlock, especially if you do not have a consistent HTML structure.

Also, you should think of content structure. If your existing site has a complex structure that does not follow a proper tree model, then you will have some thinking and development to do. And I haven't seen any automated import for structures, either.

Above all, eZ Publish does not exactly work in page-like way, so before you start thinking of your import, if you do not have much eZ experience, I would recommend studying its content engine. It might be that your site should implement several classes of objects in order to benefit from eZ features.

Check here:
http://ez.no/developer/contribs/import_export

For files, I would use WebDAV for example, you will be able to upload those quickly, no relations thought, as far as I know:
http://ez.no/doc/ez_publish/technical_manual/4_0/features/webdav

Good luck,
Piotrek

--
Company: mediaSELF Sp. z o.o., http://www.mediaself.pl
eZ references: http://ez.no/partners/worldwide_partners/mediaself
eZ certified developer: http://ez.no/certification/verify/272585
eZ blog: http://ez.ryba.eu

Olivier Moreau

Friday 04 July 2008 6:27:32 am

Hi Piotrek and all

Thanks for your warm welcome in the eZ community, I much appreciate your quick reply.

Before posting, we checked the available features and import extensions and did not find much information for such a big issue (from our current point of view).

The basic principle of keeping content and designed separated would of course be hard to respect with a magic "import all" button. The design can be lost, because that's the reason for redoing the site ! The content cannot.

Files are easy with WebDAV and that's a good starting point.
The ideal import script for the database would be to :
- extract all the text from the static web pages and create correponding nodes with 3 attributes : title (text line), body (xml), creation_date (import date for separating old nodes from new ones).
- analyse the site structure and create a corresponding node tree (easy stuff, isn't it ?)

From that content level import, we would finish by hand by recreating the design.

However, your warning is clear :
"It may be especially difficult to move formatted docs into XMLBlock, especially if you do not have a consistent HTML structure."

Like any similar migration problem, the basic question is : "what is more efficient (time/money) : convert by hand or create the [import all] button ?"

Thanks again for your insight on this topic.