0

I used laravel 5.4 and voyager 1.1, i updated the background image of admin page in Setting Menu. It shows an error. This error is still an issue ? or something i'd missed in my installation or configuration?

some features is working fined!

(1/1) NotReadableException
Unable to find file ().
Ariel Pepito
  • 619
  • 4
  • 13

1 Answers1

0

I had the same problem, and I solved it.

The problem:

PHP 8.1.8, Laravel 9.22.0 in Laragon

Intervention\Image\Exception\NotReadableException Unable to find file ().

The solution:

Add this entry in your php.ini:

upload_tmp_dir = "YOUR_TEMP_DIR";

and reload the server.

Jeremy Caney
  • 7,102
  • 69
  • 48
  • 77