Error xml_domit_list_parser

On some hosting with PHP5 when working with menus, you may receive an error like:

Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 35 bytes) in / var / www / croj / includes / domit / xml_domit_lite_parser.php on line 135

In this case, you may lose access to edit the main menu.

This problem is known to developers since the days of Mambo. Joomla developers say on their side all possible corrections have been made. The reason for this error lies in the Hosting setup.

To solve this problem is usually recommended to increase the amount of memory to run php from 8 megabytes to 16 (at least). But, unfortunately, the solution is not always helpful.

On official forum One of the participants found the community as an additional solution.

In the configuration file of Joomla! after the line

 
setlocale (LC_TIME, $ MosConfig_locale);   / / Country locale

need to add the line

 
ini_set("Memory_limit", "32M");

Comments are closed.