does anyone have any tips (or step-by-step instructions) for installing birdfeeder code into the RSS and ATOM feeds in expression engine? i’m not having any luck getting it to work.
here are a few questions:
1) EE serves up the feeds as PHP, right? so i don’t have to jigger with the htaccess file or put the XML declaration into a PHP header and echo the head tag.
2) the feed templates in EE should be set to serve PHP on output, right?
all i’m getting are blank pages when trying to view my feeds.
currently i have this at the top of my ATOM feed:
<?php
global $Mint, $DB;
define('BIRDFEED', 'News Atom Feed');
include($_SERVER['DOCUMENT_ROOT'].'/feeder/index.php');
$DB->select_db(‘name_of_my_mint_DB’);
// WordPress users uncomment the following line
// $wpdb->select(DB_NAME);
?>