Trying to migrate a symfony system to a new server. It show me “PHP Fatal error: Class ‘DOMDocument’ not found in…” when i click on some link. After some checking, the problem actually caused by a missing module – php xml module. Install the module will solve the problem 🙂
To solve “PHP Fatal error: Class ‘DOMDocument’ not found in”, follow the steps below:-
Advertisements
- You must ssh to your system using root
- Now install the xml module in php using yum (yum is only available in selected linux distribution eg: CentOS, RedHat, Fedora, etc)
yum install php-xml
just press ‘Y’ to install the dependencies module.
- Once the installation finish, you need to restart your apache and the error message “Class ‘DOMDocument’ not found” will go away!
service httpd restart
Related posts:
How to install Fedora to USB drive
How to install SVN 1.6 on CentOS 5
PHP: How to convert ISO character (HTMLEntities) to UTF-8?
jQuery: disable autoscrolling to top when click on anchor
Symfony 1.4: How to sort foreign key record?
WordPress: How to create left sidebar template in TwentyEleven theme?
How to strtolower an array in PHP?
Free Project Management software for Mac OS X - GanttProject
Share this with your friends:-