Algunas personas que estan usando Joomla 1.5.17 o 16 estan teniendo problemas despues de actualizar a la última versión. Se debe deshabilitar una nueva función incorporada a Joomla editando el archivo helper.php el cual lo encuentraran en la carpeta libraries/joomla/plugin de su raiz joomla, borrando las líneas 122 a 136:
if(!$shutdown_handler_installed)
{
// only register the shutdown function
//if we are capable of checking the errors (reqs PHP 5.2+)
if (version_compare("5.2", phpversion(), "<="))
{
// you can only register a static method if it is declared static
// we can't declare static b/c it breaks on PHP4
// therefore we instantiate the helper for this one purpose
$pluginHelper = new JPluginHelper;
register_shutdown_function(array($pluginHelper, 'shutdown'));
}
// we may not have installed the handler, but setting this to true
// will prevent us from continually running the version compare
$shutdown_handler_installed = true;
}
deshabilitara la función que deshabilita los plugins que se ejecutan con error causando conflictos en su web joomla.
Lean el post publicado en Forosdelweb que explica el porque de este comportamiento –> http://www.forosdelweb.com/f119/error-joomla-fallos-joomla-1-5-16-1-5-17-a-806471/
En breve tendremos Joomla 1.5.18 que subsana este pequeño fallo.