Server IP : 195.201.23.43 / Your IP : 3.147.78.134 Web Server : Apache System : Linux webserver2.vercom.be 5.4.0-192-generic #212-Ubuntu SMP Fri Jul 5 09:47:39 UTC 2024 x86_64 User : kdecoratie ( 1041) PHP Version : 7.1.33-63+ubuntu20.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/kdecoratie/public_html/administrator/components/com_admintools/ |
Upload File : |
<?php /** * @package admintools * @copyright Copyright (c)2010-2019 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ defined('_JEXEC') or die; JDEBUG ? define('AKEEBADEBUG', 1) : null; if (version_compare(PHP_VERSION, '5.4.0', 'lt')) { (include_once __DIR__ . '/View/wrongphp.php') or die('Your PHP version is too old for this component.'); return; } // Why, oh why, are you people using eAccelerator? Seriously, what's wrong with you, people?! if (function_exists('eaccelerator_info')) { $isBrokenCachingEnabled = true; if (function_exists('ini_get') && !ini_get('eaccelerator.enable')) { $isBrokenCachingEnabled = false; } if ($isBrokenCachingEnabled) { (include_once __DIR__ . '/View/eaccelerator.php') or die('eAccelerator is broken and abandoned since 2012. Ask your host to disable it before using this component.'); return; } } // HHVM made sense in 2013, now PHP 7 is a way better solution than an hybrid PHP interpreter if (defined('HHVM_VERSION')) { (include_once __DIR__ . '/View/hhvm.php') or die('We have detected that you are running HHVM instead of PHP. This software WILL NOT WORK properly on HHVM. Please switch to PHP 7 instead.'); return; } // So, FEF is not installed? if (!@file_exists(JPATH_SITE . '/media/fef/fef.php')) { (include_once __DIR__ . '/View/fef.php') or die('You need to have the Akeeba Frontend Framework (FEF) package installed on your site to display this component. Please visit https://www.akeeba.com/download/official/fef.html to download it and install it on your site.'); return; } /** * The following code is a neat trick to help us collect the maximum amount of relevant information when a user * encounters an unexpected exception (PHP 5.4+) or a PHP fatal error (PHP 7+). In both cases we capture the generated * exception and render an error page, making sure that the HTTP response code is set to an appropriate value (4xx or * 5xx). * * Why the two functions? In PHP 5 the base exception class is Exception. In PHP 7 there is a base interface called * Throwable which the two base classes Exception (user-defined exception) and Error (PHP fatal error) implement. * However, Throwable does not exist in PHP 5 so we can't have a try-catch expecting Throwable. At the same time, in * PHP 7 neither catching Exception will handle PHP fatal errors nor can you manually implement Throwable to create a * base class for use in try-catch. Therefore the only solution is to have two functions for the try and catch part, * a conditional for the PHP version and a slightly different catch block in each case. * * Now you know what we did and why we did it. Feel free to include this idea in your GPL projects :) */ function mainLoopAdminToolsForJoomla() { if (!defined('FOF30_INCLUDED') && !@include_once(JPATH_LIBRARIES . '/fof30/include.php')) { (include_once __DIR__ . '/View/fof.php') or die('You need to have the Akeeba Framework-on-Framework (FOF) 3 package installed on your site to use this component. Please visit https://www.akeeba.com/download/fof3.html to download it and install it on your site.'); return; } FOF30\Container\Container::getInstance('com_admintools')->dispatcher->dispatch(); }; function errorHandlerAdminToolsForJoomla($e) { $title = 'Admin Tools'; $isPro = defined(ADMINTOOLS_PRO) ? ADMINTOOLS_PRO : file_exists(__DIR__ . '/View/HtaccessMaker/Html.php'); if (!(include_once __DIR__ . '/View/errorhandler.php')) { throw $e; } } if (version_compare(PHP_VERSION, '7.0.0', 'lt')) { // PHP 5.4, 5.5 and 5.6. Only user exceptions can be caught. try { mainLoopAdminToolsForJoomla(); } catch (Exception $e) { errorHandlerAdminToolsForJoomla($e); } } else { // PHP 7.0 or later; we can catch PHP Fatal Errors as well try { mainLoopAdminToolsForJoomla(); } catch (Throwable $e) { errorHandlerAdminToolsForJoomla($e); } }Private