RE: [Asterisk-Users] Webui to show registered phones

2005-10-30 Thread Paul
List - Non-Commercial Discussion Subject: Re: [Asterisk-Users] Webui to show registered phones Hi For those who are insterested in monitoring and managing easilly the asterisk server.. this is a solution for multitenant hosted PBX o single tenant is windows based (the admin of couse

Re: [Asterisk-Users] Webui to show registered phones

2005-10-29 Thread Nicolás Gudiño
Hi all, does anyone know if there is any app/webui that can show phones that are currently registered to *. I guess this sort of funcionality counld be grabbed from the CLI with iax2 show peers and sip show peers, but having little programming knowledge wouldn't know where to start. I'm

Re: [Asterisk-Users] Webui to show registered phones

2005-10-29 Thread Saul Diaz
Hi For those who are insterested in monitoring and managing easilly the asterisk server.. this is a solution for multitenant hosted PBX o single tenant is windows based (the admin of couse) and http://www.cripiland.com/screenshots/manager3.jpg

Re: [Asterisk-Users] Webui to show registered phones

2005-10-28 Thread Adam Moffett
Hi all, does anyone know if there is any app/webui that can show phones that are currently registered to *. I guess this sort of funcionality counld be grabbed from the CLI with iax2 show peers and sip show peers, but having little programming knowledge wouldn't know where to start. I'm

Re: [Asterisk-Users] Webui to show registered phones

2005-10-28 Thread Adam Moffett
Hi all, does anyone know if there is any app/webui that can show phones that are currently registered to *. I guess this sort of funcionality counld be grabbed from the CLI with iax2 show peers and sip show peers, but having little programming knowledge wouldn't know where to start. I'm

RE: [Asterisk-Users] Webui to show registered phones

2005-10-28 Thread Sherwood McGowan
, October 28, 2005 9:46 AM -To: Asterisk Users Mailing List - Non-Commercial Discussion -Subject: Re: [Asterisk-Users] Webui to show registered phones - - - Hi all, does anyone know if there is any app/webui that can show - phones that are currently registered to *. I guess this sort of - funcionality

Re: [Asterisk-Users] Webui to show registered phones

2005-10-28 Thread bails
Thanks for that Adam, fantastic! I did need to add one line to get it to work #!/usr/bin/perl # ##get lists of registered peers from asterisk $iaxpeers = `/usr/sbin/asterisk -rx \iax2 show peers\`; $sippeers = `/usr/sbin/asterisk -rx \sip show peers\`; ##replace newline characters with html

Re: [Asterisk-Users] Webui to show registered phones

2005-10-28 Thread Tzafrir Cohen
On Fri, Oct 28, 2005 at 09:39:59AM -0400, Adam Moffett wrote: Hi all, does anyone know if there is any app/webui that can show phones that are currently registered to *. I guess this sort of funcionality counld be grabbed from the CLI with iax2 show peers and sip show peers, but having

Re: [Asterisk-Users] Webui to show registered phones

2005-10-28 Thread Ben Higley
I use the same type of thing in my PHP without going through the Manager port: I had to do chmod u+s /usr/sbin/asterisk in order for my apache server to be able to connect and get the response... Thanks for that Adam, fantastic! I did need to add one line to get it to work #!/usr/bin/perl