无法创建缓存目录.. 或目录不可写.在 Laravel 中进行无缓存

Cannot create cache directory .. or directory is not writable. Proceeding without cache in Laravel(无法创建缓存目录.. 或目录不可写.在 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 中进行无缓存的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)