mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-05 15:37:03 +03:00
Set static and themes folder to 0755
This commit is contained in:
parent
c823ef6eae
commit
e0fa23822c
1 changed files with 6 additions and 2 deletions
|
|
@ -197,12 +197,15 @@ abstract class Upgrade
|
||||||
if (!$sTmp) {
|
if (!$sTmp) {
|
||||||
throw new \Exception('Failed to download latest SnappyMail');
|
throw new \Exception('Failed to download latest SnappyMail');
|
||||||
}
|
}
|
||||||
$target = \rtrim(APP_INDEX_ROOT_PATH, '\\/');
|
|
||||||
if (\class_exists('PharData')) {
|
if (\class_exists('PharData')) {
|
||||||
$oArchive = new \PharData($sTmp, 0, null, \Phar::GZ);
|
$oArchive = new \PharData($sTmp, 0, null, \Phar::GZ);
|
||||||
} else {
|
} else {
|
||||||
$oArchive = new \SnappyMail\TAR($sTmp);
|
$oArchive = new \SnappyMail\TAR($sTmp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$target = \rtrim(APP_INDEX_ROOT_PATH, '\\/');
|
||||||
|
\umask(0022);
|
||||||
\error_log('Extract to ' . $target);
|
\error_log('Extract to ' . $target);
|
||||||
// $bResult = $oArchive->extractTo($target, null, true);
|
// $bResult = $oArchive->extractTo($target, null, true);
|
||||||
$bResult = $oArchive->extractTo($target, 'snappymail/')
|
$bResult = $oArchive->extractTo($target, 'snappymail/')
|
||||||
|
|
@ -228,12 +231,13 @@ abstract class Upgrade
|
||||||
public static function fixPermissions($mode = 0755) : void
|
public static function fixPermissions($mode = 0755) : void
|
||||||
{
|
{
|
||||||
\clearstatcache(true);
|
\clearstatcache(true);
|
||||||
\umask(0000);
|
\umask(0022);
|
||||||
$target = \rtrim(APP_INDEX_ROOT_PATH, '\\/');
|
$target = \rtrim(APP_INDEX_ROOT_PATH, '\\/');
|
||||||
// Prevent Apache access error due to directories being 0700
|
// Prevent Apache access error due to directories being 0700
|
||||||
foreach (\glob("{$target}/snappymail/v/*", \GLOB_ONLYDIR) as $dir) {
|
foreach (\glob("{$target}/snappymail/v/*", \GLOB_ONLYDIR) as $dir) {
|
||||||
\chmod($dir, 0755);
|
\chmod($dir, 0755);
|
||||||
foreach (['static','themes'] as $folder) {
|
foreach (['static','themes'] as $folder) {
|
||||||
|
\chmod("{$dir}/{$folder}", 0755);
|
||||||
$iterator = new \RecursiveIteratorIterator(
|
$iterator = new \RecursiveIteratorIterator(
|
||||||
new \RecursiveDirectoryIterator("{$dir}/{$folder}", \FilesystemIterator::SKIP_DOTS),
|
new \RecursiveDirectoryIterator("{$dir}/{$folder}", \FilesystemIterator::SKIP_DOTS),
|
||||||
\RecursiveIteratorIterator::SELF_FIRST
|
\RecursiveIteratorIterator::SELF_FIRST
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue