Ok, one last bug report and I'm calling it a night and a week(end). I have been testing raising the limits on my server to allow for larger file sizes. Here is what I have my php.ini set to right now:
Before today my max post size was 51 MB, max file upload was 50 MB, and memory limit was 128 MB.
So we've been testing uploading some larger files to the database. I'm one a fast connection, and I managed to upload a 64 MB file and a 183 MB file, each within 1-2 minutes. One of my users with a slow connection uploaded a 193 MB file in "roughly 1 hour and 7 minutes." All appear to have been uploaded successfully under the new php.ini settings.
Here's the problem. I can download the 64 MB file with no problem. When I try to download either of the very large files my browser (Chrome) tells me that it will take 50-something days to download and the number starts to get bigger, then a few seconds later (maybe 10) "completes" and each time I end up with a 220 byte file on my computer. Considering that all three files are over my old 50 MB file limit I'm not sure why only the 64 MB file is successfully downloading (at a normal speed no less) while the other two are just failing on me. Hopefully you can come up with some idea of what's going on. I'm willing to give access to my test domain if it helps find the problem.
---------- Post added at 22:28 ---------- Previous post was at 22:26 ----------
Oh, and I'm all alone on a dedicated server with plenty of RAM, if that is important.
;;;;;;;;;;;;;;;;
; File Uploads ;
;;;;;;;;;;;;;;;;
; Whether to allow HTTP file uploads.
file_uploads = On
; Temporary directory for HTTP uploaded files (will use system default if not
; specified).
;upload_tmp_dir =
; Maximum allowed size for uploaded files.
upload_max_filesize = 250M
; Maximum size of POST data that PHP will accept.
post_max_size = 251M
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
max_execution_time = 60 ; Maximum execution time of each script, in seconds
max_input_time = 60 ; Maximum amount of time each script may spend parsing request data
memory_limit = 256M ; Maximum amount of memory a script may consume (8MB)
Before today my max post size was 51 MB, max file upload was 50 MB, and memory limit was 128 MB.
So we've been testing uploading some larger files to the database. I'm one a fast connection, and I managed to upload a 64 MB file and a 183 MB file, each within 1-2 minutes. One of my users with a slow connection uploaded a 193 MB file in "roughly 1 hour and 7 minutes." All appear to have been uploaded successfully under the new php.ini settings.
Here's the problem. I can download the 64 MB file with no problem. When I try to download either of the very large files my browser (Chrome) tells me that it will take 50-something days to download and the number starts to get bigger, then a few seconds later (maybe 10) "completes" and each time I end up with a 220 byte file on my computer. Considering that all three files are over my old 50 MB file limit I'm not sure why only the 64 MB file is successfully downloading (at a normal speed no less) while the other two are just failing on me. Hopefully you can come up with some idea of what's going on. I'm willing to give access to my test domain if it helps find the problem.
---------- Post added at 22:28 ---------- Previous post was at 22:26 ----------
Oh, and I'm all alone on a dedicated server with plenty of RAM, if that is important.