Fatal error: Class 'DropDead\HomeBundle\Controller\DOMDocument' not found in ....
I need to install php-xml. I am using OS X. Cant find out how to install this extension.
Fatal error: Class 'DropDead\HomeBundle\Controller\DOMDocument' not found in ....
I need to install php-xml. I am using OS X. Cant find out how to install this extension.
Are you sure, you're doing it right? the dom extensions usually is compiled by default.
It looks like you run into namespacing issues. Try
$foo = new \DomDocument();
instead of just DomDocument() and it should hopefully run.