All,
I've been madly working on building a site from the ground up with Drupal. I've pretty much nailed things down, and gotten everything to behave the way I want it. But, lately, I've noticed a bug with form posting. On occasion, I fill in a form (eg a "Comment" form), then click "preview", then "submit". Sometimes, I get nothing but a blank page back, with only the following HTML source in it:
<html><body></body><html>
The URL string is set to:
http://10.0.0.12/node.php?id=8&PHPSESSID=0d9d6122dee3ff365b9fced83fa5b85a
Which is interesting, because I thought that PHP Sessions
weren't used in Drupal. I've noticed if I delete the Ampersand to the end of the Session ID, then resubmit, it'll work fine. Finally URL I actually submit looks like:
http://10.0.0.12/node.php?id=8
I suspect the form posted correctly, and now I'm just viewing the results of that?
I'm running Drupal 4.1.0 final/release code, PHP 4.2.2 on Apache 2.0.40 on a RedHat 8.0 Linux platform. Backend is MySQL 3.23.54.
I've so far only noticed it happening on Mozilla 1.2.1 and Mozilla 1.3. However, I haven't been heavily testing any other browser.
Is there a known issue here, or is this something I can fix? I can't have this sort of behavior with a production site. If there is more detail I can provide, or anything I can do or try to troubleshoot, let me know.