|
From: Dan A. <Dan...@Ph...> - 2010-02-19 17:28:17
|
Trimmed to focus on the remaining issues. Thanks for confirming what has been fixed >>>>> - the "(un)check all" button (i.e. within in "Delete Conferences" >>>>> context) does not work >>>> I'll look into that one. >> >>> :o) >> It works for me, so I have more questions? Which browser do you use? Does it >> have a javascript blocker? If yes, can you disable it and try again? >> > works also fine now (why ever?!) The javascript for the buulk check/uncheck was test and worked on FF, but broke at some point. I replaced the code with a simpler, cleaner javascript solution, which as you noted works on FF. >>>>> - could not place outgoing calls with the "Invite" button (got internal >>>>> server error and nothing happens on the asterisk console) >>>> Did you define an outgoing CHAN_TYPE and friends in lib/defines.php ? >> >>> I tried CHAN_TYPE LOCAL and SIP and expected to see some kind of logging >>> messages on the console interface that guides me to a proper >>> configuration. I also changed the context "default" to an existing one. >> I see an obvious bug in call_operator.php where I force the channeltype to >> OOH323 if it is not a local channel, but this does not explain the lack of output. >> What permissions have you set in /etc/asterisk/manager.conf for the Web-MeetMe user? > > my manager.conf looks like: > [meetme] > secret = ***** > read = system,call,log,verbose,command,agent,user > write = system,call,log,verbose,command,agent,user > displayconnects = no Starting in somewhere in 1.6 a new permission level was created 'originate' to control access to the very command used to place the outcall. These should work: read = call write = command,originate But at the least you need to add ',originate' to the write permissions, and I need to update the documentation. Dan |