/var/softaculous/shopware
Edit: /var/softaculous/shopware/_upgrade.php (4361B)
'.$__settings['softpath'].'/config.php and delete the directory:
'.$__settings['softpath'].'/update-assets/';
if(sversion_compare($__settings['ver'], '5.2.1', '<')){
srm($__settings['softpath'].'/templates/');
srm($__settings['softpath'].'/cache/');
srm($__settings['softpath'].'/logs/');
srm($__settings['softpath'].'/UPGRADE.md');
}
if(sversion_compare($__settings['ver'], '5.2.10', '<')){
sunlink($__settings['softpath'].'/.php_cs');
}
}
//Check whether the Minimum Software configuration matches
function __requirements(){
global $__settings, $error, $software, $globals;
if($globals['os'] == 'windows'){
$error[] = 'Shopware is not supported on windows.';
}
return true;
}
?>