Hello, maintainers,

Need your help in the next issue.

I've created xml file with module Node export (D6).
I've created aimed content type [content_type_which_i_want_to_do_import] in Drupal 7.
After I try to use this file into Feeds module in Drupal 7 and import it
But after Importing the message "There are no new nodes" appears.

Settings in custom Feed importer are below:

Basic settings:

Attach to content type: Use standalone form

Fetcher: File upload

Parser: Common syndication parser

Processor: Node processor
Settings -> Content Type: [content_type_which_i_want_to_do_import]
Mapping: Item GUID GUID (checked Unique Target)
Title Title

Have you got any thoughts where is the reason?

Comments

dgtlmoon’s picture

Category: bug » support
lyricnz’s picture

Suggest you post the URL of the feed you are consuming. It may have invalid GUIDs.

Bhanuji’s picture

I too have same problem,
where i am trying to upload a xml file, then i getting msg like no new nodes where created.

xml will be like this

<REPORT>
<HEADING>Heating_1</HEADING>
<CONTENT>Spontaneous  appeal </CONTENT>
<RATING>5</RATING>
<RATING2>5</RATING2>
<INTENSITY>85</INTENSITY>
<KEYWORDS>confident, commanding</KEYWORDS>
<MOOD>Nice</MOOD>
</REPORT>

can please till me

Thanks in advance..
Bhanu

Kargavibe’s picture

Issue summary: View changes

I have the same problem here. When i put a url then import an xml the message that shows to me is: "There are no new nodes"

megachriz’s picture

Status: Active » Fixed

It is possible that Feeds parses the source differently than you would expect. I have developed a tool to help with debugging imports: Feeds import preview allows you to see what your source looks like after it has been parsed.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.

apurwa’s picture

Guys,
I think I know the solution to this.

In my case, the title field of the target content type was a required field.
Earlier, my mapping was not configured to populate this field.
Since the node could not be created without populating this required field, no new nodes.

Hence, even though there was no issue with XML import, new nodes could not be created.

Hence, please make sure that the required field of the target content type are properly mapped with the items of the source feed.

P.S.
The debug feature is highly appreciable.

Good Luck.