Cannot create cache directory .. or directory is not writable. Proceeding without cache in Laravel(无法创建缓存目录.. 或目录不可写.在 Laravel 中进行无缓存)
问题描述
我创建了一个新的 Laravel 项目.当我去终端安装依赖时 composer
显示以下警告:
I created a new Laravel project. When I go to the terminal to install the dependecies composer
displays the following warning:
无法创建缓存目录/home/w3cert/.composer/cache/repo/https---packagist.org/,或者目录不可写.继续进行而不使用缓存.
推荐答案
更改文件夹的组权限
sudo chown -R w3cert /home/w3cert/.composer/cache/repo/https---packagist.org
还有 Files 文件夹
and the Files folder too
sudo chown -R w3cert /home/w3cert/.composer/cache/files/
我假设 w3cert 是您的用户名,如果没有将第 4 个参数更改为您的用户名.
I'm assuming w3cert is your username, if not change the 4th parameter to your username.
如果问题仍然存在,请尝试
If the problem still persists try
sudo chown -R w3cert /home/w3cert/.composer
现在,您可能无法创建应用目录,如果发生这种情况,请对您的 html 文件夹或您尝试在其中创建 laravel 项目的文件夹执行相同操作.
Now, there is a chance that you won't be able to create your app directory, if that happens do the same for your html folder or the folder you are trying to create your laravel project in.
这篇关于无法创建缓存目录.. 或目录不可写.在 Laravel 中进行无缓存的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无法创建缓存目录.. 或目录不可写.在 Laravel 中进行无缓存
基础教程推荐
- Libpuzzle 索引数百万张图片? 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在多维数组中查找最大值 2021-01-01