Update: I solved the image upload problem after searching a bit on the TYPO3 forum. Since I have already posted here I thought I'd share the solution.
In /etc/php5/apache2/php.ini there is a row that specifies the temporary upload directory. In my case it looked like this.
It was not set to anything and for some reason did not pick up the default system folder whatever that is.. I changed this to:
And everything worked! Now I guess I'll start enabling safe mode again and see if it will still work after that.
Matti Jääaro
In /etc/php5/apache2/php.ini there is a row that specifies the temporary upload directory. In my case it looked like this.
; Temporary directory for HTTP uploaded files (will use system default if not
; specified).
; upload_tmp_dir =
; specified).
; upload_tmp_dir =
It was not set to anything and for some reason did not pick up the default system folder whatever that is.. I changed this to:
; Temporary directory for HTTP uploaded files (will use system default if not
; specified).
upload_tmp_dir = /tmp
; specified).
upload_tmp_dir = /tmp
And everything worked! Now I guess I'll start enabling safe mode again and see if it will still work after that.
Matti Jääaro