Lieben Dank für die Links, die folgende Anleitung scheint die Lösung zu verstecken.... alleine sie ist für Profis und nicht für Laien wie mich geschrieben. Können wir das mal Schritt für Schritt zusammen durchgehen. Wenn das nicht klappt, dann gebe ich's glaube ich jetzt auf .... Hah... leider bist du gerade offline ... aber vielleicht hast du ja zeitnah noc ein Auge drauf. Danke schon im voraus !!!!
" I’ve not yet dug the problem, anyway it seems related to misconfigured temporary paths in the local environment.
You can easily overcome this problem by editing the php.ini file located in etc/ folder, uncommenting the line upload_tmp_dir (by deleting the semi-colon “;”) and pointing the variable to a folder using an absolute path. In Linux possible steps are:
open a terminal
create a temporary folder for all apache tasks in your user folder and grant all right to all users:
mkdir wwwtmp && chmod 0777 wwwtmp
edit php.ini with your text editor and set the temporary folder (you must switch to root user)
su
vim /opt/lampp/etc/php.ini
upload_tmp_dir = /home/my_user/wwwtmp/
Remeber to remove preceding “;”
save the file (in vim type :wq an press enter) and restart xampp
/opt/lampp/./lampp restart
If everything went fine the error won’t be raised anymore."