Plesk 网站 - PHP open_basedir 限制生效。文件不在允许的路径内

Plesk website - PHP open_basedir restriction in effect. File is not within the allowed path

我正在尝试 运行 此代码:

$img = new Imagick('ttt.jpg');
$quality = $img->getImageCompressionQuality();
echo $quality;

我有两个网站有此代码,它们 运行正在 plesk 上运行。

此代码在其中一个网站上运行良好,但在另一个网站上我得到:

open_basedir restriction in effect. File is not within the allowed path

我给了文件夹和包含文件777的权限。

两个网站都使用 PHP 7.3,因此使用相同的 php.ini 文件

我正在使用 Plesk 和 Windows Server 2016

我错过了什么?

好的,我知道了,在每个网站的PHP设置中,有一个选项叫做open_basedir,在imagick代码所在的网站上设置为none作品