Hi,

I just installed the 'chatroom' module, put chatroomread.php in the webserver's root directory, created a chat room node and a test chat node in it. As soon as I type something in the "Enter your message text here" field and press "Chat", the server access.log becomes flooded with messages like this, several times per second:

...23/Mar/2011:01:59:33 +0100] "POST /chatroomread.php HTTP/1.1" 200 57 " ...

HTTP means "Client request successful", but the chat message doesn't show up anywhere. "View in popout" opens an empty popup window. Accessing other pages from the sme site is blocked, until the browser has finished to work through a "queue" of hundres of accesses, probably to chatroomread.php, as logged by access.log. The hits in access.log keep flowing in, until another page was finally loaded with success.

To me this looks like a page refresh running amok, or like a broken URL rewrite looping infinitely. However, since not even the chat messages show up, something else seems to be off here with the 'Chatroom' module.

I'm using this rewrite rule in the site's .htaccess file:

  RewriteCond %{HTTP_HOST} ^mysite\.tld$ [NC]
  RewriteRule ^(.*)$ http://subdomain.mysite.tld/$1 [L,R=301]

Thanks & greetings,
-asb