uawdijnntqw1x1x1
IP : 216.73.217.71
Hostname : odin2.mydev24.com
Kernel : Linux odin2.mydev24.com 5.14.0-687.20.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Jun 30 06:22:49 EDT 2026 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
hrpsychology
/
lscache
/
priv
/
..
/
..
/
public_html
/
nutritiontoday.gr
/
bin
/
..
/
cli
/
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();
/home/hrpsychology/lscache/priv/../../public_html/nutritiontoday.gr/bin/../cli/garbagecron.php