На хостнге обновили php с версии 4.* до 5.*, в результате при попытке зайти на сайт имеем Fatal error: Out of memory (allocated 10223616) (tried to allocate 4864 bytes) in /h/asd/htdocs.asd.zxc.qw/libraries/joomla/utilities/simplexml.php(305) : eval()'d code on line 1 На первый взгляд что памяти не хватает, написал хостеру, они память увеличили, но проблема не решилась. Затем решил посмотреть этот файлик там написано вот что Код (PHP): /** * SimpleXML implementation. * * The XML Parser extension (expat) is required to use JSimpleXML. * * The class provides a pure PHP4 implementation of the PHP5 * interface SimpleXML. As with PHP5's SimpleXML it is what it says: * simple. Nevertheless, it is an easy way to deal with XML data, * especially for read only access. * * Because it's not possible to use the PHP5 ArrayIterator interface * with PHP4 there are some differences between this implementation * and that of PHP5: * * <ul> * <li>The access to the root node has to be explicit in * JSimpleXML, not implicit as with PHP5. Write * $xml->document->node instead of $xml->node</li> * <li>You cannot acces CDATA using array syntax. Use the method data() instead</li> * <li>You cannot access attributes directly with array syntax. use attributes() * to read them.</li> * <li>Comments are ignored.</li> * <li>Last and least, this is not as fast as PHP5 SimpleXML--it is pure PHP4.</li> * </ul> * * Example: * <code> * :simple.xml: * <?xml version="1.0" encoding="utf-8" standalone="yes"?> * <document> * <node> * <child gender="m">Tom Foo</child> * <child gender="f">Tamara Bar</child> * <node> * </document> * * --- * * // read and write a document * $xml = new JSimpleXML; * $xml->loadFile('simple.xml'); * print $xml->document->toString(); * * // access a given node's CDATA * print $xml->root->node->child[0]->data(); // Tom Foo * * // access attributes * $attr = $xml->root->node->child[1]->attributes(); * print $attr['gender']; // f * * // access children * foreach( $xml->root->node->children() as $child ) { * print $child->data(); * } * </code> * * Note: JSimpleXML cannot be used to access sophisticated XML doctypes * using datatype ANY (e.g. XHTML). With a DOM implementation you can * handle this. * * @package Joomla.Framework * @subpackage Utilities * @since 1.5 */ Как понял, что тут какие-то проблемы с этим на php 5. Вопрос, как это отключить или еще каким-либо образом заставить сайта работать???