Class 'DOMDocument' not found

后端 未结 16 1512
余生分开走
余生分开走 2020-11-30 18:58

I\'ve found an error on a page in my Magento application; it always show this message error when I visit it:

Fatal error: Class \'DOMDocument\' not fo

16条回答
  •  长情又很酷
    2020-11-30 19:53

    You need to install the DOM extension. You can do so on Debian / Ubuntu using:

    sudo apt-get install php-dom
    

    And on Centos / Fedora / Red Hat:

    yum install php-xml
    

    If you get conflicts between PHP packages, you could try to see if the specific PHP version package exists instead: e.g. php53-xml if your system runs PHP5.3.

提交回复
热议问题