[Asterisk-Users] Controlling Asterisk from PHP?

2004-11-18 Thread Michael Vogel
Hi! Is it possible to control Asterisk with PHP? I don't think that the "extensions.conf" can solve all my problems. So I would like to make it with PHP (which I really know well). I would need a possibility to read the dialed digits and a possibility to start a call. Does something like this

[Asterisk-Users] Controlling Asterisk from PHP?

2004-11-18 Thread Peter Hoppe
Yes, Asterisk supports interfacing with many different programming languages. Basically, any program that can read from the stdin, stdout and stderr streams can interface with asterisk. You can therefore implement your own programs in any language that allows streaming from/to these streams. PH

Re: [Asterisk-Users] Controlling Asterisk from PHP?

2004-11-18 Thread Gregory Junker
Does something like this exist? Dozens of different efforts are underway along these lines. http://www.voip-info.org/wiki-Asterisk+gui Greg ___ Asterisk-Users mailing list [EMAIL PROTECTED] http://lists.digium.com/mailman/listinfo/asterisk-users To UNSUBS

RE: [Asterisk-Users] Controlling Asterisk from PHP?

2004-11-18 Thread Brian C. Fertig
brian -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Vogel Sent: Thursday, November 18, 2004 4:24 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: [Asterisk-Users] Controlling Asterisk from PHP? Hi! Is it possible to co

Re: [Asterisk-Users] Controlling Asterisk from PHP?

2004-11-18 Thread Michael Vogel
Brian C. Fertig schrieb: No nothing exists. However may I suggest PHPAGI it's a class for asterisk to interface with it. So something exists ;-) You can pull channel variables etc and do all kinds of kewl junk with it. I write all my AGI in php and execute it. But yes you in a way can control aste

RE: [Asterisk-Users] Controlling Asterisk from PHP?

2004-11-18 Thread Brian C. Fertig
] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Vogel Sent: Thursday, November 18, 2004 5:29 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [Asterisk-Users] Controlling Asterisk from PHP? Brian C. Fertig schrieb: > > No nothing exists. However may I suggest PHPAG

Re: [Asterisk-Users] Controlling Asterisk from PHP?

2004-11-18 Thread Duane
Michael Vogel wrote: I just downloaded it. Now I only need to know, how to include it in asterisk. The documention is ... hmm ... ;-) http://www.e164.org/enum.phps Little script I whipped up a while back that doesn't need anything but the php binary to work... -- Best regards, Duane http://www.

Re: [Asterisk-Users] Controlling Asterisk from PHP?

2004-11-20 Thread Florian Overkamp
Hi, On Thu, 2004-11-18 at 23:28, Michael Vogel wrote: > I just downloaded it. Now I only need to know, how to include it in > asterisk. The documention is ... hmm ... ;-) Ah, yes. But if you know PHP there is not much different from other classes. Just create a new phpagi object and start callin