[asterisk-users] asterisk config file online editor

Mojo with Horan & Company, LLC mojo at horanappraisals.com
Tue Feb 19 13:35:25 CST 2008


Like 15 lines of php and html?

<?php
    $fn = "/etc/asterisk/extensions.conf";

    if ($_REQUEST['action'] == "write" && $_REQUEST['contents'] != "")
    {
        rename($fn, $fn.".".date("U"));
        $fp = fopen($fn, "wt");
        fwrite($fp, $_REQUEST['contents']);
        fclose($fp);
    }

?>
<form>
<h1><?=$fn?></h1>
<textarea name=contents><?php include $fn ?></textarea>
<input type=hidden name=action value=write>
<input type=submit value="Save File"> <input type=reset value="Reset">
</form>

Security holes galore!  clean it up a bit :)  And check on permissions 
issues, that your httpd can write to the file.

Moj

Anton Krall wrote:
> Guys, Im looking for a good text file editor for asterisk config files
> that can be embedded on a web page for online editing (on an interface),
> any recommendations?
>
>
> ________________________________________________________________
> Anton Krall
> Direccion General
>
> Intruder Consulting
> A Division of IntruderEnterprises S.A. de C.V.
> www.Intruder.com.mx
> www.IntruderStore.com.mx
>  
> Tel. 3872-2200 ext. 201
> Tel. 01-800-INTRUDER (01-800-468-7833)
> Email: akrall at intruder.com.mx
>
> Como lo estoy haciendo? Contacte a mi Director:
>
>
>
> _______________________________________________
> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
>
> asterisk-users mailing list
> To UNSUBSCRIBE or update options visit:
>    http://lists.digium.com/mailman/listinfo/asterisk-users
>   




More information about the asterisk-users mailing list