permissionとは
linuxにはファイル一つ一つに管理権限があり、それを書き換えないとブラウザで表示できなかったりすることがある。
それをpermissionと呼び、必要に応じて書き換えていく。
permmission周りでエラー
Fuel\Core\FuelException[Error]:
Unable to create or write to the log file. Please check the permissions on /var/www/html/**/src/fuel/logs/2020
このとき、logsのディレクトリ にpermissionを与えてあげる必要があった。
chmod
を使って許可を与えてあげる
chmod 707 logs
私の場合はsshの接続先でファイルのパーミッションを与えてあげる必要があった。
[参考]
https://eng-entrance.com/linux-permission-basic
こちらがさらに分かりやすかったです。
http://www.tohoho-web.com/wwwxx012.htm