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

SVN 3192 hangs

Scheduled Pinned Locked Moved
General
8
38
10.1k
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.
  • M
    Mark Shelton
    last edited by Apr 6, 2015, 10:12 PM

    Hi Wayne, I downloaded and tried the latest SVN literally 25 minutes ago - SVN 3220. Unless Tom has made changes in the last 25 minutes it still does not work for me. Please advise where the “Download new FOG Client file” can be bypassed. Thanks, Mark

    1 Reply Last reply Reply Quote 0
    • T
      Tom Elliott
      last edited by Apr 6, 2015, 10:21 PM

      Mark,

      What is the output of the command:
      [code]php -v[/code]

      and

      [code]php -m[/code]

      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
      • M
        Mark Shelton
        last edited by Apr 6, 2015, 10:27 PM

        Hi Tom,

        I’ve just lost connection to my FOG server at work. I’m going to have to go in and check that out. I’ll post the results. Thanks, Mark

        1 Reply Last reply Reply Quote 0
        • M
          Mark Shelton
          last edited by Apr 6, 2015, 11:54 PM

          [B]Tom…[/B]
          foguser@HBImageserver:~$ sudo php -v
          [sudo] password for foguser:
          PHP 5.3.10-1ubuntu3.17 with Suhosin-Patch (cli) (built: Mar 17 2015 12:01:11)
          Copyright © 1997-2012 The PHP Group
          Zend Engine v2.3.0, Copyright © 1998-2012 Zend Technologies
          foguser@HBImageserver:~$
          [B]and…[/B]
          foguser@HBImageserver:~$ sudo php -m
          [PHP Modules]
          bcmath
          bz2
          calendar
          Core
          ctype
          curl
          date
          dba
          dom
          ereg
          exif
          fileinfo
          filter
          ftp
          gd
          gettext
          hash
          iconv
          json
          libxml
          mbstring
          mcrypt
          mhash
          mysql
          mysqli
          mysqlnd
          openssl
          pcntl
          pcre
          PDO
          pdo_mysql
          Phar
          posix
          readline
          Reflection
          session
          shmop
          SimpleXML
          soap
          sockets
          SPL
          standard
          sysvmsg
          sysvsem
          sysvshm
          tokenizer
          wddx
          xml
          xmlreader
          xmlwriter
          zip
          zlib

          [Zend Modules]

          Regards,
          Mark

          1 Reply Last reply Reply Quote 0
          • M
            Mark Shelton
            last edited by Apr 7, 2015, 12:03 AM

            OK, just tried with 3221, which must have been submitted in the last hour. Still fails but I get a message now. Screenshot attached.
            Regards, Mark

            [url=“/_imported_xf_attachments/1/1849_3221error.jpg?:”]3221error.jpg[/url]

            1 Reply Last reply Reply Quote 0
            • W
              Wayne Workman
              last edited by Apr 7, 2015, 12:23 AM

              [quote=“Mark Shelton, post: 45080, member: 423”]OK, just tried with 3221, which must have been submitted in the last hour. Still fails but I get a message now. Screenshot attached.
              Regards, Mark[/quote]

              Mark,

              I just tested a work-around because I ran into this at home…

              go to here:
              [CODE]/root/svn/trunk/lib/<your flavor of linux>/[/CODE]
              edit this file:
              [CODE]functions.sh[/CODE]

              towards the bottom, you’ll see stuff about “New FOG Client”
              It’ll look like this, depending on your flavor of linux… but it’ll be similar…

              [CODE]if [ ! -f “$webredirect” ]
              then
              echo “<?php header(‘Location: ./fog/index.php’);?>” > $webredirect;
              fi
              echo “OK”;
              echo -n " * Downloading New FOG Client file…";
              cwd=pwd;
              cd $webdirdest/service;
              count=0;
              while [ -z “$clientVer” -a “$count” -le 10 ]; do
              clientVer=php -f ${webdirdest}/service/getclient.php;
              count=expr $count '+' 1
              sleep 2;
              done
              if [ -z “$clientVer” ]; then
              echo “Failed to get client version”
              exit 1
              fi
              [/CODE]

              Where you see this line:
              [CODE]exit 1[/CODE]

              Just put a hash tag in front of it like this:
              [CODE]#exit 1[/CODE]

              What this does is allow the script to try to download the new fog client, but if it fails, it won’t exit the installation script…

              If you do this, I’d still highly recommend working with Tom fully to try to resolve the issue though.
              Also, if your install fails to download the new fog client, YOU WON’T HAVE THE NEW FOG CLIENT… so don’t try to use it.

              However, the old client will still be available for use.

              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!
              Daily Clean Installation Results:
              https://fogtesting.fogproject.us/
              FOG Reporting:
              https://fog-external-reporting-results.fogproject.us/

              1 Reply Last reply Reply Quote 0
              • W
                Wayne Workman
                last edited by Apr 7, 2015, 1:16 AM

                Tom,

                I looked here: [url]https://svn.code.sf.net/p/freeghost/code/trunk/packages/web/client/[/url]
                But FOGService.msi is not there. Where is it?

                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!
                Daily Clean Installation Results:
                https://fogtesting.fogproject.us/
                FOG Reporting:
                https://fog-external-reporting-results.fogproject.us/

                1 Reply Last reply Reply Quote 0
                • M
                  Maurice Tift
                  last edited by Apr 7, 2015, 2:31 AM

                  [quote=“Tom Elliott, post: 45028, member: 7271”]Maurice,

                  What revision is this occurring on? Have you updated to 3218 and see if this still exists?[/quote]

                  I was testing rev 3218, but after updating to rev 3220 a few minutes ago, the FOG Client file downloaded OK. So wow!

                  I’ve never see FOG development move so quickly.

                  Thanks!

                  "Never wear anything that panics the cat." - [URL='http://www.brainyquote.com/quotes/authors/p/p_j_orourke.html']P. J. O'Rourke [/URL]

                  1 Reply Last reply Reply Quote 0
                  • C
                    ch3i Moderator
                    last edited by Apr 7, 2015, 11:23 AM

                    Hi,

                    Below informations of php (if it can help)

                    php -v

                    [CODE]PHP 5.4.39-0+deb7u1 (cli) (built: Mar 20 2015 15:16:28)
                    Copyright © 1997-2014 The PHP Group
                    Zend Engine v2.4.0, Copyright © 1998-2014 Zend Technologies
                    [/CODE]

                    php -m

                    [CODE][PHP Modules]
                    bcmath
                    bz2
                    calendar
                    Core
                    ctype
                    curl
                    date
                    dba
                    dom
                    ereg
                    exif
                    fileinfo
                    filter
                    ftp
                    gd
                    gettext
                    hash
                    iconv
                    json
                    libxml
                    mbstring
                    mcrypt
                    mhash
                    mysql
                    mysqli
                    mysqlnd
                    openssl
                    pcntl
                    pcre
                    PDO
                    pdo_mysql
                    Phar
                    posix
                    Reflection
                    session
                    shmop
                    SimpleXML
                    soap
                    sockets
                    SPL
                    standard
                    sysvmsg
                    sysvsem
                    sysvshm
                    tokenizer
                    wddx
                    xml
                    xmlreader
                    xmlwriter
                    zip
                    zlib

                    [Zend Modules]
                    [/CODE]

                    Regards,
                    Ch3i.

                    1 Reply Last reply Reply Quote 0
                    • T
                      Tom Elliott
                      last edited by Apr 7, 2015, 11:36 AM

                      @ch3i,

                      Are you still having this issue?

                      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
                      • G
                        greend139
                        last edited by Apr 7, 2015, 1:58 PM

                        I just tried upgrading to 3222 and am getting this client error “Failed to get client version”. Here are my logs.

                        [CODE] php -v
                        PHP 5.5.9-1ubuntu4.7 (cli) (built: Mar 16 2015 20:48:03)
                        Copyright © 1997-2014 The PHP Group
                        Zend Engine v2.5.0, Copyright © 1998-2014 Zend Technologies
                        with Zend OPcache v7.0.3, Copyright © 1999-2014, by Zend Technologies
                        [/CODE]

                        [CODE]php -m
                        [PHP Modules]
                        bcmath
                        bz2
                        calendar
                        Core
                        ctype
                        curl
                        date
                        dba
                        dom
                        ereg
                        exif
                        fileinfo
                        filter
                        ftp
                        gd
                        gettext
                        hash
                        iconv
                        json
                        libxml
                        mbstring
                        mhash
                        mysql
                        mysqli
                        mysqlnd
                        openssl
                        pcntl
                        pcre
                        PDO
                        pdo_mysql
                        Phar
                        posix
                        readline
                        Reflection
                        session
                        shmop
                        SimpleXML
                        soap
                        sockets
                        SPL
                        standard
                        sysvmsg
                        sysvsem
                        sysvshm
                        tokenizer
                        wddx
                        xml
                        xmlreader
                        xmlwriter
                        Zend OPcache
                        zip
                        zlib

                        [Zend Modules]
                        Zend OPcache
                        [/CODE]

                        1 Reply Last reply Reply Quote 0
                        • C
                          ch3i Moderator
                          last edited by Apr 7, 2015, 2:55 PM

                          [quote=“Tom Elliott, post: 45098, member: 7271”]@ch3i,

                          Are you still having this issue?[/quote]

                          Tom, I update from 3200 to 3222 without problem, It’s fixed for me.

                          Thank you 😉

                          Regards,
                          Ch3i.

                          1 Reply Last reply Reply Quote 0
                          • 1
                          • 2
                          • 2 / 2
                          2 / 2
                          • First post
                            36/38
                            Last post

                          216

                          Online

                          12.0k

                          Users

                          17.3k

                          Topics

                          155.2k

                          Posts
                          Copyright © 2012-2024 FOG Project