I cannot see any location to enter in an rss feed into it on my drupal site. I am using Drupal 6.0 rc1, and I have the block set to be visible, but whenever I go to the site configuration page and when I click on fbstatus - it just seems to reload the same page again.

If you do not have invisble URL's set, this is the address:
?q=admin/settings/fbstatus
and it shows the same thing as
?q=admin/settings

I am using the first account created, so permissions shouldn't be a problem.

CommentFileSizeAuthor
#1 fbstatus-6-test.tar30 KByelvington

Comments

yelvington’s picture

StatusFileSize
new30 KB

Sorry, mea culpa.

I managed to get my CVS tags all bungled up when I uploaded that version. The 5.x release is correct, but the 6.x version is actually a 5.x version. Since the menu API has been extensively changed, it won't work.

I'm traveling at the moment and don't have time/battery power to fix the CVS, but here (attached) is a tarfile of the 6.x version that is working on my laptop. I'd appreciate if you'd test. Thanks.

tnanek’s picture

Okay, in checking the log, the prior instances, the entry was "ERROR: NO FBSTATUS URL HAS BEEN SET" and now it is: "Could not fetch".

Same thing happens as prior when looking for it.

yelvington’s picture

function _fbstatus_get_status() {
  if (!user_access('access fbstatus')) return;
  if ((!$cache = cache_get('fbstatus')) || ($cache->expire < time())) {
    // get the status
    $statusurl = variable_get('fbstatus_url', '');
    if ($statusurl == '') return '';
//                 ^^^^^^ make sure that has a doubled equal sign

This will be fixed in the -dev version when I get a chance to post it.

yelvington’s picture

Status: Active » Closed (fixed)

Closing, as this is fixed in the current -dev tarball.