laravel file_put_contents(): Exclusive locks are not supported for this stream

后端 未结 5 2095
無奈伤痛
無奈伤痛 2021-01-07 12:08

I tried to upload my site to laravel to host and be configured but I couldn\'t load the project. The error is as follows:

file_put_contents(): Exclusi

5条回答
  •  粉色の甜心
    2021-01-07 12:35

    Try to remove the following line of code in your path:

    public function put($path, $contents, $lock = false)
        {
            return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
        }
    

    and replace it with this one below:-

    public function put($path, $contents, $lock = false)
    {
        return file_put_contents($path, $contents, 0);
    }
    

提交回复
热议问题