Vorrei utilizzare il modulo JSecure.
Nelle spiegazioni c'è scritto di aggiungere due righe di codice all'inizio del file login.php del pannello di amministrazione:
le righe da aggiungere sono queste:
require_once($mosConfig_absolute_path . '/administrator/includes/admin.php' );mosLoadAdminModules( 'left' );
dove le metto?cosa vuol dire all'inizio del file login.php ?
il file login.php è questo(solo l'inizio):
<?php
/**
* @version $Id: login.php 5973 2006-12-11 01:26:33Z robs $
* @package Joomla
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
/** ensure this file is being included by a parent file */
defined( '_VALID_MOS' ) or die( 'Restricted access' );
$tstart = mosProfiler::getmicrotime();
?>
<?php echo "<?xml version=\"1.0\"?>\r\n"; ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php echo $mosConfig_sitename; ?> - Amministrazione [Joomla!]</title>
<meta http-equiv="Content-Type" content="text/html; <?php echo _ISO; ?>" />
<style type="text/css">
@import url(templates/joomla_admin/css/admin_login.css);
</style>
<script language="javascript" type="text/javascript">
function setFocus() {
document.loginForm.usrname.select();
document.loginForm.usrname.focus();
}
</script>
<link rel="shortcut icon" href="<?php echo $mosConfig_live_site .'/images/favicon.ico';?>" />
</head>
<body onload="setFocus();">
<div id="wrapper">
<div id="header">
<div id="joomla"><img src="templates/joomla_admin/images/header_text.png" alt="Logo Joomla!" /></div>
</div>