Error FAQs
Fixing upload issue
Validator was throwing : "The Picture failed to upload". The image won't be allowed to upload
for filesize issue.
Edit the below config in /etc/php/<php_version>/apache2/php.ini.
upload_max_filesize = 50m
post_max_size = 50m
Refer to the below link: https://stackoverflow.com/questions/55786181/how-to-fix-the-file-failed-to-upload-error-using-any-validation-for-image-upl
Fixing log permission issue
For errors showing, "Permission denied for writing to storage/logs..."
chmod -R +777 ./storage/logs/
Fixing Imagick PHP extension error
Imagick PHP extension must be installed to use this driver.
Follow the documentation in Windows to resolve the error: here