1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00
Oinktube/install/clearCache.php
2022-09-06 10:05:11 -03:00

14 lines
279 B
PHP

<?php
//streamer config
require_once '../videos/configuration.php';
if (!isCommandLineInterface()) {
return die('Command Line only');
}
$obj = new stdClass();
$obj->error = false;
$obj->msg = '';
$obj->deleteALLCache = ObjectYPT::deleteALLCache();
die(json_encode($obj));