I think it is better to give you further information.
The following output is caused by "yum install phpldapadmin"
------ Resolving Dependencies
--> Running transaction check
---> Package phpldapadmin.noarch 0:1.1.0.5-1.fc9 set to be updated
--> Processing Dependency: php-ldap for package: phpldapadmin
--> Running transaction check
---> Package php-ldap.i386 0:5.2.5-7.fc9 set to be updated
--> Processing Dependency: php-common = 5.2.5-7.fc9 for package: php-ldap
--> Finished Dependency Resolution
php-ldap-5.2.5-7.fc9.i386 from fedora has depsolving problems
--> Missing Dependency: php-common = 5.2.5-7.fc9 is needed by package php-ldap-5.2.5-7.fc9.i386 (fedora)
Error: Missing Dependency: php-common = 5.2.5-7.fc9 is needed by package php-ldap-5.2.5-7.fc9.i386 (fedora)
------
So php-ldap need php-common 5.2.5-7.fc9
Then I try "yum install php-common".
------ [root@mail ~]# yum install php-common
Loaded plugins: refresh-packagekit
Setting up Install Process
Parsing package install arguments
Package matching php-common-5.2.5-7.fc9.i386 already installed. Checking for update.
Nothing to do
------
So php-ldap could not find php-common-5.2.5-7.fc9.i386 altthough it is installed.
But if I do "yum list common-php" I get another version:
------ [root@mail ~]# yum list php-common
Loaded plugins: refresh-packagekit
Installed Packages php-common.i386 5.2.6-2.fc9 installed
------
"yum list php-common" let me conclude version 5.2.6-2.fc9 is installed.
"yum install php-common" let me conclude version 5.2.5-7.fc9 is installed.
I assume that this discrepency is the cause why php-ldap could not depsolve dependencies but how can I solve this issue?