syntax error, unexpected T_STRING
Bonjour,
Le code suivant (template compilé par Dwoo) provoque une erreur :
Code:
Parse error: syntax error, unexpected T_STRING in /var/www/vhosts/free-evolution.org/httpdocs/library/3rdparty/dwoo/compiled/var/www/vhosts/free-evolution.org/httpdocs/application/home/templates/home_index.tpl.html.d16.php on line 8
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| <?php
if (function_exists('Dwoo_Plugin_t')===false)
$this->getLoader()->loadPlugin('t');
if (function_exists('Dwoo_Plugin_execution_time')===false)
$this->getLoader()->loadPlugin('execution_time');
ob_start(); /* template body */ ;
'';// checking for modification in file:skins/default/templates/base.tpl.html
if (!("1331504039" == filemtime('skins/default/templates/base.tpl.html'))) { ob_end_clean(); return false; };?><?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title><?php echo Dwoo_Plugin_t($this, 'evolution_title');?></title>
<link rel="stylesheet" type="text/css" href="skins/default/css/style.css" media="screen" />
<link rel="stylesheet" type="text/css" href="skins/default/css/messages.css" media="screen" />
<link rel="stylesheet" type="text/css" href="skins/default/css/pagination.css" media="screen" />
</head>
<body>
<p><img src="skins/default/images/title.gif" alt="Logo" title="Evolution" /></p>
<div id="menu1">
<li><a href="./?rt=contact"><?php echo Dwoo_Plugin_t($this, 'contact');?></a></li>
<li><a href="./?rt=bugtracker/bug/list"><?php echo Dwoo_Plugin_t($this, 'bugs');?></a></li>
<li><a href="./?rt=cms/article/show/1"><?php echo Dwoo_Plugin_t($this, 'project');?></a></li>
<li><a href="./?rt=news/news/index"><?php echo Dwoo_Plugin_t($this, 'news');?></a></li>
<li><a href="./"><?php echo Dwoo_Plugin_t($this, 'home');?></a></li>
</div> |
L'erreur se produit uniquement chez mon hébergeur mais pas en local. Je ne comprends pas ce qui se passe.:?