gpt4 book ai didi

php - Laravel League\Flysystem\Exception : Impossible to create the root directory

转载 作者:行者123 更新时间:2023-12-04 02:01:13 29 4
gpt4 key购买 nike

我有这段代码可以在我的本地电脑 (MAC) 上完美运行,但是当我将所有内容都插入生产时会出现此错误:

local.ERROR: League\Flysystem\Exception: Impossible to create the root directory


foreach (explode('#', $pics_urls) as $url)
{
$curlCh = curl_init();
curl_setopt($curlCh, CURLOPT_URL, $url);
curl_setopt($curlCh, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curlCh, CURLOPT_SSLVERSION, 3);
$curlData = curl_exec($curlCh);
curl_close($curlCh);
if(!empty($curlData)) {
Storage::disk('local')->put('public/photos/' . $bid->lot_id . '/' . ++$num . '.jpg', $curlData);
}
}

我该如何解决这个问题?

最佳答案

我刚刚遇到了这个错误。这实际上是相同的错误,但项目依赖项之一试图创建一个名为 /something 的文件夹。它失败了,因为我的用户没有权限在硬盘的根目录中创建文件夹。

我的解决方案是做 sudo mkdir /something ,然后 composer install工作。

如果其他人偶然发现这一点,这绝对与许可有关。

关于php - Laravel League\Flysystem\Exception : Impossible to create the root directory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47159463/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com