Added the agent and website folders

This commit is contained in:
Frank Harris 2025-09-05 08:41:50 -04:00
parent 0e5a131bfb
commit 85ec5836a5
778 changed files with 104105 additions and 9 deletions

View file

@ -0,0 +1,11 @@
<?php
$curDir = getcwd();
if(chdir("/var/www/new/ehcp/")){
require ("classapp.php");
$app = new Application();
$app->connectTodb(); # fill config.php with db user/pass for things to work..
$app->addDaemonOp('syncftp', '', '', '', 'sync ftp for nonstandard homes');
}
chdir($curDir);
?>