1

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.

hakre
  • 193,403
  • 52
  • 435
  • 836
samsamm777
  • 1,648
  • 2
  • 14
  • 14

1 Answers1

8

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.