MariusMadalin
Looks like you are having temp directory issues. You need to either address your temp directory permissions for the webserver/PHP user/group or create your own temp directory with appropriate permissions for the webserver/PHP user/group and update your PHP INI to use this new directory (see sys_temp_dir
directive in PHP docs).
You may also need to add the system temp directory to your PHP INI open_basedir
directive.
Cheers.