skip to Main Content

enter image description here

php version => PHP 7.4.23 (cli)
laravel version => Laravel Framework 7.30.4

2

Answers


  1. User variable is written in capital letters

    chown -R $USER:www-data storage
    
    Login or Signup to reply.
  2. $USER is a special shell variable (also referred to as an enviroment variable) that will always contain the username of the user running the process.

    $user is a different (and empty) variable.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search