It looks like you're new here. If you want to get involved, click one of these buttons!
chmod($TmpFile, 0775);
$Result = rename($TmpFile, $File); // Returns false.
After I modified code as follows, setup completed successfully:
chmod($TmpFile, 0775);
if(is_file($File)) {
unlink($File);
}
$Result = rename($TmpFile, $File);
Comments
Vanilla developer [GitHub, Twitter]
Vanilla developer [GitHub, Twitter]
Vanilla co-founder
This code will be available in 2.0.18.2. The commit is available here.
Vanilla co-founder