Results 1 comments of mattimatti

FYI, I have the same issue fixed not using the saveAs function patched for windows $this->getTemplate()->saveAs($file_name); to this that uses rename $temp_filename = $this->getTemplate()->save(); if (file_exists($file_name)) { unlink($file_name); } rename($temp_filename,...