端くれプログラマの備忘録 PHP [PHP] Class ‘DomDocument’ not found エラー対処

[PHP] Class ‘DomDocument’ not found エラー対処

ローカルで開発していたCakePHPベースのウェブアプリを別サーバーで稼動させようとしたら表記のエラーが発生。

原因はphp-xmlパッケージの欠如。DomDocumentクラスはphp-xmlパッケージに含まれているので、このパッケージをインストールすれば解決するはず。

# yum list installed | grep php-xml
# yum info php-xml
Available Packages
Name        : php-xml
Arch        : x86_64
Version     : 5.3.3
Release     : 40.el6_6
Size        : 106 k
Repo        : updates
Summary     : A module for PHP applications which use XML
URL         : http://www.php.net/
License     : PHP
Description : The php-xml package contains dynamic shared objects which add support
            : to PHP for manipulating XML documents using the DOM tree,
            : and performing XSL transformations on XML documents.
# yum install -y php-xml