Hi!
I'm using the function move_uploaded_file in order to upload images on a server. My problem: It's not possible to upload a *.bmp file. Maybe this is not possible with PHP's HTTP POST method, but I can't find a documentation. Does anybody knows, if it's possible to configure PHP, that it's possible to upload bitmaps?
I think the problem might be that the .bmp files you are trying to upload exceed the upload_max_filesize or maybe post_max_size (php.ini directives) and your script times out.
As far as I know, there is no file extension restriction directive in php (as far as uploads go).
-- Burhan Khalid phplist[at]meidomus[dot]com http://www.meidomus.com ----------------------- "Documentation is like sex: when it is good, it is very, very good; and when it is bad, it is better than nothing."
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php