| Server IP : 172.67.191.97 / Your IP : 104.23.197.209 Web Server : Apache/2.4.63 (Ubuntu) System : Linux adminpruebas-Virtual-Machine 6.14.0-37-generic #37-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 14 22:10:32 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.4.5 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/idiomas/ |
Upload File : |
<?php
/**
* @package Joomla.Site
*
* @copyright (C) 2005 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', '8.1.0');
if (version_compare(PHP_VERSION, JOOMLA_MINIMUM_PHP, '<')) {
die(
str_replace(
'{{phpversion}}',
JOOMLA_MINIMUM_PHP,
file_get_contents(dirname(__FILE__) . '/includes/incompatible.html')
)
);
}
/**
* Constant that is checked in included files to prevent direct access.
* define() is used rather than "const" to not error for PHP 5.2 and lower
*/
define('_JEXEC', 1);
// Compatibility redirects for legacy/component-style article URLs used by the custom cards.
$requestPath = isset($_SERVER['REQUEST_URI']) ? parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) : '';
$articleRedirects = array(
'/plantillajoomla5.3/index.php/component/content/article/ingles' => '/plantillajoomla5.3/index.php/academico/ingles',
'/plantillajoomla5.3/index.php/component/content/article/frances' => '/plantillajoomla5.3/index.php/academico/frances',
'/plantillajoomla5.3/index.php/component/content/article/aleman' => '/plantillajoomla5.3/index.php/academico/aleman',
'/plantillajoomla5.3/index.php/component/content/article/portugues' => '/plantillajoomla5.3/index.php/academico/portugues',
'/plantillajoomla5.3/index.php/component/content/article/pruebas-internacionales' => '/plantillajoomla5.3/index.php/academico/pruebas-internacionales',
'/plantillajoomla5.3/index.php/component/content/article/ingles-kids-5-6' => '/plantillajoomla5.3/index.php/academico/ingles-kids-5-6',
'/plantillajoomla5.3/index.php/component/content/article/ingles-kids-7-8' => '/plantillajoomla5.3/index.php/academico/ingles-kids-7-8',
'/plantillajoomla5.3/index.php/component/content/article/ingles-kids-9-10' => '/plantillajoomla5.3/index.php/academico/ingles-kids-9-10',
'/plantillajoomla5.3/index.php/component/content/article/ingles-teens-11-14' => '/plantillajoomla5.3/index.php/academico/ingles-teens-11-14',
'/plantillajoomla5.3/index.php/component/content/article/ingles-adults-15-plus' => '/plantillajoomla5.3/index.php/academico/ingles-adults-15-plus',
'/plantillajoomla5.3/index.php/component/content/article/ingles-programa-habilidades' => '/plantillajoomla5.3/index.php/academico/ingles-programa-habilidades',
);
if (isset($articleRedirects[$requestPath])) {
header('Location: ' . $articleRedirects[$requestPath], true, 302);
exit;
}
// Load global path definitions
if (file_exists(__DIR__ . '/defines.php')) {
include_once __DIR__ . '/defines.php';
}
require_once __DIR__ . '/includes/defines.php';
// Check the existence of an update-extraction config file
if (
!empty($_GET['jautoupdate'])
&& is_file(JPATH_ADMINISTRATOR . '/components/com_joomlaupdate/update.php')
) {
// Load extraction script and...
require_once JPATH_ADMINISTRATOR . '/components/com_joomlaupdate/extract.php';
// ... die
die();
}
// Run the application - All executable code should be triggered through this file
require_once __DIR__ . '/includes/app.php';