ローカルで開発していたCakePHPベースのウェブアプリを別サーバーで稼動させようとしたら表記のエラーが発生。
原因はphp-xmlパッケージの欠如。DomDocumentクラスはphp-xmlパッケージに含まれているので、このパッケージをインストールすれば解決するはず。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# 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 |