I worked out the database mappings and created a compatible xml schema that could be imported via a routine I wrote in to the database....it was a bit of a fuddle but got there
Main Topics
Browse All TopicsThanks for reading
I have has a good look around the joomla forums and help and thought I would give this place a shot.
I have a load of XML files that I want to import into Joomla..... I'm quite happy to translate the XML into a standard XML if that is what is needed....but I can't seem to find anything that is definitive on how you go about importing XML data into Joomla
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: gxp071Posted on 2008-10-16 at 03:50:41ID: 22729468
I've never come across a tool/plugin/component that does what you need. (that does not mean it doesn't exist) That being said it wouldn't be too difficult to write one as joomla stores articles in a fairly basic sql table and the 1.5 framework its easy to extend through components and plugins.
onent/opti on,com_jd- wiki/Itemi d,32/
omla-Exten sions/book
omla-one-p oint-five- extension- framework/ book
All you really need to do is write some php that parses your xml and fires off the correct sql queries, It would also mean you wouldn't have to adjust your current schema.
If you dont want to use php and learn how to make a joomla component you could just use some other language your comfortable with to parse the xml into and sql dump and patch your joomla db manually.
If you do decide to build a custom component heres some useful information:
to build a custom component you will need to use php and have a basic knowledge of sql, the best place to start is the tutorials on the developer documentation wiki on the joomla.org
http://dev.joomla.org/comp
also there are two great books on joomla extension development published by packtpub
Learning Joomla! 1.5 Extension Development: Creating Modules, Components, and Plugins with PHP -
http://www.packtpub.com/Jo
Mastering Joomla! 1.5 Extension and Framework Development
http://www.packtpub.com/jo
Learning Joomla is best for beginners but if you really want to understand how joomla works and build advanced components Mastering Covers everything.
hope that helps.