In case you encounter an error similar to this:
PHP Fatal error: Class 'DOMDocument' not found in /home/randell/lib/ZendFramework-1.10.8/library/Zend/Tool/Project/Profile/FileParser/Xml.php on line 82
wherein line 82 contains
$doc = new DOMDocument('1.0');
it probably means that you tried to create a DOMDocument while your PHP installation doesn’t have support for manipulating XML Documents using the DOM tree, or performing XSL transformations on XML documents.
In Fedora, you can solve this by installing the XML module for PHP by executing the following command as root:
yum install php-xmlRelated posts:
- Error validating location: “org.tigris.subversion.javahl.ClientException: Network connection closed unexpectedly”
- Error: Form elements must not be named “submit”.
- update.locale file doesn’t exist in either the XCurProcD or GreD directories
- Cannot complete the install because one or more required items could not be found. Software being installed: Subversion Revision Graph 1.0.9
- Zend Framework quickstart – Part 1

Awesome!, thank you sir.