We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff3caba commit 9c1464dCopy full SHA for 9c1464d
ZendServer/DepH/Path/Path.php
@@ -181,8 +181,9 @@ public function createWriteableDir($dir) {
181
$this->shell->exec("mkdir -p $dir");
182
183
$gid = $this->params->getWebserverGid();
184
+ $uid = $this->params->getWebserverUid();
185
- $this->shell->exec("chown -R zend:$gid $dir");
186
+ $this->shell->exec("chown -R $uid:$gid $dir");
187
$this->shell->exec("chmod -R 0775 $dir");
188
}
189
0 commit comments