This error occurs if the rename in line 52 of
smarty_internal_write_file.php does fail.
rename does fail in some Windows versions when the target file is
existing, For that reasion Smarty does unlink the target file before
the rename.
Smarty does lock possible concurrent compilation of same template file
so that I do not expect a race condition for the unlock / rename
squence.
But for a test you could replace line 52 and 53 with
if (!(@rename($_tmp_file, $_filepath) || (@copy($_tmp_file,
$_filepath) && unlink($_tmp_file)))) {
Uwe
On Feb 1, 9:23 pm, aurelien gerits <
gerits.aurel...@gmail.com> wrote:
> On my server using vmware, I use windows + wamp seven
> Permissions can be associated with the virtual machine?
> I already use the SVN version:)
> Best regards
>
> 2012/2/1 uwe.tews <
uwe.t...@googlemail.com>