ID: 17978 Comment by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: HTTP related Operating System: Windows 2000 Server PHP Version: 4.2.1 New Comment:
i used to have the same problem but now i receive 200M uploads on my apache server running on php4.3orc3 I�ve changed my php.ini file like this: ;;;;;;;;;;;;;;;;;;; ; Resource Limits ; ;;;;;;;;;;;;;;;;;;; max_execution_time = 0 max_input_time = 0 memory_limit = 8M ;Maximum size of POST data that PHP will accept. post_max_size = 240M file_uploads = On ; Maximum allowed size for uploaded files. upload_max_filesize = 240M it has been working fine 4 me!!! my server is in portugal and i have received 200Mb file from a friend in Canada! it shoul work 4 u!... Previous Comments: ------------------------------------------------------------------------ [2002-07-05 14:13:11] [EMAIL PROTECTED] Sorry, but the bug system is not the appropriate forum for asking support questions. Your problem does not imply a bug in PHP itself. For a list of more appropriate places to ask for help using PHP, please visit http://www.php.net/support.php Thank you for your interest in PHP. Not likely any problem with PHP but IIS/Windows..etc. ------------------------------------------------------------------------ [2002-06-26 15:20:20] [EMAIL PROTECTED] As I think it may happen, whan uploading a file bigger than 500k, the web browser shows the URL: res://C:\WINNT\System32\shdoclc.dll/dnserror.htm#http://192.168.0.15:1080/teste.php Thanks in advance for any help. ------------------------------------------------------------------------ [2002-06-25 14:52:11] [EMAIL PROTECTED] I'm trying to make a page for file uploads. For small files, everything goes ok, but doesn't work when I try to upload large files. The limit size for uploading is suposed to be 100Mb. I've set up my php.ini with this config: post_max_size = 100M memory_limit = 128M upload_max_filesize = 100M When I access through http://localhost/upload.htm, and post a large file, Ok. But if I access the page remotely, or even locally, but using my LAN IP Address (http://192.168.0.15/upload.htm) and post a large file, either browser stays as is (hangs) or, most commonly, the browser shows a "server not found"/"page cannot be displayed" page, instantly. But, as I sad, this problem occurs only when posting large files. Additional config: Browsers: Internet Explorer 6 and Netscape 7 (netscape pops a "document contained no data" message) Server API: CGI PHP Version: 4.2.1 Server Software: Microsoft-IIS/5.0 Here goes the scripts: // ----- upload.htm ------ // <form action="upload.php" method="post" enctype="multipart/form-data" name="form1"> <p> <input type="hidden" name="MAX_FILE_SIZE" value="102400000"> <input name="file_name" type="file" id="file_name"> </p> <p> <input type="submit" name="Submit" value="Send"> </p> </form> // ----- upload.php ------ // <?php $temp_file_name = $HTTP_POST_FILES['file_name']['tmp_name']; $original_file_name = $HTTP_POST_FILES['file_name']['name']; move_uploaded_file($temp_file_name, $original_file_name); ?> ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=17978&edit=1
