Please set below directory and file permission to 777 and reload page.
- Php (version required) $val) { ?>
dbfdg $currentVersionFull, 'version' => $currentVersion, ]; } $minPhpVersion = '7.2'; $arrPermissions = []; $arrPermissions['storage/framework/'] = __DIR__ . "/storage/framework/"; $arrPermissions['storage/framework/cache/'] = __DIR__ . "/storage/framework/cache/"; $arrPermissions['storage/framework/sessions/'] = __DIR__ . "/storage/framework/sessions/"; $arrPermissions['storage/framework/views/'] = __DIR__ . "/storage/framework/views/"; $arrPermissions['storage/logs/'] = __DIR__ . "/storage/logs/"; $arrPermissions['bootstrap/cache/'] = __DIR__ . "/bootstrap/cache/"; $arrPermissions['resources/lang/'] = __DIR__ . "/resources/lang/"; $arrPermissions['.env'] = __DIR__ . "/.env"; $arrPer = []; $err = 0; foreach($arrPermissions as $key => $value) { $permission = ltrim(substr(sprintf('%o', fileperms($value)), -4), 0); $arrPer[$key] = ltrim($permission, 0); if($permission < '777') { $err = 1; } } // Check PHP Version $allowed_version = version_compare(getPhpVersionInfo()['version'], $minPhpVersion, ">="); if(!$allowed_version) { $err = 1; } // If all directory has and .env file has permission then redirect to main File if($err != 1) { require_once __DIR__ . '/public/index.php'; die; } // end ?>
Please set below directory and file permission to 777 and reload page.