Joomla 1.5 Fatal error: Out of memory ... eval()'d code on line 1

Тема в разделе "Ошибки при работе с Joomla", создана пользователем Gover, 04.03.2009.

  1. Offline

    Gover Недавно здесь

    Регистрация:
    06.08.2006
    Сообщения:
    32
    Симпатии:
    0
    Пол:
    Мужской
    На хостнге обновили 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):
    1. /**
    2.  * SimpleXML implementation.
    3.  *
    4.  * The XML Parser extension (expat) is required to use JSimpleXML.
    5.  *
    6.  * The class provides a pure PHP4 implementation of the PHP5
    7.  * interface SimpleXML. As with PHP5's SimpleXML it is what it says:
    8.  * simple. Nevertheless, it is an easy way to deal with XML data,
    9.  * especially for read only access.
    10.  *
    11.  * Because it's not possible to use the PHP5 ArrayIterator interface
    12.  * with PHP4 there are some differences between this implementation
    13.  * and that of PHP5:
    14.  *
    15.  * <ul>
    16.  * <li>The access to the root node has to be explicit in
    17.  * JSimpleXML, not implicit as with PHP5. Write
    18.  * $xml->document->node instead of $xml->node</li>
    19.  * <li>You cannot acces CDATA using array syntax. Use the method data() instead</li>
    20.  * <li>You cannot access attributes directly with array syntax. use attributes()
    21.  * to read them.</li>
    22.  * <li>Comments are ignored.</li>
    23.  * <li>Last and least, this is not as fast as PHP5 SimpleXML--it is pure PHP4.</li>
    24.  * </ul>
    25.  *
    26.  * Example:
    27.  * <code>
    28.  * :simple.xml:
    29.  * <?xml version="1.0" encoding="utf-8" standalone="yes"?>
    30.  * <document>
    31.  *   <node>
    32.  *   <child gender="m">Tom Foo</child>
    33.  *   <child gender="f">Tamara Bar</child>
    34.  *   <node>
    35.  * </document>
    36.  *
    37.  * ---
    38.  *
    39.  * // read and write a document
    40.  * $xml = new JSimpleXML;
    41.  * $xml->loadFile('simple.xml');
    42.  * print $xml->document->toString();
    43.  *
    44.  * // access a given node's CDATA
    45.  * print $xml->root->node->child[0]->data(); // Tom Foo
    46.  *
    47.  * // access attributes
    48.  * $attr = $xml->root->node->child[1]->attributes();
    49.  * print $attr['gender']; // f
    50.  *
    51.  * // access children
    52.  * foreach( $xml->root->node->children() as $child ) {
    53.  *   print $child->data();
    54.  * }
    55.  * </code>
    56.  *
    57.  * Note: JSimpleXML cannot be used to access sophisticated XML doctypes
    58.  * using datatype ANY (e.g. XHTML). With a DOM implementation you can
    59.  * handle this.
    60.  *
    61.  * @package     Joomla.Framework
    62.  * @subpackage  Utilities
    63.  * @since 1.5
    64.  */


    Как понял, что тут какие-то проблемы с этим на php 5.

    Вопрос, как это отключить или еще каким-либо образом заставить сайта работать???
     
  2.  
  3. Offline

    doc1705 Недавно здесь

    Регистрация:
    11.07.2010
    Сообщения:
    4
    Симпатии:
    0
    Пол:
    Мужской
    присоединяюсь у вопросу! помогите пожалуйста
     

Поделиться этой страницей

Загрузка...