for the lazy one,
open installer.php
go to private function setPermsOnItem($path, $perms)
replace the entire content inside {}
if (($ result = self :: chmod ($ path, $ perms)) === false) {
self :: log (“ERROR: Couldn’t set permissions of $ path <br/>”);
} else {
self :: log (“Set permissions of $ path <br/>”);
}
return $ result;
/////////////// looks like this ////////////////
private function setPermsOnItem($path, $perms)
{
if (($result = self::chmod($path, $perms)) === false) {
self::log(“ERROR: Couldn’t set permissions of $path<br/>”);
} else {
self::log(“Set permissions of $path<br/>”);
}
return $result;
}
//// i got it from duplicator\installer\installer.tpl ////
-
This reply was modified 4 years, 1 month ago by binmadie. Reason: update code