【发布时间】:2021-11-24 09:21:38
【问题描述】:
ErrorException file_put_contents(): 此流不支持独占锁!!
当我在 chrome http://127.0.0.1:8000 中打开新 Laravel 8 项目时显示此错误 它尝试了很多解决方案,但没有奏效!
【问题讨论】:
ErrorException file_put_contents(): 此流不支持独占锁!!
当我在 chrome http://127.0.0.1:8000 中打开新 Laravel 8 项目时显示此错误 它尝试了很多解决方案,但没有奏效!
【问题讨论】:
在 FileSystem.php 中替换(显示在错误中)
public function put($path, $contents, $lock = false)
{
return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
}
有
public function put($path, $contents, $lock = false) {
return file_put_contents($path, $contents, 0);
}
laravel file_put_contents(): Exclusive locks are not supported for this stream
和
https://github.com/octobercms/october/issues/969
或
【讨论】: