<?php
 
 
/*
 
==============================================================
 
This script is distributed in the hope that it will be useful,
 
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
MERCHANTABILITY or FITNESS  FOR A PARTICULAR PURPOSE.  See the
 
GNU General Public License for more details.
 
 
This  file and the whole EditPHP distribution is copyright (c)
 
2000 Pierre Marceau all rights reserved.  You may  freely  use
 
and  redistribute  under the  terms of the  GNU General Public
 
License.
 
--------------------------------------------------------------
 
        EditPHP - http://www.skynet.ca/~pierre/
 
==============================================================
 
*/
 
 
include ('editphp.inc');
 
 
$myedit = new editphp;
 
 
//$myedit->infowidth=25;
 
//$myedit->infoheight=5;
 
//$myedit->winwidth=1000;
 
//$myedit->winheight=580;
 
//$myedit->ebwidth=119;
 
//$myedit->ebheight=30;
 
//$myedit->winmoveto="6,40";
 
//$myedit->myfileextensions="(php3|html|sql)\$";
 
//$myedit->myrestrictedfiles="/|^\\.";
 
//$myedit->mylinks["P200"]="http://p200.fargo.fi/editphp/editphp.php3";
 
//$myedit->mylinks["B2"]="http://b2.fargo.fi/b2/editphp.php3";
 
//$myedit->mylinks["Test"]="http://p350.fargo.fi/test/";
 
//$myedit->mylinks["p350"]="http://p350.fargo.fi/";
 
//$myedit->mustauthenticate=1;
 
//$myedit->editphpusername="ZaoIXSbARx.YUPZSWa/KhFx2"; //pierre (encrypted)
 
//$myedit->editphppassword="oIyBa5BOTlG1cDI7APAOofvY"; //finland (encrypted)
 
//$myedit->expertmode=1;
 
 
$myedit->main();
 
?>
 
 |