Moved laravel boot after ProcessMaker loads its evironment constants. (PATH_DATA for shared folder)
This commit is contained in:
davidcallizaya
2017-08-07 13:02:26 -04:00
parent cd0bd1d25b
commit 21a0b9508e
13 changed files with 52 additions and 28 deletions

View File

@@ -1749,8 +1749,8 @@ class Installer extends Controller
private function verifySharedFrameworkPaths($sharedPath)
{
$paths = [
$sharedPath.'framework' => 0770,
$sharedPath.'framework'.DIRECTORY_SEPARATOR.'cache' => 0770,
$sharedPath . 'framework' => 0770,
$sharedPath . 'framework' . DIRECTORY_SEPARATOR . 'cache' => 0770,
];
foreach ($paths as $path => $permission) {
if (!file_exists($path)) {