Page 1 of 1

Upgrade script fails

Posted: Wed Jul 03, 2019 10:37 am
by gzaloprgm
Hi. I'm trying to upgrade from version 5.5.11 to 5.6.3, but the upgrade script is failing with the following error after the backup:

"No package php54-imap available."
There seems to be an issue with the line 211 of the upgrade script, because the correct package name should be php54-php-imap instead of php54-imap (at least in Centos 6).

Thanks, Gonzalo

Re: Upgrade script fails

Posted: Wed Jul 03, 2019 4:33 pm
by lmiltchev
What is the output of the following command?

Code: Select all

yum list installed php*common* | grep php | awk -F "-" {'print $1'} | tail -1

Re: Upgrade script fails

Posted: Wed Jul 03, 2019 11:20 pm
by gzaloprgm
The output of that command was "php54"... The issue is that the package "php54-imap" does not seem to exist in Centos 6 (or maybe my repositories are misconfigured)

To complete the upgrade, I just replaced the ending of that line of the script with tail -1`-php-imap -y

Re: Upgrade script fails

Posted: Mon Jul 08, 2019 12:03 pm
by lmiltchev
To complete the upgrade, I just replaced the ending of that line of the script with tail -1`-php-imap -y
It seems like you have been able to resolve the issue. Is it OK if we close the topic?

Re: Upgrade script fails

Posted: Wed Jul 10, 2019 9:29 am
by gzaloprgm
Sure, you can close it. Thanks