在Drupal 8站点中找不到类“DOMDocument”

问题描述 投票:0回答:1

我在Drupal 8网站的页面上发现了一个错误;我访问它时总是显示此消息错误:

Error: Class 'DOMDocument' not found in /var/www/vhosts/mysite/core/lib/Drupal/Component/Utility/Html.php on line 286

我正在使用Centos 6,我运行了这个命令:

    yum install php71w-xml
    sudo service httpd restart 

我在php.ini中验证:扩展php启用了dom,xml,xmlreader,xmlwrite但是对我没用。

你能给我一个解决方案吗?我是Drupal 8,php 7.1,apache2.2

php drupal centos
1个回答
1
投票

我在使用php 7.x的Ubuntu上遇到了同样的问题并修复了它以下内容。

sudo apt-get install php-xml

完成后,重新启动Web服务器

Source: https://laracasts.com/discuss/channels/servers/how-do-i-install-the-dom-extension-for-php7

© www.soinside.com 2019 - 2024. All rights reserved.