ID: 16353 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Open +Status: Feedback -Bug Type: FTP related +Bug Type: HTTP related Operating System: Irix 6.5 PHP Version: 4.0.6 New Comment:
I think it's a problem with your browser, not with PHP. Anyway, can you try the latest RC from www.php.net/~derick ? Previous Comments: ------------------------------------------------------------------------ [2002-03-29 16:28:08] [EMAIL PROTECTED] I have file uploads working with images, Word and Excel files and text files, but when I try to upload zip or visio files I see this message: "Unable to open 'none' for reading. No such file or directory..." It captures the name and mime type (application/x-zip-compressed and application/octet-stream, resp.) but $attachment is set to 'none' and $attachment_size is 0. Here's the relevant part of the form: <form method="post" name="form" action="uploadtest.php" enctype="multipart/form-data"> <input type="hidden" name="MAX_FILE_SIZE" value="100000"> <input type="file" name="attachment"> Here's the relevant part of the script that handles it: $strLength1 = strlen($attachment_name); if ($strLength1 > 0) { $suffix1 = substr($attachment_name,($strLength1 - 4),4); $upfile1 = "/www/pub/changecontrol/files/".$latestRecord."-1".$suffix1; //$latestRecord is defined earlier if (!copy($attachment,$upfile1)) { echo "Problem: Could not move file into directory."; exit; } } Any workaround for this? We're using Apache 1.3.18. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=16353&edit=1