在服务器上载时,mpdf临时文件目录不可写

时间:2019-03-08 03:57:30

标签: mpdf

当我在localhost上运行文件时,它可以工作,但是当我使用winSCP将文件上传到服务器时,却出现此错误

PHP Fatal error: Uncaught Mpdf\MpdfException: Temporary files directory "E:\Inetpub\vhosts\gsm.org.my\httpdocs\print/custom/temp/dir/path" is not writable in E:\Inetpub\vhosts\gsm.org.my\httpdocs\print\vendor\mpdf\mpdf\src\Cache.php:17
Stack trace:
#1 E:\Inetpub\vhosts\gsm.org.my\httpdocs\print\vendor\mpdf\mpdf\src\Mpdf.php(1054): Mpdf\ServiceFactory->getServices(Object(Mpdf\Mpdf), Object(Psr\Log\NullLogger), Array, 0, Object(Mpdf\Language\LanguageToFont), Object(Mpdf\Language\ScriptToLanguage), NULL, NULL, NULL, NULL)

#2 E:\Inetpub\vhosts\gsm.org.my\httpdocs\print\print-form.php(88): Mpdf\Mpdf->__construct(Array)

#3 {main} thrown in E:\Inetpub\vhosts\gsm.org.my\httpdocs\print\vendor\mpdf\mpdf\src\Cache.php on line 17

是因为服务器找不到文件路径还是我写错了吗?

我尝试授予src文件夹权限,但它说不能更改src文件的属性。我是这个领域的初学者。我尝试在Google上搜索有关此错误的解决方案,但找不到任何内容。

1 个答案:

答案 0 :(得分:0)

如果您想再次尝试给mPDF:

似乎您没有为mPDF提供适当的配置,但是由于您的代码部分(print-form.php的第88行)丢失,我们无法确定。取自我使用mPDF的上一个代码:

try {
  $mpdf = new \Mpdf\Mpdf([
    'tempDir' => __DIR__ . '/../tmp', // uses the current directory's parent "tmp" subfolder
    'setAutoTopMargin' => 'stretch',
    'setAutoBottomMargin' => 'stretch'
  ]);
} catch (\Mpdf\MpdfException $e) {
    print "Creating an mPDF object failed with" . $e->getMessage();
}

Cache.php中的第17行是Cache构造函数的一部分,如果临时目录不可写或不是目录,则会引发错误:

// taken from method "createBasePath($basePath)"
if (!is_writable($basePath) || !is_dir($basePath)) {
    return false;
}

要测试由于文件权限不足或目录不存在而导致的错误,请将具有此内容的文件上载到服务器,然后使用首选的浏览器导航到它:

<?php
$pathToCheck= "E:\\Inetpub\\vhosts\\gsm.org.my\\httpdocs\\print//custom//temp//dir//path";

print 'Folder exists: '.(is_dir($pathToCheck) ? 'yes' : 'no').'<br />';
print 'Folder is writable: '.(is_writable($pathToCheck) ? 'yes' : 'no').'<br />';

您在Windows服务器上,因此您需要将正确的用户添加到“属性”->“安全性”下的“ tmp”文件夹中,另外检查该文件夹是否具有未选中“只读”属性。

其他建议:

请在以后的问题中张贴相关的代码(例如print-form.php的相关部分),因为这样可以减少猜测原因的风险。