RE: [Asterisk-Users] Little Php question

2005-05-26 Thread Anton Krall
You are missing a " at the end of that line :)D |-Original Message- |From: [EMAIL PROTECTED] |[mailto:[EMAIL PROTECTED] On Behalf Of Ronald |Sent: Jueves, 26 de Mayo de 2005 04:47 a.m. |To: Asterisk Users Mailing List - Non-Commercial Discussion |Subject: [Asterisk-Users] Littl

RE: [Asterisk-Users] Little Php question

2005-05-26 Thread Guido Hecken
Instead of fputs($socket, "Context: mainmenu\r\n\"); use fputs($socket, "Context: mainmenu\r\n"); The trailing backslash was the bug Now every thing works fine... Regards Guido Hecken ___ Asterisk-Users mailing list Asterisk-Users@lists.digium.com ht

Re: [Asterisk-Users] Little Php question

2005-05-26 Thread Jon Farmer
Ronald wrote: When starting the script I get a parse error (unexpected t_string) in line 15 which is the Exten line Can anybody help me out. (I have minimal php knowledge, so Im turning to you all) Change fputs($socket, "Exten: 12345678\r\n\); to fputs($socket, "Exten: 12345678\r\n");

SV: [Asterisk-Users] Little Php question

2005-05-26 Thread Dmitry Zhukovski
erisk-Users] Little Php question Hi I'm trying to make a call from a local webpagee through my xlite softphone (xlite1) BTW when I'm trying to do it through telnet it works For this I'm using a php script I found When starting the script I get a parse error (unexpected t_string)

RE: [Asterisk-Users] Little Php question

2005-05-26 Thread Alex Barnes
> -Original Message- > From: Ronald [mailto:[EMAIL PROTECTED] > Sent: 26 May 2005 10:47 > To: Asterisk Users Mailing List - Non-Commercial Discussion > Subject: [Asterisk-Users] Little Php question > > > Hi > I'm trying to make a call from a local webpag

[Asterisk-Users] Little Php question

2005-05-26 Thread Ronald
Hi I'm trying to make a call from a local webpagee through my xlite softphone (xlite1) BTW when I'm trying to do it through telnet it works For this I'm using a php script I found When starting the script I get a parse error (unexpected t_string) in line 15 which is the Exten line Can any