1

php-devel をインストールしようとしていますが、この問題が発生します。

PHP をインストールしました。Google などを試してみましたが、うまくいきません。

これは私の環境です:

PHP -バージョン

PHP 5.3.26 (cli) (built: Jun  9 2013 12:23:50)
Copyright (c) 1997-2013 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2013 Zend Technologies

OS バージョン: cat /etc/redhat-release

Red Hat Enterprise Linux Client release 5.5 (Tikanga)


[root@box html]# yum install php-devel
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package php-devel.x86_64 0:5.1.6-27.el5 set to be updated
--> Processing Dependency: php = 5.1.6-27.el5 for package: php-devel
--> Finished Dependency Resolution
php-devel-5.1.6-27.el5.x86_64 from workstation has depsolving problems
  --> Missing Dependency: php = 5.1.6-27.el5 is needed by package php-devel-5.1.6-27.el5.x86_64 (workstation)

Packages skipped because of dependency problems:
    php-devel-5.1.6-27.el5.x86_64 from workstation
4

2 に答える 2

0

リンクの指示に従ってください。

http://www.howtoforge.com/quick-n-easy-lamp-server-centos-rhel

または、MYSQL と Web サーバーのインストールと構成が完了したら、以下をコピーします。

yum install php php-mysql php-common php-gd php-mbstring php-mcrypt php-devel php-xml

次の RPM をダウンロードしてインストールします。

http://rpm.pbone.net/index.php3/stat/4/idpl/21966196/dir/centos_other/com/php-devel-5.3.26-1.w5.x86_64.rpm.html

問題: php 5.3.26 があり、php-devel 5.1 をインストールしようとしています。

提供された RPM を確認します。Red Hat 5.5 に合わせるべきだと思います。そうでない場合は、システムに適した php-devel 5.3.26 の RPM を見つけるか (yum install php53-devel を試してください)、PHP をバージョン 5.1 にダウングレードする必要があります。またはリポジトリを更新すると、yum を使用して php と php-devel の両方の最新バージョンを取得できます。

OK、これでうまくいくはずです。

ステップ 1:現在のバージョンの php を削除する

yum erase php

ステップ 2:次の RPM をダウンロードしてインストールします。

http://rpmfind.net//linux/RPM/remi/enterprise/5/x86_64/php-5.4.16-1.el5.remi.x86_64.html

ステップ 3:この RPM をダウンロードしてインストールする

http://rpmfind.net//linux/RPM/remi/enterprise/5/x86_64/php-devel-5.4.15-1.el5.remi.x86_64.html
于 2013-07-03T23:46:55.203 に答える