|
Hello
I am going to assume by your description of no file appearing that they are attempting to upload a huge file to your site. The big issue here is your not limiting your filesizes and that should always be set a tad lower than your PHP's max upload filesize limit which on a default setup is 2mb. This is why no file is appearing cause PHP itself is dropping the file upload. You would need to edit your php.ini file and raise the max upload file size allowed or ask you host to if you want to upload files larger than 2mb.
|