“Fatal error: Class ‘DOMDocument’ not found”
概要
apacheで動いているWEBサーバーの保守契約終了のため新サーバーへ移行中
折角だからnginxにしてみたところ、動作しないコンテンツが出てきたので
調査したところ、あるPHPファイル内でXMLを読み取り処理する関数があり
このメッセージが出ていた。
表面的なメッセージは500 Internal Server Errorが表示されていたので
Chromeのデベロッパーツールで詳しく確認した。
原因
php-xmlのインストール忘れ
対応
CentOS6にremi リポジトリを追加してphp-5.6をインストールしているので
yum install --enablerepo=remi php-xml
でインストールする。
自分の環境ではなぜかBaseリポジトリが参照されてしまうので
一旦リポジトリ参照をクリアした後、remiを見るように
yum install --disablerepo=* --enablerepo=remi-php56 install php-xml
でインストールした。
Author And Source
この問題について(“Fatal error: Class ‘DOMDocument’ not found”), 我々は、より多くの情報をここで見つけました https://qiita.com/f-akazawa/items/af8fe7f4ae2ad3c1fb1b著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .