This may be similar to this bug report http://drupal.org/node/365259

When I try to load "/fbconnect/invite/friends" the content block of the page is blank, there is nothing to do there. Same with:
/fbconnect/logout (which means I can't logout)

Im running lighttpd and drupal 6.9 you're welcome to create an account and see for yourself http://dixonneighborhood.com

I thought it might be a permissions thing but change everything to 777 didn't help so I chmod'd it all back.
Thanks

Comments

LaNets’s picture

Hi,

Seems you have declared 2 times the HTML tag.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/2002/REC-xhtml1-20020801/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml">

It should be like this.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/2002/REC-xhtml1-20020801/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml" lang="en" xml:lang="en">
giovannizero’s picture

ah, I fixed that but it doesn't seem to have resolved the issue.

LaNets’s picture

Make sure you have this file in the right place.

sites/all/modules/fbconnect/xd_receiver.html

giovannizero’s picture

Its there, here is a screen shot of the file tree: http://skitch.com/todaywasawesome/brjyg/todaywasawesome.com

You'll probably notice that I placed there is a php folder in facebook-client, that contains the same stuff that is in facebook-client. After it didn't work I was afraid that I hadn't put the files in the right place so I just put them in both places.

giovannizero’s picture

Ive been looking at it and it appears that both xd_reciever.html and login_status.php are being declared twice somehow.

giovannizero’s picture

I suspect at this point that is it something to do with my rewrite config:

url.rewrite-final = (
"^(.*)\.asp(x?)$" => "$1.php",
"/rss.xml$" => "/index.php?q=rss.xml",
"^/([^.?]*)\?(.*)$" => "/index.php?q=$1&$2",
"^/search/(.*)$" => "/index.php?q=search/$1",
"^/([^.?]*)$" => "/index.php?q=$1",
"^/([^.?]*\.html)$" => "/index.php?q=$1",
"^/([^.?]*\.htm)$" => "/index.php?q=$1",
"^map\.xml$" => "/index.php?q=sitemap.xml",
"^map([^.?]*)\.xml$" => "/index.php?q=sitemap$1.xml"
)

budda’s picture

Status: Active » Postponed (maintainer needs more info)

@giovannizero were you able to get the fbconnect module working without your legacy rewrite config being active? i.e. on a plain Drupal 6 install.

The redirecting of all documents with the extension .html might have something to do with it.

vectoroc’s picture

Status: Postponed (maintainer needs more info) » Closed (fixed)