Hi,
I’ve got a similar error message.
My server:
– safe mode on
– according to my provider the files created by the server
will have another user account as that under which
php runs (I haven’t checked this)
My solution:
in admin-functions.php I have added the following code everywhere where imagejpeg, imagepng and imagegif is called:
//workaround: soruce: http://de.php.net/manual/de/function.imagejpeg.php#58375
$fhDummyXX=fopen($thumbpath,’w’);
fclose($fhDummyXX);
Not tested for png-files and the crop-function
Is there a bugtracking-system for wordpress? I would like to report the solution to the developers.
I have found the above solution at http://de.php.net/manual/de/function.imagejpeg.php#58375
bye,
Markus