ENXF NET
Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
- Joined
- Nov 13, 2018
- Messages
- 27,123
- Points
- 823
Reputation:
When importing a style archive, XenForo may copy files over existing files.
This operation is not atomic and thus those files may be accessed by a client in an inconsistent state (eg. half-written).
XF\Service\Style\ArchiveImport::copyAssetFiles
Code:
While there...
Read more
Continue reading...
This operation is not atomic and thus those files may be accessed by a client in an inconsistent state (eg. half-written).
XF\Service\Style\ArchiveImport::copyAssetFiles
Code:
Code:
if ($this->rewriteAssetPaths)
{
File::copyFileToAbstractedPath($pathname, $dataUriPrefix . $stdPath);
}
else
{
$newPathPrefix = \XF::getRootDirectory() . $DS;
File::copyFile($pathname, $newPathPrefix . $stdPath);
}
While there...
Read more
Continue reading...