Bazı hosting paketlerinde avatar yükleme sorunları yaşayanlar var. Aşağıdaki değişiklik bu soruna çözüm olabilir.
vendor\intervention\image\src\Intervention\Image\Commands\StreamCommand.php
Yolunu takip edin ve StreamCommand.php
dosyasını açın. Ve aşağıdaki kısmı bulun.
$this->setOutput(\GuzzleHttp\Psr7\stream_for(
$image->encode($format, $quality)->getEncoded()
));
Bunu aşağıdaki kod ile değiştirin.
$this->setOutput(\GuzzleHttp\Psr7\Utils::streamFor(
$image->encode($format, $quality)->getEncoded()
));