我需要从我的 Debian 服务器上的 php 脚本运行 Windows 命令行工具。为此,我正在尝试 Wine。通过终端调用 wine 和工具工作正常:“$ wine tool.exe”
但是当从我的 php 脚本运行相同的...
exec("葡萄酒工具.exe");
...我在我的 Apache 错误日志中得到以下信息: wine: '/var/www' is notowned by you, refusing to create a configuration directory there
我想这是一个简单的基本 linux 用户权限问题......我应该将 Wine 的用户权限更改为 www-data 吗?如何?