|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2013-11-07 14:43 UTC] mkoppanen@php.net
[2013-11-07 14:48 UTC] manuel-php at mausz dot at
[2013-11-07 15:05 UTC] mkoppanen@php.net
[2013-11-07 15:12 UTC] manuel-php at mausz dot at
[2013-11-07 15:23 UTC] mkoppanen@php.net
[2013-11-07 15:36 UTC] manuel-php at mausz dot at
[2015-01-09 21:30 UTC] danack@php.net
-Assigned To:
+Assigned To: danack
[2015-01-09 21:30 UTC] danack@php.net
[2015-04-01 16:20 UTC] danack@php.net
-Status: Assigned
+Status: Closed
[2015-04-01 16:20 UTC] danack@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 07:00:01 2025 UTC |
Description: ------------ imagick should use PHP's default temp. directory. Since PHP 5.5 there's also a sys_temp_dir ini-directive the admin can define. Change is simple: --- imagick.c.orig 2013-11-07 14:01:04.067659662 +0100 +++ imagick.c 2013-11-07 14:01:19.107922325 +0100 @@ -2889,6 +2889,7 @@ PHP_RINIT_FUNCTION(imagick) { + SetImageRegistry(StringRegistryType, "temporary-path", (const void *)php_get_temporary_directory(TSRMLS_C), NULL); return SUCCESS; }