diff --git a/src/Install/Prerequisite/WritablePaths.php b/src/Install/Prerequisite/WritablePaths.php index 5dcbbf8a46..a757ea6328 100644 --- a/src/Install/Prerequisite/WritablePaths.php +++ b/src/Install/Prerequisite/WritablePaths.php @@ -53,7 +53,7 @@ private function getNonWritablePaths(): Collection })->map(function ($path, $index) { return [ 'message' => 'The '.$this->getAbsolutePath($path).' directory is not writable.', - 'detail' => 'Please chmod this directory'.(in_array($index, $this->wildcards) ? ' and its contents' : '').' to 0775.' + 'detail' => 'Please make sure your web server/PHP user has write access to this directory'.(in_array($index, $this->wildcards) ? ' and its contents' : '').'. Read the installation documentation for a detailed explanation and steps to resolve this error.' ]; }); }