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

FOG Update errors

Scheduled Pinned Locked Moved Solved
Linux Problems
3
10
516
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.
  • J
    JGeear
    last edited by Aug 7, 2024, 2:39 AM

    I had install errors updating my Trunk version on Ubuntu 20.04 LTS. I updated Ubuntu to 22.04 LTS. Now I am receiving a GIT conflict on the git pull a install script error

    F 2 Replies Last reply Aug 7, 2024, 3:03 AM Reply Quote 0
    • F
      Fog_Newb @JGeear
      last edited by Fog_Newb Aug 7, 2024, 2:43 AM Aug 7, 2024, 3:03 AM

      @JGeear Yeah something is messed up with the branches or something. I got that too. Tons of conflicts and a message about not a trusted repository or something. I figured it was on me because I had just restored a snapshot of the FOG VM.

      I wiped the fog installer directory, in my case /opt/fogproject then I re-downloaded,

      sudo git clone https://github.com/FOGProject/fogproject.git /opt/fogproject 
      

      set to dev-branch but it ended up installing the latest stable version: 1.5.10.1565

      sudo git checkout dev-branch
      

      Tells me - Already on ‘dev-branch’

      J 1 Reply Last reply Aug 7, 2024, 3:27 AM Reply Quote 0
      • F
        Fog_Newb @JGeear
        last edited by Aug 7, 2024, 3:12 AM

        @JGeear I was getting stuff like this.

        https://i.imgur.com/zdqF4q8.png

        1 Reply Last reply Reply Quote 0
        • J
          JGeear @Fog_Newb
          last edited by Aug 7, 2024, 3:27 AM

          @Fog_Newb
          I receive the following messages trying to do a dev-branch and git pull.
          FOG.png

          F T 2 Replies Last reply Aug 7, 2024, 3:37 AM Reply Quote 0
          • F
            Fog_Newb @JGeear
            last edited by Fog_Newb Aug 6, 2024, 9:38 PM Aug 7, 2024, 3:37 AM

            @george1421 @Tom-Elliott Something is going on with the repository/branches

            1 Reply Last reply Reply Quote 0
            • T
              Tom Elliott @JGeear
              last edited by JJ Fullmer Aug 9, 2024, 11:35 AM Aug 7, 2024, 10:10 AM

              @JGeear @Fog_Newb We had a couple of author informations that was incorrect and those were updated with removing the old references.

              That said, you should be able to just reclone and thing would work fine.

              Unsure if there’s a way to reset appropriately:

              Something like:

              git fetch origin
              git reset --hard origin/stable
              git reflog expire --expire=now --all
              git gc --prune=now
              

              I typically do this on every update

              gitBranch='stable'; #or 'dev-branch' or 'working-1.6'
              git fetch --all
              git reset --hard origin/$gitBranch
              #if it's not all good at this point I might add
              git checkout $gitBranch
              git pull origin $gitBranch
              

              I think the reflog and prune Tom gave here are good too, just wanted to throw in what I’ve always had success with

              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

              F J 2 Replies Last reply Aug 7, 2024, 6:22 PM Reply Quote 0
              • F
                Fog_Newb @Tom Elliott
                last edited by Fog_Newb Aug 7, 2024, 12:25 PM Aug 7, 2024, 6:22 PM

                @Tom-Elliott Thanks, it seems to be sorted

                Last night I did re-clone fresh. After deleting the /opt/fogproject directory then

                I did

                sudo git clone https://github.com/FOGProject/fogproject.git /opt/fogproject
                
                sudo git checkout dev-branch
                

                Then ./.install - This installed the latest stable release

                Just a few minutes ago, I did a git pull and some files were updated and when I ran the install this time, I got the latest dev-branch version: 1.5.10.1566

                1 Reply Last reply Reply Quote 0
                • J
                  JGeear @Tom Elliott
                  last edited by Aug 7, 2024, 8:10 PM

                  @Tom-Elliott Awesome that worked I was able to complete the update. I did receive a error unable to update database. Apache error log.

                  [Wed Aug 07 16:02:42.370052 2024] [proxy_fcgi:error] [pid 207214] [client 10.160.241.168:57856] AH01071: Got error 'PHP message: PHP Parse error:  syntax error, unexpected token "<<" in /var/www/fog/lib/fog/system.class.php on line 56'
                  [Wed Aug 07 16:02:45.486205 2024] [proxy_fcgi:error] [pid 207210] [client 10.160.241.168:57855] AH01071: Got error 'PHP message: PHP Parse error:  syntax error, unexpected token "<<" in /var/www/fog/lib/fog/system.class.php on line 56'```
                  T 1 Reply Last reply Aug 7, 2024, 8:21 PM Reply Quote 0
                  • T
                    Tom Elliott @JGeear
                    last edited by Tom Elliott Aug 7, 2024, 2:23 PM Aug 7, 2024, 8:21 PM

                    @JGeear Seems you still have some merge issues happening on your side.

                    You could try deleting the ~/fogproject directory and reclone the repository. That should fix any of the merge conflicts you’re seeing.

                    I think you can even do:

                    rm -rf ~/fogproject
                    git clone https://github.com/fogproject/fogproject.git --branch=dev-branch
                    cd fogproject/bin
                    ./installfog.sh -y
                    

                    the merge issues on your side are likely from our attempts to fix up the author commits, just so you don’t think I’m blaming you.

                    It should be fixed by just getting a fresh repository to work with though.

                    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

                    J 1 Reply Last reply Aug 7, 2024, 8:34 PM Reply Quote 0
                    • J
                      JGeear @Tom Elliott
                      last edited by Aug 7, 2024, 8:34 PM

                      @Tom-Elliott said in FOG Update errors:

                      ./installfog.sh -y

                      Thanks Tom! I am up and running again!

                      1 Reply Last reply Reply Quote 0
                      • [[undefined-on, T Tom Elliott, Aug 7, 2024, 8:55 PM]]
                      • 1 / 1
                      1 / 1
                      • First post
                        3/10
                        Last post

                      223

                      Online

                      12.0k

                      Users

                      17.3k

                      Topics

                      155.2k

                      Posts
                      Copyright © 2012-2024 FOG Project