Hi!! Please help me!!!
I did a normal page to upload a file using this form:
<form enctype="multipart/form-data" action="upload.php" method="post">
<input type="hidden" name="MAX_FILE_SIZE" value="300000" />
File name: <input name="nombre_archivo" type="file">
<input type="submit" value="Upload">
</form>
The script catches the file perfectly in my machine. I want to publish my script in our production server, and when anyone try to upload a file, the server do some strange things (randomly):
1. inteinfo.exe starts using 100% of the CPU until I kill it
2. A process starts to create MANY files (more than 50,000) in the upload temp dir, this files are named phpXXX.tmp
3. It seems to upload the file, but the name doesnt correspond the the original (the name is detected something like "____________F56827394").
I repeat, this works perfectly in my computer!! but in the server don't... I already change permissions to "Everyone" all the power in the temp directory, in the destination directory (I'm using move_uploaded_file to move the file)
PLEASE HELP IS NEEDED!!!