Installing/Configuring

Table of Contents

add a note add a note

User Contributed Notes 5 notes

up
7
eugenekay at kashpureff dot org
6 years ago
Certain Linux distributions do not have this extension included in the minimum PHP package. It can usually be found in one of the "optional" php-* packages.

For CentOS, you will need to run "yum install php-xml", which provides this extension.
up
0
d at duane dot com
5 years ago
On Fedora 16, you can use
yum -y install php-xml
and then be sure to add
extension=dom.so
in the php.ini file for this to work.
up
-1
Sergey A.
7 years ago
don't forget
extension=dom.so
in extensions.ini
on freebsd
up
-5
z1mok at yahoo dot com
8 years ago
You need the DOM MODULE installed if you want to use Youtube Data Api with the Zend GData Library.

Otherwise you cannot obtain a valid Upload Form Token.
up
-14
Anonymous
5 years ago
In Redhat 5.5 using php53 you need to not only install php53-xml but php53-devel as well to install DOMDocument
To Top