HPLIP 通过 PHP 发送传真

发布于 2024-12-27 03:44:44 字数 190 浏览 2 评论 0原文

我想将传真功能集成到我们购买的带有内部开发的 php 应用程序的 HP MFP 上。

然而,我发现传真实用程序 hp-sendfax 尽管允许命令行选项,但如果我从 Ubuntu 服务器桌面运行,它就可以工作,但当我尝试从 Mac 从 Sah 会话到我们的 Ubuntu 服务器时,它拒绝工作。

有谁知道如何让它在纯命令行模式下工作?

I wanted to integrate the fax function on a HP MFP that we bought with php app developed in house.

However, I found that the fax utility, hp-sendfax, although allowing command line options, works if I run from out Ubuntu server desktop, it refused to work when I tried from Sah session to our Ubuntu server from my Mac.

Is there anyone who know how to get it work in pure command line mode?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蛮可爱 2025-01-03 03:44:44

hp-sendfax 应用程序是一个 python 应用程序,虽然我没有合适的设备来测试,但似乎您不想在 GUI_MODE 中运行(请参阅 var mode == GUI_MODE),这似乎可以从 args 设置,但是打开文件的栏,在第一个出现“if mode == GUI_MODE:”的地方之前设置“mode = NON_INTERACTIVE_MODE”

希望这对您来说很糟糕。否则,如果您使用 php,请查看 hp-sendfax 的作用,从快速扫描来看,它看起来像是连接到 dbus,而你们可以直接从 php 执行此操作。

The hp-sendfax app is a python app, though I dont have the right equipment to test, it seems you want to not run in GUI_MODE (see var mode == GUI_MODE) and this does seem like it can be set from args, but bar that open the file and just before the first place where 'if mode == GUI_MODE:' occurs you set 'mode = NON_INTERACTIVE_MODE'

Hope this wors for you. Else if you do php, see what hp-sendfax does, from a quick scan it looks like it is connecting to dbus which you guys might do from php directly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文