I am trying to send debugged notifications from PHP. The host computer is OSX, and I can receive local notifications, as well as notifications from ruby ββscripts executed from other computers. Password not set.
I am using the php-growl class and my code is as follows:
<?php
require 'class.growl.php';
$ip_address = '10.0.0.210';
$growl = new Growl($ip_address, '');
$growl -> register();
$growl -> notify('PHP Growl', 'Title', 'Here\ the body text');
?>
My script was registered in growl locally, but the notification was not displayed. I also cannot find PHP errors in my log files.
Any suggestions on how to send / receive growls without using a password ?
source
share