Το χαρακτηριστικό έχει την εξής ιδιότητα. Όταν κάποιο plugin δεν γίνεται include (υπάρχει στην βάση δεδομένων αλλά δεν υπάρχει filesystem entry), τότε αυτόματα απενεργοποιείται με ότι αυτό τυχόν συνεπάγεται!
Εαν λοιπόν παρουσιάζεται πρόβλημα μετά απο κάποια αναβάθμιση, πηγαίνουμε στο libraries/joomla/plugin/helper.php
και διαγράφουμε τις γραμμές 122-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;
}






