Ciao a tutti ho un problema con un template che avevo scaricato ad ottobre e che adesso è diventato a pagamento. Dunque il mio problema è questo: ho un sito che devo aggiornare dalla versione 1.0.13 alla 1.0.15. Sto prima di tutto facendo le prove in locale e mi sono accorta che il template che ho sul sito nel momento in cui lo associo alla nuova versione di joomla e di easyphp 2.0b1 mi dà questo errore:
"Parse error: parse error, unexpected $end in D:\Programmi\EasyPHP 2.0b1\www\joomla\templates\partnership\index.php on line 74". Non riesco ad individuare il problema. Sapreste aiutarmi?
Questo è il codice del file index.php:
<!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">
<?php
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); ?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href="<?php echo $mosConfig_live_site;?>/templates/<?php echo $mainframe-> getTemplate(); ?>/css/template_css.css" rel="stylesheet" type="text/css" media="all"/>
<link rel="shortcut icon" href="<?php echo $mosConfig_live_site;?>/images/favicon.ico" />
<?php
if ( $my->id ) {
initEditor();
}
mosShowHead();
?>
<style type="text/css">
<!--
body {
margin-top: 0px;
}
-->
</style></head>
<body id="page_bg"><table width="" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><div id="header"><div id="search"><?php mosLoadModules ( 'user5', -3 ); ?></div><div id="title"><?php echo $mosConfig_sitename; ?></div></div></td>
</tr>
<tr>
<td><div id="nav"><?php mosLoadModules ( 'top', -3 ); ?></div><div id="corporate"><?php if (mosCountModules('user3')) { ?>
<div id="user3">
<?php mosLoadModules ( 'user3', -3 ); ?>
<? } ?>
</div></div></td>
</tr>
<tr>
<td><table border="0" cellspacing="0" cellpadding="3" id="main">
<tr>
<td valign="top"><div id="left">
<?php mosLoadModules ( 'left', -3); ?></div>
<div id="user1"> <?php mosLoadModules ( 'user1', -3 ); ?> </div>
</td>
<td width="100%" align="left" valign="top" style="padding-right: 10px;"><table width="100%" border="0" cellspacing="0" cellpadding="3">
<tr>
<td> </td>
</tr>
<tr>
<td><?php mosMainBody(); ?></td>
</tr>
</table></td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td valign="top" id="main"><div id="bottom">
<?php include_once('includes/footer.php'); ?>
</div>
<div id="main_bottom">
<div class="validate" align="center">
<p> </p>
</div>
</div></td>
</tr>
</table></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td></td>
</tr>
</table>
<?php mosLoadModules( 'debug', -1 );?>
</body>
</html>
Dov'è il problema?
Grazie
Katia