• Recent
  • Unsolved
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Register
  • Login
  • Recent
  • Unsolved
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Register
  • Login

PHP 7.0.0 finally Released

Scheduled Pinned Locked Moved
Announcements
php 7.0.0
6
23
18.6k
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • D
    d4rk3
    last edited by Feb 19, 2016, 7:12 PM

    I’m running pure PHP 7.0 on four different Ubuntu Server 15.10 servers…let me know how I can help!

    M 1 Reply Last reply Feb 19, 2016, 7:14 PM Reply Quote 0
    • M
      MRCUR Testers @d4rk3
      last edited by Feb 19, 2016, 7:14 PM

      @d4rk3 Are you running FOG on them?

      D 1 Reply Last reply Feb 19, 2016, 8:21 PM Reply Quote 0
      • D
        d4rk3 @MRCUR
        last edited by Feb 19, 2016, 8:21 PM

        @MRCUR No…just hopes and dreams.

        Of course I’m running FOG on them lol…two normal servers and two storage nodes.

        Q 1 Reply Last reply Feb 22, 2016, 8:58 AM Reply Quote 1
        • Q
          Quazz Moderator @d4rk3
          last edited by Feb 22, 2016, 8:58 AM

          @d4rk3 Could you go through the steps on how to make it work?

          1 Reply Last reply Reply Quote 0
          • D
            d4rk3
            last edited by d4rk3 Feb 22, 2016, 5:33 AM Feb 22, 2016, 11:13 AM

            Update (don’t install yet) to the latest trunk via Git or SVN, then…

            Edit /opt/fog/.fogsettings (or just comment out this line):

            packages=''
            

            Purge everything php5:

            sudo service apache2 stop
            
            sudo apt-get purge -y php5 php5-common php5-json php5-gd php5-cli php5-curl php5-mysqlnd php5-fpm php5-mcrypt php5-readline libapache2-mod-php5
            
            sudo rm -rf /etc/apt/sources.list.d/ondrej-ubuntu-php5-5_6-wily.list
            sudo rm -rf /etc/apache2/mods-enabled/php5.conf
            sudo rm -rf /etc/apache2/mods-enabled/php5.load
            

            Install php7.0:

            sudo add-apt-repository -y ppa:ondrej/php-7.0
            
            sudo apt-get update
            
            sudo apt-get install -y libapache2-mod-php7.0 php7.0 php7.0-phpdbg php7.0-readline php7.0-cgi libphp7.0-embed php7.0-cli php7.0-common php7.0-curl php7.0-fpm php7.0-json php7.0-mcrypt php7.0-mysql php7.0-opcache php7.0-gd php php-cli php-common php-curl php-gd php-mcrypt php-mysql php-readline
            

            Edit /lib/ubuntu/config.sh (lines 19-23, 81, delete line 82):

            php_ver=7.0
            php_verAdds="-7.0"
            repo="php${php_verAdds}"
            [[ $php_ver != 7.0 ]] && phpcmd="php" || phpcmd="php"
            [[ $php_ver != 7.0 ]] && phpfpm="php-fpm${php_ver}" || phpfpm="php7.0-fpm"
            
            [[ $php_ver != 7.0 ]] && phpini="/etc/$phpcmd/$php_ver/apache2/php.ini" || phpini="/etc/$phpcmd/$php_ver/apache2/php.ini"
            

            That’s it 🙂 then install the current trunk that you already updated to and the install should finish without errors.

            If I had to guess I’d imagine that my work on config.sh could be simplified or improved but this always works and I don’t ever have to worry about php5 trying to re-install via .fogsettings.

            Please feel free to use any/all of these steps as any of you please. I’m no expert on php but I can’t see any reason why the latest FOG shouldn’t be pure php7.0.

            Feedback is always welcome 🙂

            Q 1 Reply Last reply Feb 22, 2016, 12:12 PM Reply Quote 2
            • T
              Tom Elliott
              last edited by Feb 22, 2016, 11:55 AM

              I’ve modified the installer a bit to allow for this.

              If you want to give this a shot, yes you will have to first remove all of the existing php5 stuff.

              I do it simpler with:

              apt-get purge -y php* lib*php

              However you do it is up to you.

              I’ve made it so you can actually just add the info to your /opt/fog/.fogsettings (of course remove the packages as described as well.

              Instead of modifying the core installer information add these lines to your .fogsettings file – before the packages line:

              php_ver="7.0"
              php_verAdds="-7.0"
              repo="php-${php_ver}"
              

              Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG! Get in contact with me (chat bubble in the top right corner) if you want to join in.

              Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

              Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

              Q 1 Reply Last reply Feb 22, 2016, 12:23 PM Reply Quote 2
              • Q
                Quazz Moderator @d4rk3
                last edited by Feb 22, 2016, 12:12 PM

                This post is deleted!
                1 Reply Last reply Reply Quote 0
                • Q
                  Quazz Moderator @Tom Elliott
                  last edited by Quazz Feb 22, 2016, 6:25 AM Feb 22, 2016, 12:23 PM

                  @Tom-Elliott This works, except it looks for php.ini in /etc/php/apache2/php.ini rather than /etc/php/apache2/7.0/php.ini (which causes the install to fail)

                  Have to admit I’m not a fan of how they decided to change basic structures like that.

                  T 1 Reply Last reply Feb 22, 2016, 12:27 PM Reply Quote 0
                  • T
                    Tom Elliott @Quazz
                    last edited by Feb 22, 2016, 12:27 PM

                    @Quazz that doesn’t make any sense.

                    The path found should be /etc/php/7.0/apache2/php.ini or /etc/php5/apache2/php.ini

                    I don’t quite understand why yours is backwards.

                    The line that handles this in lib/ubuntu/config.php is 81.

                    Here’s what I have it set as:

                    [[ $php_ver != 5 ]] && phpini="/etc/$phpcmd/$php_ver/apache2/php.ini" || phpini="/etc/$phpcmd/apache2/php.ini"

                    Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG! Get in contact with me (chat bubble in the top right corner) if you want to join in.

                    Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                    Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                    Q 1 Reply Last reply Feb 22, 2016, 12:33 PM Reply Quote 0
                    • Q
                      Quazz Moderator @Tom Elliott
                      last edited by Feb 22, 2016, 12:33 PM

                      @Tom-Elliott Thanks for the help, looks like the updating to the newest version didn’t properly merge the config file so it still had php_ver set to 7.0 which would produce the results I experienced.

                      I can confirm that it works now.

                      1 Reply Last reply Reply Quote 0
                      • D
                        d4rk3
                        last edited by Feb 22, 2016, 1:01 PM

                        Awesome! I’m glad this is helping people update to php7.0…the performance increase is very worth it!

                        1 Reply Last reply Reply Quote 0
                        • Q
                          Quazz Moderator
                          last edited by Feb 24, 2016, 3:10 PM

                          Latest svn update causes install to fail at php7.0-mbstring (as it does not exist), which is rather confusing as I can’t find that package in the ubuntu install script or anywhere else for that matter.

                          T 1 Reply Last reply Feb 24, 2016, 3:11 PM Reply Quote 0
                          • T
                            Tom Elliott @Quazz
                            last edited by Feb 24, 2016, 3:11 PM

                            @Quazz it’s new. I don’t know why, but they separated it, (they being ubuntu/debian maybe?).

                            Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG! Get in contact with me (chat bubble in the top right corner) if you want to join in.

                            Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                            Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                            1 Reply Last reply Reply Quote 0
                            • 1
                            • 2
                            • 1 / 2
                            1 / 2
                            • First post
                              20/23
                              Last post

                            131

                            Online

                            12.1k

                            Users

                            17.3k

                            Topics

                            155.3k

                            Posts
                            Copyright © 2012-2024 FOG Project