我正在尝试从 PHP 发送咆哮通知。接收计算机是 OSX,我能够接收本地通知以及来自其他计算机执行的 ruby 脚本的通知。没有设置密码。
我使用php-growl类,我的代码如下所示:
<?php
require 'class.growl.php';
$ip_address = '10.0.0.210';
$growl = new Growl($ip_address, '');
// Register with the remote machine.
// You only need to do this once.
$growl -> register();
// Send your message
$growl -> notify('PHP Growl', 'Title', 'Here\'s the body text');
?>
我的脚本在本地注册了咆哮,但没有显示任何通知。我的日志文件中也找不到任何 PHP 错误。
关于如何在不使用密码的情况下发送/接收咆哮的任何建议?