Since you are using Debian OS, the easiest fix for this issue is to modify the configuration file "/etc/phpmyadmin/config.inc.php"
- Open /etc/phpmyadmin/config.inc.php in an editor.
$ vi /etc/phpmyadmin/config.inc.php
- Search for the line containing $cfg['TempDir'] and if it's not there, make the following changes to add $cfg['TempDir'] = '/tmp';
From
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';
to
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';
$cfg['TempDir'] = '/tmp';
Reopen phpMyAdmin in the browser. The problem should be gone.