문제

I'm running Magento 2.4.2 and I'm using Composer v2.0.11. 2 days ago, after running, as usual, composer update, I suddenly received this error:

[ErrorException]
chmod(): Operation not permitted

You can see composer update -v output down below:

enter image description here

What I tried

  • I tried to apply chmod -R 777 . and chown -R www-data:www-data .
  • I tried to apply chmod u+x bin/magento

Any ideas?

도움이 되었습니까?

해결책 2

Setting the filesystem ownership to the magento user (dev in my case, while before was assigned to www-data user) fixed the problem: chown -R dev:www-data .

다른 팁

For windows

rm -rf vendor && composer install

For Ubuntu

sudo rm -rf vendor && sudo composer install
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top