I have a site where people can upload photos and crop them. The code to do the upload is below:
<form action="scripts/ajax/ajax_photo_processing_functions.php?photos=photoUpload method="post" enctype="multipart/form-data">
<input type="file" name="file"><br>
</form>
I wanted to ask if I should be concerned with people uploading (or using a script/bot/hack/) to upload an endless number of photos until a server/php file system was 100% full and potentially caused the server to fall over.
I understand if this is a silly question but I just wanted to understand if other people see this as an issue and what they might do about it?
thx