I had a problem on one of the WordPress installation where directory returned by sys_get_temp_dir was not writeable by php and changing WP_TEMP_DIR did not help (because the plugin was not taking that into account).
Changing sys_get_temp_dir to Wordpress function get_temp_dir helped.
I had a problem on one of the WordPress installation where directory returned by
sys_get_temp_dir
was not writeable by php and changingWP_TEMP_DIR
did not help (because the plugin was not taking that into account).Changing
sys_get_temp_dir
to Wordpress functionget_temp_dir
helped.