FeedBurner discovered more than one feed
-
Hi,
This is driving me crazy, and i havent find any solution for the problem, just bits and pices of information. can someone plese give me a hand??
I use to have a feed in feed burner but I migrate mi WP to another server and all of the sudden it stops working. So i delete it and now it dont let me create a new one. Every time I try it says: Identify
Feed Source
The feed URL you entered is:
https://www.app42day.com/es/feed/rss
FeedBurner discovered more than one feed at that address. Please select one to use as your source:
RSS .92: https://www.app42day.com/es/feed/rss
Atom 0.3: https://www.app42day.com/es/feed/atomAnd no matter how many times I clik next, that nothing happends. I read online that it can be a problem on the code of the header for my website, so I posting my header here:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <?php require( TEMPLATEPATH . '/functions/get-options.php' ); /* require theme options */ ?> <html xmlns="https://www.w3.org/1999/xhtml" <?php language_attributes(); ?>> <head> <!-- Meta Tags --> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <title><?php if (is_single()) {wp_title('|', true, 'right'); echo "App42day";} else {wp_title('|', true, 'right'); ?><?php bloginfo('name');} ?></title> <link rel="shortcut icon" href="favicon.ico" > <link rel="icon" type="image/gif" href="animated_favicon1.gif" > <!-- Stylesheets --> <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/resources/css/structure.css" type="text/css" media="screen" /> <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/style.css" type="text/css" media="screen" /> <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/resources/css/colour.php" type="text/css" media="screen" /> <!-- RSS, Atom & Pingbacks --> <link rel="alternate" type="application/rss+xml" title="<?php bloginfo( 'name' ); ?>" href="<?php $rssLink = (isset($tz_feedburner)) ? $tz_feedburner : bloginfo( 'rss2_url' ); ?>" /> <link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo( 'rss_url' ); ?>" /> <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo( 'atom_url' ); ?>" /> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> <!-- Theme Hook --> <?php wp_enqueue_script("jquery"); /* load jQuery from google */ ?> <?php wp_head(); ?> </head> <!-- end head --> <body class="main <?php if($paged != 0 || is_single() || is_404() || is_search() || is_archive() || is_page()) { echo('post'); } ?> <?php if(is_page_template('template-full-width.php')) { echo('fullWidth'); } ?> "> <div id="container" class="relative png"> <div id="logo"> <a href="<?php bloginfo( 'url' ); ?>" title="<?php bloginfo( 'name' ); ?>"><?php bloginfo( 'name' ); ?></a> </div> <div id="toolbar"> <p class="right"><?php _e('Subscribe', 'framework') ?> <?php _e('via', 'framework') ?> <a class="white" href="<?php echo $tz_feedburner; ?>"><?php _e('RSS', 'framework') ?></a></p> </div> <!-- Navigation --> <?php if ( has_nav_menu( 'primary-menu' ) ) { /* if menu location 'primary-menu' exists then use custom menu */ ?> <?php wp_nav_menu( array( 'theme_location' => 'primary-menu', 'menu_class' => 'nav', 'container' => '' ) ); ?> <?php } else { /*Fallback to displaying pages we know about*/?> <ul class="nav"> <li><a href="<?php bloginfo('url'); ?>" class="first"><?php _e('Home', 'framework'); ?></a></li> <?php wp_list_pages( array( 'exclude' => $tz_nav_exclude, 'title_li' => '', 'sort_column' => $tz_nav_order, )); ?> </ul> <?php } ?> <!-- end #nav -->
- The topic ‘FeedBurner discovered more than one feed’ is closed to new replies.