I am attempting to get BirdFeeder working with a Drupal installation, and am running into the following error when I access the RSS Feed:
Call to a member function seed() on a non-object
My Birdfeeder call is as follows:
global $Mint;
global $Pepper;
global $BirdFeeder;
define('BIRDFEED', $channel['title']);
include_once('/path/to/feeder/index.php');
$node->link = $BirdFeeder->seed($node->title, $base_url);
The feed is available here to show the error. The include statement has an absolute path, as the Document Root path returned an incorrect value, so this had been changed in /feeder/index.php also.
Thanks in advance for your help.