Ali Gajani
Ali Gajani

Reputation: 15091

File bigger than 2MB fails to upload on Nova 2 while using Laravel Vapor

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

Answers (1)

Maen
Maen

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

Related Questions