Martazanov Djambulat
Martazanov Djambulat

Reputation: 31

Caused by: yii\base\ErrorException mkdir(): Permission denied - YII2

I am getting this exception. How can I fix it?

Exception – yii\base\Exception
Failed to create directory "/var/www/html/sitr/runtime/cache": mkdir(): Permission denied
↵
Caused by: yii\base\ErrorException
mkdir(): Permission denied
in /var/www/html/site/vendor/yiisoft/yii2/helpers/BaseFileHelper.php at line 624

Upvotes: 3

Views: 4756

Answers (2)

realJema
realJema

Reputation: 1

sudo chmod 777 -R /var/www/html/sitr/runtime

Upvotes: -2

Danyal Sandeelo
Danyal Sandeelo

Reputation: 12391

  sudo chmod -R 775 /var/www/html/sitr/runtime

runtime folder keeps generating the files, allow it to do that.

Upvotes: 4

Related Questions