I am trying to setup an opml import using the default importer, without changing anything, but trying both to associate a node the "Use standalone form.
However, I get a "There is no new content" when trying to activate this importer, and no error at all.

what can be wrong?

Attached the opml file that I am trying to process

Thanks for help

CommentFileSizeAuthor
feedreader.opml_.txt4.16 KBjvieille
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

jvieille’s picture

Here is my importer

$feeds_importer = new stdClass;
$feeds_importer->disabled = FALSE; /* Edit this to true to make a default feeds_importer disabled initially */
$feeds_importer->api_version = 1;
$feeds_importer->id = 'opml';
$feeds_importer->config = array(
  'name' => 'OPML import',
  'description' => 'Import subscriptions from OPML files. Use together with "Feed" configuration.',
  'fetcher' => array(
    'plugin_key' => 'FeedsFileFetcher',
    'config' => array(
      'direct' => FALSE,
    ),
  ),
  'parser' => array(
    'plugin_key' => 'FeedsOPMLParser',
    'config' => array(),
  ),
  'processor' => array(
    'plugin_key' => 'FeedsFeedNodeProcessor',
    'config' => array(
      'content_type' => 'feed',
      'update_existing' => 1,
      'mappings' => array(
        0 => array(
          'source' => 'title',
          'target' => 'title',
          'unique' => FALSE,
        ),
        1 => array(
          'source' => 'xmlurl',
          'target' => 'source',
          'unique' => 1,
        ),
      ),
    ),
  ),
  'content_type' => 'opml',
  'update' => 0,
  'import_period' => '-1',
  'expire_period' => 3600,
  'import_on_create' => 1,
);
twistor’s picture

Component: Feeds Import » Code
Issue summary: View changes
Status: Active » Closed (outdated)