0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

WriteBlob Failed `/var/www/html/hoge/storage/ai/00072-2005651837.png' @ error/png.c/MagickPNGErrorHandler/1642

Posted at

表題の通りのエラーが出た。

ということで修正しましょう。

storageのパーミッションを変更

chmod -R 777 storage
chown -R your storage

今後のために以下もやっておきましょう。

参考
https://syuntech.net/php/laravel/laravel-log_permission-denied/

ユーザーグループの作成、追加

groupadd laravel
gpasswd -a root laravel
gpasswd -a nginx laravel
chown -R :laravel ./storage
chown -R :laravel ./bootstrap/cache

出力されるログ・ファイルのパーミッションを変更

/config/logging.php
'daily' => [
    'driver' => 'daily',
    'path' => storage_path('logs/laravel.log'),
    'level' => 'debug',
    'days' => 14,
'permission' => 0664,  /****追加***/
],

出力されるファイルのグループ変更

chmod 2755 storage
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?