Hallo!
i run a brand new debian weezy system with php 5.3.
Installed Imagemagick.
The Script:
$magic = new Imagick();
$magic->setResourceLimit(6, 1);
$magic->readImageBlob(file_get_contents('globe.png'));
$magic->setImageFormat("jpg");
$magic->writeImage('newglobe.jpg');
$magic->clear();
works fine.
Now i installed 5.6.10 with ZTS enabled repo.
Now i get PERMISSION DENIED on $magic->writeImage('newglobe.jpg');
I played around a lot with user and groups put can not find any misstage.
Where i my problem?
Please help