I need some help. I have a PHP script that takes a file upload, opens it and parses it into a MySQL DB. The file to be uploaded is expected to be around 35 megabytes. I tested the script with a smaller file and it worked fine. Trying it with the larger file, however, I get an error that it cant find the server / display the page.
My php.ini settings arent the cause (unless theres a relevant setting that I missed).
upload_max_filesize is large enough to accomodate the file and post_max_size is large enough to accomodate several of these files at once. I already have post_max_size set higher than upload_max_size and both are set larger than I ever actually needed. memory_limit is enabled, and is set larger than post_max_size. max_execution_time isnt a factor since, as I already stated, it is set via script and has no limit to execution-time.
safe mode is not an issue.
The script sets the maximum execution time and it has no limit.
I set timeout in apache configuration to a higher value and it still dies.
Help?😕