Hello all,
my ISP upgraded to php4.0.6, redhat 7.2, apache 1.3.19. Now my file upload gives the famous error: Internal Server Error 500.
I called support and they say my script is invalid. I know this is supposed to work!
My html is this:
<form enctype="multipart/form-data" action="test.php" method="post">
File: <input type="file" name="userfile">
<input type="submit" value="send file">
</form>
My php script is:
#!/usr/local/bin/php
<?php
phpinfo();
?>
They say that because i'm not doing anything with the file, my script can't work. I'm 100% sure that they're wrong, but I can't convince them.
I spent 7 hours on this problem, looking for bug reports on php, redhat, apache, and can't find anything. I can't convince my ISP that there is a problem.
What can I do? I could install apache/php on my PC to prove that the code is okay, but that seems like a lot of work.
Would anyone have that code running? Is there a PHP recognized master that would be able to convince them that a single phpinfo() is fine?
Thanks,
F.