由于作曲家权限问题,Symfony无法安装新的捆绑包



虽然尝试将新捆绑包安装到我的项目中 作曲家问题发生与权限有关的问题,问题随之而来

Script SensioBundleDistributionBundleComposerScriptHandler::installRequirementsFile handling the symfony-scripts event terminated with an exception
Installation failed, reverting ./composer.json to its original content.

[SymfonyComponentFilesystemExceptionIOException]                                                                                                                 
Failed to copy "/var/www/html/myProject/vendor/sensio/distribution-bundle/Composer/../Resources/skeleton/app/check.php" to "bin/symfony_requirements" because target file could not be opened for writing.                                                                                                                                    

谢谢。。。

您对文件bin/symfony_requirements的权限错误。修复它,一切都会像魅力一样工作

这可能会对您有所帮助:

sudo chmod -R 777 bin/symfony_requirements

检查其他目录和文件是否需要权限,例如在我的情况下:

sudo chown -R $USER web/

也是需要的。

此外,如果您在缓存和日志方面遇到问题,您可能会发现以下内容很有用:

 rm -rf var/logs
 rm -rf var/cache
 rm -rf vendor

然后使用composer install

相关内容

  • 没有找到相关文章

最新更新