class.upload.php is a powerful and mature PHP class to manage uploaded files, and manipulate images in many ways. The script is available under a GPL license.
Hello again! We noticed an inconsistence in this line:
$translation['uploaded_err_extension']
= 'File upload error (file upload stopped by extension).';
Many people won't understand what an extension could do for a file to not be uploaded. Correct me if I'm wrong: I changed it to:
$translation['uploaded_err_extension']
= 'File upload error (extension not allowed for upload).';
- I thought it's about the php server configuration that could allow/disallow different extensions to be uploaded to the server. Is it correct? Should it sound differently?
We noticed an inconsistence in this line:
Many people won't understand what an extension could do for a file to not be uploaded.
Correct me if I'm wrong: I changed it to:
- I thought it's about the php server configuration that could allow/disallow different extensions to be uploaded to the server.
Is it correct? Should it sound differently?
Thanks in advance!