Want to subscribe to topics you're interested in?
Become a Member

Upgrade 07 stable to 08 beta

Discussion in 'Install & Upgrades or Pre-Install Questions' started by Matt Williams, Feb 12, 2015.

  1. Matt Williams

    Matt Williams WordPress Fanatic

    537
    104
    43
    Nov 22, 2014
    Virginia, USA
    Ratings:
    +157
    Local Time:
    5:44 AM
    latest
    10
    How do you upgrade an existing 07 stable to an 08 beta?

     
  2. eva2000

    eva2000 Administrator Staff Member

    53,149
    12,110
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,645
    Local Time:
    7:44 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Only difference from instructions at Upgrade - How to upgrade Centmin Mod | Centmin Mod Community for .08 beta upgrade from .07 stable is maintaining the Centmin Mod .0 7 alias shortcut for .07's install location at /usr/local/src/centmin-v1.2.3mod located in /root/.bashrc.

    Code:
    alias centmin='cd /usr/local/src/centmin-v1.2.3mod; bash centmin.sh'
    alias cmdir='pushd /usr/local/src/centmin-v1.2.3mod'
    You can see this method using git command line approach at Upgrade - Working with git command line for updating Centmin Mod local copies | Centmin Mod Community

    Otherwise it's just a matter of replacing .07 install files location at /usr/local/src/centmin-v1.2.3mod with .08 beta files downloaded zip and then upgrading Nginx/PHP-FPM Upgrade - How to upgrade Centmin Mod | Centmin Mod Community

    Code:
    branchname=123.08centos7beta01
    mv /usr/local/src/centmin-v1.2.3mod /usr/local/src/centmin-v1.2.3mod-orig
    wget -O /usr/local/src/${branchname}.zip https://github.com/centminmod/centminmod/archive/${branchname}.zip
    cd /usr/local/src
    unzip ${branchname}.zip
    mv centminmod-${branchname} /usr/local/src/centmin-v1.2.3mod
    cd /usr/local/src/centmin-v1.2.3mod
    chmod +x centmin.sh
    or follow git command line method Upgrade - Working with git command line for updating Centmin Mod local copies | Centmin Mod Community