syncftp.php 291 B

1234567891011
  1. <?php
  2. $curDir = getcwd();
  3. if(chdir("/var/www/new/ehcp/")){
  4. require ("classapp.php");
  5. $app = new Application();
  6. $app->connectTodb(); # fill config.php with db user/pass for things to work..
  7. $app->addDaemonOp('syncftp', '', '', '', 'sync ftp for nonstandard homes');
  8. }
  9. chdir($curDir);
  10. ?>