Though this might have been resolved/accomplished already but I've couple of questions for Virendra Bhati.
1- If you are doing this to make new accounts for new users, why couldn't you use Asterisk realtime(DB) based configurations of Voicemail/MoH/SIP/dialplan etc wouldn't it be much easier than doing lots and lots of filing !? 2- Since its a web-based Filing operations and if multiple users are to use the same page for appending/overwriting their configurations wouldn't it lead to information being lost when multiple users applying their changes ? I wonder how do you handle that ? I'm sure I'd more questions when I started writing this response mail but now I've forgotten those :P Thanks, Sammy. On Sun, Sep 4, 2011 at 6:00 PM, Tzafrir Cohen <[email protected]>wrote: > On Fri, Sep 02, 2011 at 04:58:52PM +0530, virendra bhati wrote: > > Hi list, > > > > I want ot do basic work (add-edit-delete) into asterisk configuration > files, > > like sip.conf, manager.conf,musiconhold.conf etc. > > > > Please guide me how to configure all these files from from AMI > connection. I > > am able to login into AMI from Login action but I want to do more task in > to > > it. > > > > *AMI login:- * > > > > *login.php* > > > > <?php > > $socket = fsockopen("127.0.0.1","5038", $errno, $errstr, 30); > > fputs($socket, "Action: Login\r\n"); > > fputs($socket, "UserName: root\r\n"); > > fputs($socket, "Secret: energy\r\n\r\n"); > > ?> > > *AMI command:-* > > > > Below commands are for musiconhold.conf. I want to add new MOH context > into > > it. > > <?php > > include("login.php"); > > fputs($socket, "Action: UpdateConfig\r\n"); > > fputs($socket, "Filename: musiconhold.conf\r\n"); > > fputs($socket, "Srcfilename: musiconhold.conf\r\n"); > > fputs($socket, "Dstfilename: musiconhold.conf\r\n"); > > fputs($socket, "Action-000000: newcat\r\n"); > > fputs($socket, "Cat-000000: bhavik\r\n"); > > fputs($socket, "mode: files\r\n"); > > fputs($socket, "directory: /var/lib/asterisk/moh\r\n"); > > fputs($socket, "Reload: yes\r\n"); > > fputs($socket, "ActionID: 9873497149817\r\n"); > > fputs($socket, "Action: Logoff\r\n\r\n"); > > You're not really editing. You're writing. > > Note the following: > > * It requires Asterisk to be running, and accessible through the manager > interface. > * asterisk.conf may be in a path that is not the configuration > directory. I'm not sure if this special case is handled. > * #include are basically handled, but mostly for reading. IIRC the write > is back to a single file. No idea about #exec, which will probably > have odd interactions with UpdateConfig. Configuration templates > ('[section](template)') are also not handled gracefully. > > > > > After doing all no success :(( > > This is a report of the the thing that did not happen. Next time you ask > a question, please report what actually does happen ("I got the following > response: ..."). > > -- > Tzafrir Cohen > icq#16849755 jabber:[email protected] > +972-50-7952406 mailto:[email protected] > http://www.xorcom.com iax:[email protected]/tzafrir > > -- > _____________________________________________________________________ > -- Bandwidth and Colocation Provided by http://www.api-digital.com -- > New to Asterisk? Join us for a live introductory webinar every Thurs: > http://www.asterisk.org/hello > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >
-- _____________________________________________________________________ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- New to Asterisk? Join us for a live introductory webinar every Thurs: http://www.asterisk.org/hello asterisk-users mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
