Joomla! Extension Manager: management will not load

In 99% of cases, when I try to load the "Management" section of the extension manager, Joomla dies, giving me this error:

Fatal error: Maximum execution time of 30 seconds exceeded in C:\xampp\htdocs\vanillajoomla\libraries\joomla\string\string.php on line 399

Here is the line that calls it (it is in a routine that compares the line with the considered locale):

if (!$locale = setlocale(LC_COLLATE, $locale))

I tried to reinstall several times, without dice. This is locally installed under Windows 7 with XAMPP to test the module I am developing. The error when starting the error does not detect anything, the same for the "php localization timeout".

Does anyone know what causes this, and how can I recover it?

+3
source share
3 answers

. , , , , . , Joomla , . , return strcmp($str1, $str2); . , .

+1

, , , 20 , ;)

//if (!$locale = setlocale(LC_COLLATE, $locale))
{
 $locale = $locale0;
}

Joomla - , - - , (! joomla 2.5). Apache PHP MySQL, , . localhost , joomla.

+5

okey is probably called by some plugin or module .. but worst of all, this is not enough to disable them. I installed 3 plugins for voting (to check which is the best of them), one of them caused this type of manager crash .. I turned them off but it didn’t help .. I use the tip above and commented out line 399, than suddenly this It worked. I deleted all of them, then uncommented line 399, and everything was all right .. I hope this can help someone ..

+1
source

All Articles