PHP 5,3 upgrade not displaying [solved]

Support/Development for PHP
contemporaryfusion
New Forum User
New Forum User
Posts: 3
Joined: Mon Jan 10, 2011 9:29 am

PHP 5,3 upgrade not displaying [solved]

Unread post by contemporaryfusion »

Hi guys,

Hope I am posting this in the right place (Forgive me if I am not it's mu first post) I'm trying to upgrade to PHP 5.3 using the ART RPM packages. When I run

Code: Select all

yum --enablerepo=atomic-testing upgrade php
Loaded plugins: allowdowngrade, fastestmirror, priorities
Loading mirror speeds from cached hostfile
 * addons: mirrors.melbourne.co.uk
 * atomic-testing: www6.atomicorp.com
 * base: mirrors.melbourne.co.uk
 * extras: mirrors.melbourne.co.uk
 * rpmforge: apt.sw.be
 * updates: mirrors.melbourne.co.uk
Excluding Packages from CentOS-5 - Addons
Finished
Excluding Packages from CentOS-5 - Base
Finished
Excluding Packages from CentOS-5 - Extras
Finished
Excluding Packages from Red Hat Enterprise 5 - RPMforge.net - dag
Finished
Excluding Packages from CentOS-5 - Updates
Finished
79 packages excluded due to repository priority protections
Setting up Upgrade Process
No Packages marked for Update
The exclusions I have mostly lie around i386 packages as this is a 64 bit system and I keep running into compatibility issues between x86 and x86_64 on other systems (Not yet had this problem with ART packages though)

Is PHP 5.3 being updated and as such do the mirrors not have PHP available at present? I updated to 5.2.17 on my 5.2 "stable" system no worries (ART rpm again) but 5.3 seems to have disappeared completely. Help appreciated.
Dave
Last edited by contemporaryfusion on Wed Jan 12, 2011 6:22 am, edited 1 time in total.
Highland
Forum Regular
Forum Regular
Posts: 674
Joined: Mon Apr 10, 2006 12:55 pm

Re: PHP 5,3 upgrade not displaying

Unread post by Highland »

5.3 is still only in the atomic testing. The following command should show it to you

Code: Select all

#yum check-update --enablerepo=atomic-testing
"Its not a mac. I run linux... I'm actually cool." - scott
BruceLee
Forum Regular
Forum Regular
Posts: 879
Joined: Sat Mar 28, 2009 6:58 pm
Location: Germany

Re: PHP 5,3 upgrade not displaying

Unread post by BruceLee »

check the priorities
contemporaryfusion
New Forum User
New Forum User
Posts: 3
Joined: Mon Jan 10, 2011 9:29 am

Re: PHP 5,3 upgrade not displaying

Unread post by contemporaryfusion »

Priorities are on and set to 1, but I also temporarily excluded any PHP package from non atomic repo's. I had enabled Atomic-Testing. Below is an output from today's check-update

Code: Select all

testbed ~ # yum --enablerepo=atomic-testing check-update
Loaded plugins: fastestmirror, priorities
Loading mirror speeds from cached hostfile
 * addons: mirror.netrino.co.uk
 * atomic: www6.atomicorp.com
 * atomic-testing: www6.atomicorp.com
 * base: mirror.netrino.co.uk
 * extras: mirror.netrino.co.uk
 * rpmforge: fr2.rpmfind.net
 * updates: mirror.netrino.co.uk
Excluding Packages from CentOS-5 - Addons
Finished
Excluding Packages from CentOS / Red Hat Enterprise Linux 5 - atomicrocketturtle.com
Finished
Excluding Packages from CentOS / Red Hat Enterprise Linux 5 - atomicrocketturtle.com - (Testing)
Finished
Excluding Packages from CentOS-5 - Base
Finished
Excluding Packages from CentOS-5 - Extras
Finished
Excluding Packages from CentOS-5 - Updates
Finished
617 packages excluded due to repository priority protections

checkpolicy.x86_64                                                                                                  2.0.19-2.el5.art                                                                                           atomic-testing
httpd.x86_64                                                                                                        2.2.17-1.el5.art                                                                                           atomic-testing
httpd-devel.x86_64                                                                                                  2.2.17-1.el5.art                                                                                           atomic-testing
httpd-manual.x86_64                                                                                                 2.2.17-1.el5.art                                                                                           atomic-testing
libsepol.x86_64                                                                                                     2.0.36-1.el5.art                                                                                           atomic-testing
mod_ssl.x86_64                                                                                                      1:2.2.17-1.el5.art                                                                                         atomic-testing
spamassassin.x86_64                                                                                                 1:3.3.1-1.el5.art                                                                                          atomic-testing
Obsoleting Packages
razor-agents.x86_64                                                                                                 2.84-1.el5.art                                                                                             atomic
    perl-Razor-Agent.x86_64                                                                                         2.84-1.el5.rf                                                                                              installed
testbed ~ # rpm -qa |grep php
php-pdo-5.2.17-1.el5.art
php-xml-5.2.17-1.el5.art
php-pear-1.9.1-1.jason.1
php-cli-5.2.17-1.el5.art
php-gd-5.2.17-1.el5.art
php-mysql-5.2.17-1.el5.art
php-mbstring-5.2.17-1.el5.art
php-devel-5.2.17-1.el5.art
php-common-5.2.17-1.el5.art
php-5.2.17-1.el5.art
php-ldap-5.2.17-1.el5.art

so you can see priorities is on and the 617 excluded are the x86 I mentioned earlier. ART is the 5.2 version of PHP so I don't think it can be a case of another PHP package has a higher priority as both Atomic and Atomic-testing have priorites of 2 and 1 respectively so testing should have a higher priority than atomic right?
contemporaryfusion
New Forum User
New Forum User
Posts: 3
Joined: Mon Jan 10, 2011 9:29 am

Re: PHP 5,3 upgrade not displaying [solved]

Unread post by contemporaryfusion »

This appears to have resolved itself overnight - I guess it was a mirror replicating.

Dave
Highland
Forum Regular
Forum Regular
Posts: 674
Joined: Mon Apr 10, 2006 12:55 pm

Re: PHP 5,3 upgrade not displaying [solved]

Unread post by Highland »

It never hurts to clean your cache either

Code: Select all

#yum clean all
"Its not a mac. I run linux... I'm actually cool." - scott
Post Reply