I need help for a strange issue to me. I am developing an application in PHP with an IIS server (I don't decide, don't blame me lol) and when I try to upload more than 6 files I don't get any error but a request not found from the script that uploads the files.
"NetworkError: 404 Not Found - https://dev-server-host/admin/admin-manage-file-uploads.php?add=1&inst=GalleryPic&doctype=img"
I thought the issue was in the PHP configuration for file uploads, but I have checked the limits are quite generous:
max_execution_time = 600
max_input_time = 120
memory_limit = 2000M
post_max_size = 1000M
upload_max_filesize = 1000M
max_file_uploads = 5000
Is there any configuration am I missing from IIS side?
I don't have a Web.config(*) file for this project, should I set up a Web.config file with upload parameters definition?
(*) Correct me if I am wrong but I think this file is only needed for ASP applications, for PHP this file is not processed.