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:
WordPress Custom Taxonomy Pagination show 404 page not found error
How to reduce admin generator query in Symfony 1.4
How to add native menu support in your WordPress theme?
Symfony: Control Model->save() function to perform INSERT or UPDATE
How to disable ssh root login?
Cynogenmod: No Vibration when Receiving SMS
Virtue Theme: How to enable slider in shop page?
PHP Programming: The difference between require() and include()
Share this with your friends:-