mgsmus
Evet denedim, bu iki methodu ekleyince yüklenen klasörlerde dosya izni sorunu oluşuyordu. GPT sayesinde bu sorunu da çözdüm. Örnek olması açısından aşağıda kod bırakıyorum.
$this->addMediaConversion('s')
->width(220)
->height(155)
->sharpen(10)
->quality(75)
->format('webp')
->nonOptimized()
->performOnCollections('images');
try{
$path = $media->getPath();
$folderPath = dirname($path);
if (File::exists($path)) {
File::chmod($path, 0755, true);
}
if (File::exists($folderPath)) {
chmod($folderPath, 0755);
}
if (File::exists($folderPath.'/conversions')) {
chmod($folderPath.'/conversions/', 0755);
File::chmod($folderPath.'/conversions/', 0755, true);
}
}catch(\Exception $e){
\Log::error($e);
}