From 9a21a1cba3aa4d263d8e541382cb4ba0103fc19a Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Wed, 9 Jul 2014 18:21:42 +0200 Subject: [PATCH] make mime type detection work on php-fpm which has no PATH env variable --- src/phorkie/Repository/Post.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/phorkie/Repository/Post.php b/src/phorkie/Repository/Post.php index 09cb977..a61f2a2 100644 --- a/src/phorkie/Repository/Post.php +++ b/src/phorkie/Repository/Post.php @@ -234,6 +234,12 @@ class Repository_Post public function getType($content, $returnError = false) { + if (getenv('PATH') == '') { + //php-fpm does not fill $PATH by default + // we have to work around that since System::which() uses it + putenv('PATH=/usr/local/bin:/usr/bin:/bin'); + } + $tmp = tempnam(sys_get_temp_dir(), 'phorkie-autodetect-'); file_put_contents($tmp, $content); $type = Tool_MIME_Type_PlainDetect::autoDetect($tmp); -- 2.30.2