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
Comment #1
LaNets commentedHi,
Seems you have declared 2 times the HTML tag.
It should be like this.
Comment #2
giovannizero commentedah, I fixed that but it doesn't seem to have resolved the issue.
Comment #3
LaNets commentedMake sure you have this file in the right place.
sites/all/modules/fbconnect/xd_receiver.html
Comment #4
giovannizero commentedIts 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.
Comment #5
giovannizero commentedIve been looking at it and it appears that both xd_reciever.html and login_status.php are being declared twice somehow.
Comment #6
giovannizero commentedI 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"
)
Comment #7
budda@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.
Comment #8
vectoroc commented