ciao ragazzi,
mi sono accorto che la nuova versione va in conflitto con il componente Page_cache, infatti dopo l'aggiornamento ho provato ad aprire alcuni forum e ho avuto questa risposta dal server:
Fatal error: Cannot redeclare microtime_float() (previously declared in /home/virtual/site98/fst/var/www/html/components/com_page_cache/page_cache.class.php:422) in /home/virtual/site98/fst/var/www/html/components/com_fireboard/sources/parser.inc.php on line 62
Cercando in rete ho trovato la soluzione, la posto qui che potrebbe servire a qualcuno.
In /components/com_fireboard/sources/parser.inc.php alla linea 62 sostituite questo
[code:1]function microtime_float() {
list($usec, $sec) = explode(" ", microtime());
$newtime = ((float)$usec + (float)$sec);
if($GLOBALS['microtime_prev']) {
$GLOBALS['microtime_total'] += ($newtime-$GLOBALS['microtime_prev']);
//echo 'T:'.$GLOBALS['microtime_total'].',d:'.($newtime-$GLOBALS['microtime_prev']);
//echo ":n";
}
$GLOBALS['microtime_prev'] = $newtime;
}[/code:1]
con questo
[code:1]if (!function_exists('microtime_float')) {
function microtime_float() {
list($usec, $sec) = explode(" ", microtime());
$newtime = ((float)$usec + (float)$sec);
if($GLOBALS['microtime_prev']) {
$GLOBALS['microtime_total'] += ($newtime-$GLOBALS['microtime_prev']);
//echo 'T:'.$GLOBALS['microtime_total'].',d:'.($newtime-$GLOBALS['microtime_prev']);
//echo ":n";
}
$GLOBALS['microtime_prev'] = $newtime;
}
}[/code:1]
Ciao a tutti
:)