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
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);
}