[ SYSTEM ]: Windows NT SWD-ELEARN-11 10.0 build 20348 (Windows Server 2016) AMD64
[ SERVER ]: Apache/2.4.41 (Win64) OpenSSL/1.1.1c PHP/7.3.9 | PHP: 7.3.9
[ USER ]: Elearn | IP: 10.201.204.156
GEFORCE FILE MANAGER
/
C:
/
xampp
/
htdocs
/
Ajaji
/
backup
/
cli
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 deletefiles.php
2,083 B
SET
[ EDIT ]
|
[ DEL ]
📄 finder_indexer.php
13,133 B
SET
[ EDIT ]
|
[ DEL ]
📄 garbagecron.php
1,056 B
SET
[ EDIT ]
|
[ DEL ]
📄 index.html
31 B
SET
[ EDIT ]
|
[ DEL ]
📄 sessionGc.php
1,179 B
SET
[ EDIT ]
|
[ DEL ]
📄 sessionMetadataGc.php
1,418 B
SET
[ EDIT ]
|
[ DEL ]
📄 update_cron.php
1,726 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: garbagecron.php
<?php /** * @package Joomla.Cli * * @copyright (C) 2012 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ /** * A command line cron job to trash expired cache data. */ // Initialize Joomla framework const _JEXEC = 1; // Load system defines if (file_exists(dirname(__DIR__) . '/defines.php')) { require_once dirname(__DIR__) . '/defines.php'; } if (!defined('_JDEFINES')) { define('JPATH_BASE', dirname(__DIR__)); require_once JPATH_BASE . '/includes/defines.php'; } // Get the framework. require_once JPATH_LIBRARIES . '/import.legacy.php'; // Bootstrap the CMS libraries. require_once JPATH_LIBRARIES . '/cms.php'; /** * Cron job to trash expired cache data. * * @since 2.5 */ class GarbageCron extends JApplicationCli { /** * Entry point for the script * * @return void * * @since 2.5 */ public function doExecute() { $cache = JFactory::getCache(); $cache->gc(); } } JApplicationCli::getInstance('GarbageCron')->execute();