One Hat Cyber Team
Your IP:
216.73.216.75
Server IP:
213.186.33.17
Server:
Linux webm007.cluster106.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
Server Software:
Apache
PHP Version:
7.4.33
Create File
|
Create Folder
Execute
Dir :
~
/
home
/
tcherkas
/
musiquerusse.fr
/
View File Name :
kickstart-Qpyfq4
<?php /** * @package angi4j * @copyright Copyright (C) 2009-2016 Nicholas K. Dionysopoulos. All rights reserved. * @author Nicholas K. Dionysopoulos - http://www.dionysopoulos.me * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL v3 or later */ defined('_AKEEBA') or die(); class RunScripts extends JApplicationWeb { public function doExecute() { // The script file requires an installer instance, however it's not used inside the code... $installer = JInstaller::getInstance(); $scriptFile = JPATH_ROOT.'/administrator/components/com_admin/script.php'; if (!is_file($scriptFile)) { return; } include_once $scriptFile; $classname = 'JoomlaInstallerScript'; if (!class_exists($classname)) { return; } $manifestClass = new $classname(); if ($manifestClass && method_exists($manifestClass, 'update')) { // We need to call this statement for JFactory to populate $application with JApplicationSite /** * Joomla! 3.5+'s update script calls cleanJoomlaCache() which in turns loads a JModelLegacy class called * CacheModelCache. This class tries to figure out the client_id using getUserStateFromRequest which in * turn calls JFactory::getApplication. However, since JFactory has no $application set and the call to * getApplication does not have a site ID parameter ($id is implicitly null), JFactory::getApplication * throws an exception. * * We need to call JFactory::getApplication('site'), that is WITH the 'site' parameter, so that JFactory * can prime the $application variable. Otherwise we'd have to inject a mock object into JFactory to satisfy * the Joomla! internals. */ try { $app = JFactory::getApplication('site'); } catch (Exception $e) { // No problemo if we fail } /** * Following the logic above and trying to guard against future changes in Joomla! which might affect our * code, let's put everything in a try-catch block and Hope For The Bestâ„¢. */ try { $manifestClass->update($installer); } catch (Exception $e) { // Don't cry if it fails } } } }