...almeno per me!
Vorrei modificare l'index.php al fine di inserire nuove posizioni.
Ho aperto il file index.php con un editor di testo e all'interno mi aspettavo di trovare il codice:
<?php
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
require_once dirname(__FILE__) . DS . 'functions.php';
?>
<!DOCTYPE .....
<head>......
</head>
<body>.....
</body>
</html>
invece vedo un codice a me praticamente sconosciuto.
// Set flag that this is a parent file
define( '_JEXEC', 1 );
define('JPATH_BASE', dirname(__FILE__) );
define( 'DS', DIRECTORY_SEPARATOR );
require_once ( JPATH_BASE .DS.'includes'.DS.'defines.php' );
require_once ( JPATH_BASE .DS.'includes'.DS.'framework.php' );
JDEBUG ? $_PROFILER->mark( 'afterLoad' ) : null;
[......]
Avrei voluto inserire nuove posizioni usando
<jdoc:include type="modules" name="breadcrumb" />
come già mi è stato suggerito in altra occasione..
Cosa posso fare?
Grazie 1000