|
Page 2 of 4
The CSV application functionality is rather simple. First it asks for section and category for you to select. Then you will be asked for the name of the CSV file to import. XML format is as follows,
<xml>
<title>Title of the content</title>
<title_alias>alis of title </title_alias>
<intro_text>this is intro text</intro_text>
<main_text>thi is main text </main_text>
<title>one more title</title>
...
</xml>
Other Notes:
Notice:
1.Now you can only import the csv format file or xml format file.
2.The csv file is expected as below:
title,title_alias,meta_key,meta_description,introtext,maintext
"title_2","title_alias","meta keys","meta description","if the sentence has a comma,
please use double quotation marks at the begin and end","story:long long ago..."
title_3,"title_alias",,,"<font color=""red"">The content has double quotation marks.</font>","main text"
3.The xml file is expected as below:
<?xml version="1.0" encoding="utf-8"?> <JoomlaContent> <Content> <title>Here is title.</title> <title_alias>Here is title alias</title_alias> <meta_key>Here is meta keys</meta_key> <meta_description><![CDATA[ Here is meta description ]]> </meta_description> <introtext>Here is intorduce text</introtext> <maintext>Here is main text</maintext> </Content> <Content> <title>Here is title.</title> <title_alias>Here is title alias</title_alias> <meta_key>Here is meta keys</meta_key> <meta_description>Here is meta description</meta_description> <introtext>Here is intorduce text</introtext> <maintext><![CDATA[ Here is main text.<a href="#" >link </a> ]]> </maintext> </Content> </JoomlaContent>
4.You can not import the same title and same title alias to the same category.
|