From: Christian Weiske Date: Wed, 9 Jul 2014 16:21:42 +0000 (+0200) Subject: make mime type detection work on php-fpm which has no PATH env variable X-Git-Tag: v0.4.0~7 X-Git-Url: https://git.cweiske.de/phorkie.git/commitdiff_plain/9a21a1cba3aa4d263d8e541382cb4ba0103fc19a?ds=inline make mime type detection work on php-fpm which has no PATH env variable --- 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);