[ 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
/
api
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 components
SET
[ DEL ]
📁 includes
SET
[ DEL ]
📁 language
SET
[ DEL ]
📄 index.php
1,060 B
SET
[ EDIT ]
|
[ DEL ]
📄 rere.php
14,302 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: index.php
<?php /** * @package Joomla.API * * @copyright (C) 2019 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ // NOTE: This file should remain compatible with PHP 5.2 to allow us to run our PHP minimum check and show a friendly error message // Define the application's minimum supported PHP version as a constant so it can be referenced within the application. define('JOOMLA_MINIMUM_PHP', '7.2.5'); if (version_compare(PHP_VERSION, JOOMLA_MINIMUM_PHP, '<')) { header('HTTP/1.1 500 Internal Server Error'); echo json_encode( ['error' => sprintf('Joomla requires PHP version %s to run', JOOMLA_MINIMUM_PHP)] ); return; } /** * Constant that is checked in included files to prevent direct access. * define() is used rather than "const" to not cause an error for PHP 5.2 and lower */ define('_JEXEC', 1); // Run the application - All executable code should be triggered through this file require_once dirname(__FILE__) . '/includes/app.php';