Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using GREE Labs' Dbus PHP Extension in my attempts to make a PHP class that is able to create desktop notifications.

$dbus = $dbus = dbus_bus_get(DBUS_BUS_SESSION);

$message = new \DBusMessage(DBUS_MESSAGE_TYPE_SIGNAL);
$message->setDestination("org.freedesktop.DBus");
$message->setAutoStart(true);

$dbus->sendWithReplyAndBlock($message, 1);

When my code is run I get the following error:

Warning: dbus_bus_get() [function.dbus-bus-get]: failed to create dbus connection object [Unable to autolaunch a dbus-daemon without a $DISPLAY for X11] in [...COI/GTK/Notify.php on line 39

This is the first time I've used anything related to dbus, and am rather lost.

I'm aiming for an effect similar to what occurs when one executes the following in a terminal (on Ubuntu 11.10):

/usr/bin/notify-send -t 2000 'title' 'message'

I did initially use notify-send & exec, but switched when I found the GREE Dbus extension as I thought it may provide a cleaner interface. Also notify-send would only work properly if I changed my apache user to be the same as the user I'm currently logged in as - not an ideal solution.

Would anyone be able to either tell me what modifications are required to achieve my desired result, or alternatively tell me if what I want to do is in fact impossible?

Or, is there another way I should be doing this?

share|improve this question
You could try: stackoverflow.com/questions/2701059/… – Petah Dec 19 '11 at 3:26

2 Answers

Is DISPLAY environment variable set? setting that fixed the error when I got it, but i wasn't using php, so it could be different for you.

share|improve this answer

Use dbus-launch in the script that starts your web server in order to start an appropriate DBus daemon at the same time. See the dbus-launch(1) man page for details.

share|improve this answer
No. Try again. But with reading. – Ignacio Vazquez-Abrams Dec 19 '11 at 3:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.