Hello,
I tried to use form for the clients to upload file, as usual using enctype="multipart/form-data" and the code worked well in PHP3
But when the engine upgraded to PHP4, the user file cannot be uploaded, instead the following error message occurs:
Warning: File Upload Error - No Mime boundary found after start of file header in Unknown on line 0
This only happen if the file being uploaded is binary, eq: images (GIF/JPEG), executables, etc, but not happen if the file is from "text/xxxx" types eq: .html, .txt, etc ......
What I plan to do is copy the user-uploaded file from /tmp directory into another directory for use, but the file couldn't upload...
Thanks,