im using Azuer web app, and im trying to upload large files using php code normal php code , so if i upload small files like 12 MB it will upload successfully but if i try larger the result is "The resource you are looking for has been removed, had its name changed, or is temporarily unavailable"
So edit php.ini
display_errors=On
memory_limit = 5920M
upload_max_filesize= 5120M
post_max_size =5220M
max_input_time = 6000000
max_execution_time = 600000000
also .user.ini
; Example Settings
display_errors=On
memory_limit = 5920M
upload_max_filesize= 5120M
post_max_size =5220M
max_input_time = 6000000
max_execution_time = 600000000
and web.config
<httpRuntime executionTimeout="99999999" maxRequestLength="2000000000" />
also i enable the file extentions that i need in web.config
the result is the same message , so please i need a help.
memory_limit, upload_max_filesize, post_max_sizeshould be enough to increase upload size. I'd be really careful setting thismax_execution_time, max_input_timeglobally, if you need to increase it I would do it at run time usingset_time_limitNone of that will fix your problem though. - ArtisticPhoenixHTTP Error 404.0 - Not Found The resource you are looking for has been removed, had its name changed, or is temporarily unavailablePerhaps you have rewrite rules in .htaccess that are causing issues. - ArtisticPhoenix