I'm having issues in uploading files using PHP. The files are hosted on AWS. My form looks like this:
<form name="hello" method="post" action="" enctype="multipart/form-data" >
<label>Image</label>
<input type="file" name="image" />
<label>Audio file</label>
<input type="file" name="audio_file" />
<input type="submit" value="Add" />
</form>
When i submit this form nothing happens the page keeps on loading. I tried by removing one file control and it worked fine i.e one file was uploaded successfully. If i submit only one file then it works fine but not when there are two different file controls.
PHP ini settings looks like this:
max_file_uploads 10
memory_limit 1024M
upload_max_filesize 32M
post_max_size 32M
Not sure what's the issue.
Thanks!