服务器上传时mpdf临时文件目录不可写

mpdf temporary file directory is not writable when upload in server

当我 运行 我的 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 上搜索有关此错误的解决方案,但我找不到任何东西。

如果您想再次尝试 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 行是缓存构造函数的一部分,并在临时目录不可写或不是目录的情况下抛出错误:

// 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 服务器上,因此您需要将正确的用户添加到 "Properties"->"Security" 下的 "tmp" 文件夹,另外检查是否文件夹的属性 "Read-only" 未勾选。

补充建议:

请 post 在您以后的问题中使用相关代码(例如您 print-form.php 的相关部分),因为这可以降低猜测可能是什么原因的风险。