This commit is contained in:
xiaomlove
2020-12-26 01:42:23 +08:00
commit a3ba82be64
949 changed files with 60612 additions and 0 deletions

13
cron.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
require_once("include/bittorrent.php");
dbconn();
if ($useCronTriggerCleanUp) {
$return = autoclean();
if ($return) {
echo $return."\n";
} else {
echo "Clean-up not triggered.\n";
}
} else {
echo "Forbidden. Clean-up is set to be browser-triggered.\n";
}