We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I found a validation error when trying to fix the PHP8 warning issue see #26
When I compare the $options['maxSize'] VS $file['size'] they use different size format so they cannot be compared correctly.
$options['maxSize']
$file['size']
So maxSize must be set in bytes not megabytes (because the code does not have any conversion). The value need to be changed in Javascript and in PHP.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I found a validation error when trying to fix the PHP8 warning issue see #26
When I compare the
$options['maxSize']
VS$file['size']
they use different size format so they cannot be compared correctly.So maxSize must be set in bytes not megabytes (because the code does not have any conversion).
The value need to be changed in Javascript and in PHP.
The text was updated successfully, but these errors were encountered: