Reputation: 15091
Works fine on local host, but not on Laravel Nova. The error is so generic as below.
Initially I thought its the timeout on Vapor, so I set it to 60 seconds, but the error still persists.
The document file failed to upload.
No error logs whatsoever.
Upvotes: 0
Views: 673
Reputation: 815
It's PHP problem
once you increase these values in php.ini
you are good to go.
memory_limit
upload_max_filesize
post_max_size
you may need to restart apache
systemctl restart apache2
Upvotes: -1