PHP DOMDocument缺失

9
当我运行$dom = new DOMDocument("1.0", "utf-8");时,出现了一个奇怪的错误: 警告: require_once(classes/DOMDocument.class.php) [function.require-once]: failed to open stream: No such file or directory in /var/www/html/cms/bootstrap.php on line 5

致命错误: require_once() [function.require]: Failed opening required 'classes/DOMDocument.class.php' (include_path='.:/usr/share/pear:/usr/share/php:/var/www/html/cms/plugins/Zend/library') in /var/www/html/cms/bootstrap.php on line 5
根据php.net/manual/en/dom.setup.php的说明,需要安装php-xml。我已经尝试过这个方法,但它也出现了错误...
[user@lnxcmsdev cms]$ sudo yum install php-xml
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * addons: mirror.web-ster.com
 * base: mirror.hmc.edu
 * extras: mirror.hmc.edu
 * rpmforge: ftp-stud.fht-esslingen.de
 * updates: mirror.rocketinternet.net
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package php-xml.i386 0:5.1.6-27.el5_5.3 set to be updated
--> Processing Dependency: php-common = 5.1.6-27.el5_5.3 for package: php-xml
--> Finished Dependency Resolution
php-xml-5.1.6-27.el5_5.3.i386 from updates has depsolving problems
  --> Missing Dependency: php-common = 5.1.6-27.el5_5.3 is needed by package php-xml-5.1.6-27.el5_5.3.i386 (updates)
Error: Missing Dependency: php-common = 5.1.6-27.el5_5.3 is needed by package php-xml-5.1.6-27.el5_5.3.i386 (updates)
 You could try using --skip-broken to work around the problem
 You could try running: package-cleanup --problems
                        package-cleanup --dupes
                        rpm -Va --nofiles --nodigest
The program package-cleanup is found in the yum-utils package.
[user@lnxcmsdev cms]$ sudo yum install php-common
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * addons: mirror.web-ster.com
 * base: mirror.hmc.edu
 * extras: mirror.hmc.edu
 * rpmforge: ftp-stud.fht-esslingen.de
 * updates: mirror.rocketinternet.net
Setting up Install Process
Package matching php-common-5.1.6-27.el5_5.3.i386 already installed. Checking for update.
Nothing to do

想法?有什么想法吗?

这是DOM的要求 - http://www.php.net/manual/en/dom.requirements.php。另外,PHP 5.1.6现在已经相当老了。你应该考虑升级。 - Phil
你的问题在于包管理器,而不是 PHP。手动下载 RPM 并使用 rpm --nodeps --force php-xml*.rpm 命令进行安装。 - mario
[user@lnxcmsdev cm]$ sudo yum --enablerepo=webtatic install libxml 正在设置安装进程 没有可用的libxml软件包。 无事可做。 - user420095
3个回答

20

修复了:

sudo yum --enablerepo=webtatic install php-xml
sudo /sbin/service httpd stop
sudo /sbin/service httpd start

1

我遇到了相同的问题,我的Centos7上安装了php71 REMI。

我进行了检查:

yum install php-xml

但是它已经安装好了,我收到了这条消息:

Package php-xml-7.1.4-1.el7.remi.x86_64 already installed and latest version

然后我尝试了这个:

yum install php71-php-xml

然而它被错过了,所以我得到了它

Dependencies Resolved

=====================================
 Package                    Arch                Version                        Repository         Size
=====================================
Installing:
 php71-php-xml              x86_64              7.1.4-1.el7.remi               remi              164 k

Transaction Summary
=====================================
Install  1 Package

我回答了是,然后它安装了。 然后重新启动httpd2.4:

service httpd restart

然后问题被解决了。


1

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接