I've been editing phpBB2 (2.0.4), specifically profile.php, to include one of those "type the string you see in the image into a textbox" human-verification thingies into phpbb's registration script. Now, they've obfuscated the code quite a bit, created 3 files instead of 1, and also they've gotten the registration and profile viewing/editing all done with the same function set. So, I managed to craftily incorporate my little functions into the form, but all of a sudden, the profile.php?mode=register form, which starts with
Code: Select all
<form action="profile.php" enctype="multipart/form-data" method="post">
Refuses to pass GET or POST variables. Completely. I tried everything I could think of, and I finally found out that the
enctype="multipart/form-data" is the culprit. Thing is, that line is necessary to allow avatar uploads, et cetera. Server is Apache 1.3.27, PHP 4.1.2, RedHat 7.3, no unusual extensions loaded. Am I doing something really dumb here, or what?