Hello all,
I made a form that users can choose a file(image/audio/video) then upload to our server with PHP.
Everything works well with files that have size < 1MB.
The files are bigger than 1MB will be rejected.
I add these in the PHP but nothing change:
ini_set('upload_max_filesize', '10M');
ini_set('post_max_size', '10M');
ini_set('max_input_time', 300);
ini_set('max_execution_time', 300);
Appreciate with your expertise!