Hello, I use multi-upload JQuery control on my HTML page: ... <script src="include/jquery-latest.js" type="text/javascript" language="javascript"></script> <script src="include/jquery.MultiFile.js" type="text/javascript" language="javascript"></script> </head> <body> ... <input type="hidden" name="MAX_FILE_SIZE" value="4096"> <input type="file" name="property_pictures" class="multi" accept="gif| jpg|jpeg|jpe|bmp|png|mpg|mpeg|mov|avi|wmv" maxlength="7"> ...
The problem is that I receive UPLOAD_ERR_NO_FILE (Value: 4; No file was uploaded.) error in PHP5 script using $_FILES superglobal. I tried uploading files with typical <input type=file> and it works fine. Please help. Thanks in advance.